This package displays emojis in Emacs similar to how Github, Slack, and other websites do. It can display plain ASCII like :)
as well as Github-style emojis like :smile:
. It provides a minor mode emojify-mode
to enable the display of emojis in a buffer.
This package provides many, but not all of the editing primitives in the Kakoune editor. Unlike Evil mode for Vim, this is a very shallow emulation, which seeks to do as little work as possible, leveraging Emacs native editing commands and the work of other packages wherever possible.
This is a building kit to help switch to modal editing in Emacs. The main goal of the package is to make modal editing in Emacs as natural and native as possible. Modalka lets you define your own keys and does not come with a preconfigured set of keys.
This library will place an HTML copy of a buffer on an active webserver to which the user has SSH access. It is similar in purpose to services such as Gist or Pastebin, but is much simpler since it assumes the user has access to a publicly-accessible HTTP server.
ox-epub
extends the (X)HTML exporter to generate .epub
files directly from OrgMode. This will export EPUB version 2, which should give broad compatibility. It should also be relatiely easy to convert the resulting .epub
to a .mobi
file. Needs a working zip utility (default is zip
).
The code provides a abbreviation expansion for Emacs. It is fairly similar to Dabbrev expansion, which works based on the contents of the current buffer (or other buffers).
Predictive abbreviation expansion works based on the previously written text. Unlike dynamic abbreviation, the text is analysed during idle time, while Emacs is doing nothing else.
This package provides a function---epithet-rename-buffer
---to rename the current buffer with a descriptive name. The name suggestion is governed by the epithet-suggesters
hook variable: each hook should return either a name suggestion or nil
, they are called in turn and the first non-nil suggestion is taken.
Vertico provides a minimalistic vertical completion UI, which is based on Emacs' default completion system. By reusing the default system, it achieves full compatibility with built-in Emacs commands and completion tables. Vertico is pretty bare-bone and only provides a minimal set of commands. Additional optional enhancements can be provided externally by complementary packages.
Vertico provides a minimalistic vertical completion UI, which is based on Emacs' default completion system. By reusing the default system, it achieves full compatibility with built-in Emacs commands and completion tables. Vertico is pretty bare-bone and only provides a minimal set of commands. Additional optional enhancements can be provided externally by complementary packages.
Usage: (require 'ox-json') somewhere and then use the org-export-dispatch interactive command and select the J key for JSON export. You can also use the ox-json-export-to-buffer and ox-json-export-to-file functions or any of the built-in org-export- functions by passing 'json as the backend argument.
Beframe enables a frame-oriented Emacs workflow where each frame has access to the list of buffers visited therein. In the interest of brevity, we call buffers that belong to frames ``beframed''. Producing multiple frames does not generate multiple buffer lists. There still is only one global list of buffers. Beframing them simply filters the list.
Greader is a module that sends any Emacs buffer to a TTS engine, such as Espeak-NG or Speech Dispatcher.
The mode supports timer reading, automatic scrolling of buffers in modes like Info mode, and repeating reading of regions or the whole buffer. It also includes a feature to facilitate the compilation of Espeak-NG pronunciations.
Open, view, browse, restore or permanently delete trashed files or directories in trash can with Dired-like look and feel. The trash can has to be compliant with freedesktop.org. In Emacs, you can trash files by deleting them with (setq delete-by-moving-to-trash t)
. This package provides a simple but convenient user interface to manage those trashed files.
This is a naive implementation of RFC4122 Universally Unique IDentifier generation in elisp. Currently implemented are UUID v1 v3, v4 and v5 generation. The resolution of the time based UUID is microseconds, which is 10 times of the suggested 100-nanosecond resolution, but should be enough for general usage. Get development version from git: git clone git://github.com/kanru/uuidgen-el.git
La Carte lets you execute menu-bar menu commands from the keyboard, with completion.
Use the keyboard to access any menu item, without knowing where it is or what its full name is. Type part of its name and use completion to get the rest: the complete path and item name. When you choose a menu-item candidate, the corresponding command is executed.
This is a simple implementation of Promises/A+.
This implementation ports the following Promises/A+ features faithfully. See https://github.com/then/promise.
The same API as the JavaScript version of Promise can be used. It has all the then
, catch
, resolve
, reject
, all
, race
, etc. It also supports thenable
, inheritance of promise and rejection tracking.
Helm sources for searching emails and contacts using mu
and mu4e
. Mu is an indexer for maildirs and mu4e is a mutt-like MUA for Emacs build on top of mu. Mu is highly efficient making it possible to get instant results even for huge maildirs. It also provides search operators, e.g: from:Peter to:Anne flag:attach search term
.
es-mode
includes highlighting, completion and indentation support for Elasticsearch queries. Also supported are es-mode
blocks in org-mode
, for which the results of queries can be processed through jq
, or in the case of aggregations, can be rendered in to a table. In addition, there is an es-command-center
mode, which displays information about Elasticsearch clusters.
This package provides an XML-RPC client for Emacs capable of both synchronous and asynchronous method calls using the url
package's async retrieval functionality. xml-rpc.el
represents XML-RPC datatypes as Lisp values, automatically converting to and from the XML datastructures as needed, both for method parameters and return values, making using XML-RPC methods fairly transparent to the Lisp code.
wc-mode
is a minor mode, providing a ‘wc’ function for Emacs buffers as well as a modeline addition with live word, line and character counts. Additionally, a user can set specific goals for adding or deleting words. These goals were partly inspired by 750words.com where the goal of the site is to encourage writing by setting a goal of 750 words at a time.
Minimap provides Emacs with a minimap sidebar, which is a smaller display of the current buffer on the side, like a scrollbar. It highlights the currently shown region and updates its position automatically. You can navigate in the minibar by dragging the active region with the mouse, which will scroll the corresponding edit buffer. Additionally, you can overlay information from the tags gathered by CEDET's semantic analyzer.)
ParEdit (paredit.el) is a minor mode for performing structured editing of S-expression data. The typical example of this would be Lisp or Scheme source code.
ParEdit helps keep parentheses balanced and adds many keys for moving S-expressions and moving around in S-expressions. Its behavior can be jarring for those who may want transient periods of unbalanced parentheses, such as when typing parentheses directly or commenting out code line by line.
The I Ching or Book of Changes can be used as a divination method, pattern generator or fixed point for millennia of commentary & exegesis. This package provides methods for casting and describing hexagrams, querying the oracle, and finding patterns in randomness. The descriptions of hexagrams and their classification have been drawn from public domain sources, tradition and antiquity. Further details of usage along with reading & study material can be found in the README file.
emacs-ii-mode
is an Emacs mode for handling files created by ii. It can help you to stay logged in even through emacs restarts. The model of using Emacs for interfaces to external programs, rather than running them inside the elisp environment itself also seems more elegant. This allows for a much more detached use of irc, not having to keep one buffer open for each channel, but still getting notified if someone pings you.