_            _    _        _         _
      /\ \         /\ \ /\ \     /\_\      / /\
      \_\ \       /  \ \\ \ \   / / /     / /  \
      /\__ \     / /\ \ \\ \ \_/ / /     / / /\ \__
     / /_ \ \   / / /\ \ \\ \___/ /     / / /\ \___\
    / / /\ \ \ / / /  \ \_\\ \ \_/      \ \ \ \/___/
   / / /  \/_// / /   / / / \ \ \        \ \ \
  / / /      / / /   / / /   \ \ \   _    \ \ \
 / / /      / / /___/ / /     \ \ \ /_/\__/ / /
/_/ /      / / /____\/ /       \ \_\\ \/___/ /
\_\/       \/_________/         \/_/ \_____\/
emacs-orgtbl-aggregate 20230124.1042
Channel: yewscion
Location: cdr255/emacs.scm (cdr255 emacs)
Home page: https://github.com/tbanel/orgaggregate/blob/master/README.org
Licenses: GPL 3
Synopsis: Create an aggregated Org table from another one
Description:

This package provides a new org-mode table is automatically updated, based on another table acting as a data source and user-given specifications for how to perform aggregation. Example: Starting from a source table of activities and quantities (whatever they are) over several days, #+TBLNAME: original | Day | Color | Level | Quantity | |-----------+-------+-------+----------| | Monday | Red | 30 | 11 | | Monday | Blue | 25 | 3 | | Tuesday | Red | 51 | 12 | | Tuesday | Red | 45 | 15 | | Tuesday | Blue | 33 | 18 | | Wednesday | Red | 27 | 23 | | Wednesday | Blue | 12 | 16 | | Wednesday | Blue | 15 | 15 | | Thursday | Red | 39 | 24 | | Thursday | Red | 41 | 29 | | Thursday | Red | 49 | 30 | | Friday | Blue | 7 | 5 | | Friday | Blue | 6 | 8 | | Friday | Blue | 11 | 9 | an aggregation is built for each day (because several rows exist for each day), typing C-c C-c #+BEGIN: aggregate :table original :cols "Day mean(Level) sum(Quantity)" | Day | mean(Level) | sum(Quantity) | |-----------+-------------+---------------| | Monday | 27.5 | 14 | | Tuesday | 43 | 45 | | Wednesday | 18 | 54 | | Thursday | 43 | 83 | | Friday | 8 | 22 | #+END A wizard can be used: M-x orgtbl-aggregate-insert-dblock-aggregate Full documentation here: https://github.com/tbanel/orgaggregate/blob/master/README.org

emacs-company-wordfreq 20220405.2000
Propagated dependencies: emacs-company@1.0.2
Channel: yewscion
Location: cdr255/emacs.scm (cdr255 emacs)
Home page: https://github.com/johannes-mueller/company-wordfreq.el
Licenses: GPL 3
Synopsis: Company backend for human language texts
Description:

`company-wordfreq is a company backend intended for writing texts in a human language. The completions it proposes are words already used in the current (or another open) buffer and matching words from a word list file. This word list file is supposed to be a simple list of words ordered by the frequency the words are used in the language. So the first completions are words already used in the buffer followed by matching words of the language ordered by frequency. `company-wordfreq does not come with the word list files directly, but it can download the files for you for many languages from <https://github.com/hermitdave/FrequencyWords>. I made a fork of that repo just in case the original changes all over sudden without my noticing. The directory where the word list files reside is determined by the variable `company-wordfreq-path', default `~/.emacs.d/wordfreq-dicts'. Their names must follow the pattern `<language>.txt where language is the `ispell-local-dictionary value of the current language. You need =grep= in your =$PATH= as =company-wordfreq= uses it to grep into the word list files. Should be the case by default on any UNIX like systems. On windows you might have to tweak it somehow. `company-wordfreq is supposed to be the one and only company backend and `company-mode should not transform or sort its candidates. This can be achieved by setting the variables `company-backends and `company-transformers buffer locally in `text-mode buffers by (add-hook text-mode-hook (lambda () (setq-local company-backends (company-wordfreq)) (setq-local company-transformers nil))) Usually you don't need to configure the language picked to get the word completions. `company-wordfreq uses the variable `ispell-local-dictionary'. It should work dynamically even if you use `auto-dictionary-mode'. To download a word list use M-x company-wordfreq-download-list You are presented a list of languages to choose. For some languages the word lists are huge, which can lead to noticeable latency when the completions are build. Therefore you are asked if you want to use a word list with only the 50k most frequent words. The file will then be downloaded, processed and put in place.

emacs-easy-kill-extras 20210529.945
Propagated dependencies: emacs-easy-kill@0.9.5 emacs-ace-jump-mode@2.0 emacs-multiple-cursors@1.5.0
Channel: yewscion
Location: cdr255/emacs.scm (cdr255 emacs)
Home page: https://github.com/knu/easy-kill-extras.el
Licenses: FreeBSD
Synopsis: Extra functions for easy-kill.
Description:

This package contains extra functions for easy-kill/easy-mark: * easy-mark-word * easy-mark-sexp * easy-mark-to-char * easy-mark-up-to-char These are shorthand commands for easy-marking an aimed string at point. * easy-kill-er-expand * easy-kill-er-unexpand These work like `er/expand-region and `er/contract-region', respectively, using the functionality of the `expand-region package. It also provides the following easy-kill/easy-mark targets: * `buffer This selects the whole buffer. * `buffer-before-point * `buffer-after-point These work like vi's gg/G commands, respectively. * `backward-line-edge * `forward-line-edge The former is like vi's ^/0 commands, and the latter is just like that in the opposite direction. * `string-to-char-forward * `string-to-char-backward * `string-up-to-char-forward * `string-up-to-char-backward These work like vi's f/F/t/T commands, respectively. Experimental ace-jump integration into easy-kill is enabled by default. `ace-jump-*-mode can be invoked for selection when in easy-kill/easy-mark mode. You can disable this feature via a customize variable `easy-kill-ace-jump-enable-p'. Experimental multiple-cursors-mode support for easy-kill is enabled by default. `easy-kill and `easy-mark will mostly work in `multiple-cursors-mode'. Suggested settings are as follows: ;; Upgrade `mark-word and `mark-sexp with easy-mark ;; equivalents. (global-set-key (kbd "M-@") easy-mark-word) (global-set-key (kbd "C-M-@") easy-mark-sexp) ;; `easy-mark-to-char or `easy-mark-up-to-char could be a good ;; replacement for `zap-to-char'. (global-set-key [remap zap-to-char] easy-mark-to-char) ;; Integrate `expand-region functionality with easy-kill (define-key easy-kill-base-map (kbd "o") easy-kill-er-expand) (define-key easy-kill-base-map (kbd "i") easy-kill-er-unexpand) ;; Add the following tuples to `easy-kill-alist', preferrably by ;; using `customize-variable'. (add-to-list easy-kill-alist (?^ backward-line-edge "")) (add-to-list easy-kill-alist (?$ forward-line-edge "")) (add-to-list easy-kill-alist (?b buffer "")) (add-to-list easy-kill-alist (?< buffer-before-point "")) (add-to-list easy-kill-alist (?> buffer-after-point "")) (add-to-list easy-kill-alist (?f string-to-char-forward "")) (add-to-list easy-kill-alist (?F string-up-to-char-forward "")) (add-to-list easy-kill-alist (?t string-to-char-backward "")) (add-to-list easy-kill-alist (?T string-up-to-char-backward ""))

emacs-ement-pantalaimon 0.1.0-0.08ffed5
Channel: rrr
Location: rrr/packages/emacs-xyz.scm (rrr packages emacs-xyz)
Home page: https://git.sr.ht/~akagi/ement-pantalaimon
Licenses: GPL 3+
Synopsis: Run pantalaimon from Emacs
#<unspecified>
emacs-almost-mono-white 1.0.0-4.afb8532
Channel: rrr
Location: rrr/packages/emacs-xyz.scm (rrr packages emacs-xyz)
Home page: https://git.sr.ht/~akagi/almost-mono-themes
Licenses: GPL 3+
Synopsis: Emacs almost-mono-themes
#<unspecified>
emacs-virtualenvwrapper 20190223.1919
Propagated dependencies: emacs-dash@20250312.1307 emacs-s@20220902.1511
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: http://github.com/porterjamesj/virtualenvwrapper.el
Licenses:
Synopsis: A featureful virtualenv tool for Emacs
Description:

Documentation at https://melpa.org/#/virtualenvwrapper

emacs-interactive-align 0.5.0
Channel: guix
Location: gnu/packages/emacs-xyz.scm (gnu packages emacs-xyz)
Home page: https://github.com/mkcms/interactive-align/
Licenses: GPL 3+
Synopsis: Interactive align-regexp command in Emacs
Description:

Interactive align-regexp command in Emacs

emacs-actionscript-mode 20180527.1701
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://codeberg.org/austinhaas/actionscript-mode
Licenses:
Synopsis: A simple mode for editing Actionscript 3 files
Description:

Documentation at https://melpa.org/#/actionscript-mode

emacs-danneskjold-theme 20250302.1553
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/rails-to-cosmos/danneskjold-theme
Licenses:
Synopsis: Beautiful high-contrast Emacs theme
Description:

Documentation at https://melpa.org/#/danneskjold-theme

emacs-fancy-compilation 20251030.2357
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://codeberg.org/ideasman42/emacs-fancy-compilation
Licenses:
Synopsis: Enhanced compilation output
Description:

Documentation at https://melpa.org/#/fancy-compilation

emacs-electric-operator 20250524.1712
Propagated dependencies: emacs-dash@20250312.1307
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/davidshepherd7/electric-operator
Licenses:
Synopsis: Automatically add spaces around operators
Description:

Documentation at https://melpa.org/#/electric-operator

emacs-string-inflection 20251114.1041
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/akicho8/string-inflection
Licenses:
Synopsis: Foo_bar => FOO_BAR => FooBar => fooBar => foo-bar => Foo_Bar => foo_bar conversion of names
Description:

Documentation at https://melpa.org/#/string-inflection

emacs-programmer-dvorak 20150427.137
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/yangchenyun/programmer-dvorak
Licenses:
Synopsis: Input method for Programmer Dvorak
Description:

Documentation at https://melpa.org/#/programmer-dvorak

emacs-eyebrowse-restore 20240304.2338
Propagated dependencies: emacs-eyebrowse@20240407.1342 emacs-dash@20250312.1307 emacs-s@20220902.1511
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/FrostyX/eyebrowse-restore
Licenses:
Synopsis: Persistent Eyebrowse for all frames
Description:

Documentation at https://melpa.org/#/eyebrowse-restore

emacs-japanese-holidays 20201229.755
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/emacs-jp/japanese-holidays
Licenses:
Synopsis: Calendar functions for the Japanese calendar
Description:

Documentation at https://melpa.org/#/japanese-holidays

emacs-minimal-dashboard 20251102.1952
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/dheerajshenoy/minimal-dashboard.el
Licenses:
Synopsis: A very minimal dashboard plugin
Description:

Documentation at https://melpa.org/#/minimal-dashboard

emacs-vertico-prescient 20250816.19
Propagated dependencies: emacs-prescient@20250816.19 emacs-vertico@20251115.1826 emacs-compat@30.1.0.1
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/radian-software/prescient.el
Licenses:
Synopsis: Prescient.el + Vertico
Description:

Documentation at https://melpa.org/#/vertico-prescient

emacs-flycheck-apertium 20181211.1038
Propagated dependencies: emacs-flycheck@20251128.1706
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: http://wiki.apertium.org/wiki/Emacs
Licenses:
Synopsis: Apertium checkers in flycheck
Description:

Documentation at https://melpa.org/#/flycheck-apertium

emacs-elixir-yasnippets 20150417.1239
Propagated dependencies: emacs-yasnippet@20250602.1342
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/hisea/elixir-yasnippets
Licenses:
Synopsis: Yasnippets for Elixir
Description:

Documentation at https://melpa.org/#/elixir-yasnippets

emacs-flycheck-drstring 20200210.1903
Propagated dependencies: emacs-flycheck@20251128.1706 emacs-swift-mode@20251122.857
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/danielmartin/flycheck-drstring
Licenses:
Synopsis: Doc linting for Swift using DrString
Description:

Documentation at https://melpa.org/#/flycheck-drstring

emacs-flycheck-plantuml 20171018.111
Propagated dependencies: emacs-flycheck@20251128.1706 emacs-plantuml-mode@20250705.1148
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/alexmurray/flycheck-plantuml
Licenses:
Synopsis: Integrate plantuml with flycheck
Description:

Documentation at https://melpa.org/#/flycheck-plantuml

emacs-flycheck-coverity 20170704.59
Propagated dependencies: emacs-flycheck@20251128.1706 emacs-dash@20250312.1307
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/alexmurray/flycheck-coverity
Licenses:
Synopsis: Integrate Coverity with flycheck
Description:

Documentation at https://melpa.org/#/flycheck-coverity

emacs-zetteldesk-remark 20250405.1601
Propagated dependencies: emacs-zetteldesk@20250405.1601 emacs-org-remark@1.3.0
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/Vidianos-Giannitsis/zetteldesk-remark.el
Licenses:
Synopsis: Org-Remark integration for zetteldesk.el
Description:

Documentation at https://melpa.org/#/zetteldesk-remark

emacs-readline-complete 20150708.1437
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/monsanto/readline-complete.el
Licenses:
Synopsis: Offers completions in shell mode
Description:

Documentation at https://melpa.org/#/readline-complete

Total results: 8400