_            _    _        _         _
      /\ \         /\ \ /\ \     /\_\      / /\
      \_\ \       /  \ \\ \ \   / / /     / /  \
      /\__ \     / /\ \ \\ \ \_/ / /     / / /\ \__
     / /_ \ \   / / /\ \ \\ \___/ /     / / /\ \___\
    / / /\ \ \ / / /  \ \_\\ \ \_/      \ \ \ \/___/
   / / /  \/_// / /   / / / \ \ \        \ \ \
  / / /      / / /   / / /   \ \ \   _    \ \ \
 / / /      / / /___/ / /     \ \ \ /_/\__/ / /
/_/ /      / / /____\/ /       \ \_\\ \/___/ /
\_\/       \/_________/         \/_/ \_____\/
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-flycheck-plantuml 20171018.111
Propagated dependencies: emacs-flycheck@20250527.907 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-sclang-extensions 20160509.338
Propagated dependencies: emacs-auto-complete@20250101.843 emacs-s@20220902.1511 emacs-dash@20250312.1307
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/chrisbarrett/sclang-extensions
Licenses:
Synopsis: Extensions for the SuperCollider Emacs mode
Description:

Documentation at https://melpa.org/#/sclang-extensions

emacs-flycheck-yamllint 20170326.1309
Propagated dependencies: emacs-flycheck@20250527.907
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/krzysztof-magosa/flycheck-yamllint
Licenses:
Synopsis: Flycheck integration for YAMLLint
Description:

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

emacs-semaphore-promise 20190607.2115
Propagated dependencies: emacs-semaphore@20190607.1949 emacs-promise@20210307.727
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: http://github.com/webnf/semaphore.el
Licenses:
Synopsis: Semaphore integration with promise
Description:

Documentation at https://melpa.org/#/semaphore-promise

emacs-cyanometric-theme 20220822.301
Propagated dependencies: emacs-autothemer@20230414.1419
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: http://github.com/emacsfodder/emacs-theme-cyanometric
Licenses:
Synopsis: A Theme with overwhelming bias towards cyan
Description:

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

emacs-retraction-viewer 20250520.1615
Propagated dependencies: emacs-plz@0.9.1
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://git.sr.ht/~swflint/retraction-viewer
Licenses:
Synopsis: View retraction information for current citation
Description:

Documentation at https://melpa.org/#/retraction-viewer

emacs-fancy-compilation 20250629.329
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-erc-scrolltoplace 20180608.606
Propagated dependencies: emacs-switch-buffer-functions@20200127.409
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: http://gitlab.com/jgkamat/erc-scrolltoplace
Licenses:
Synopsis: An Erc module to scrolltobottom better with keep-place
Description:

Documentation at https://melpa.org/#/erc-scrolltoplace

emacs-sideline-flycheck 20250201.1746
Propagated dependencies: emacs-sideline@20250517.508 emacs-flycheck@20250527.907 emacs-ht@20230703.558
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/emacs-sideline/sideline-flycheck
Licenses:
Synopsis: Show flycheck errors with sideline
Description:

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

emacs-license-templates 20250101.1008
Propagated dependencies: emacs-request@20250219.2213
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/jcs-elpa/license-templates
Licenses:
Synopsis: Create LICENSE using GitHub API
Description:

Documentation at https://melpa.org/#/license-templates

emacs-flycheck-pyflakes 20240124.101
Propagated dependencies: emacs-flycheck@20250527.907
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/Wilfred/flycheck-pyflakes
Licenses:
Synopsis: Support pyflakes in flycheck
Description:

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

emacs-flycheck-drstring 20200210.1903
Propagated dependencies: emacs-flycheck@20250527.907 emacs-swift-mode@20250922.712
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-consult-yasnippet 20250411.1922
Propagated dependencies: emacs-yasnippet@20250602.1342 emacs-consult@20251013.924
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/mohkale/consult-yasnippet
Licenses:
Synopsis: A consulting-read interface for yasnippet
Description:

Documentation at https://melpa.org/#/consult-yasnippet

emacs-repeatable-motion 20170620.1848
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/willghatch/emacs-repeatable-motion
Licenses:
Synopsis: Make repeatable versions of motions
Description:

Documentation at https://melpa.org/#/repeatable-motion

emacs-nameframe-project 20221024.209
Propagated dependencies: emacs-nameframe@20221023.957
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/john2x/nameframe
Licenses:
Synopsis: Nameframe integration with project.el
Description:

Documentation at https://melpa.org/#/nameframe-project

emacs-bubbleberry-theme 20141017.944
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/jasonm23/emacs-bubbleberry-theme
Licenses:
Synopsis: A theme based on LightTable for Emacs24
Description:

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

emacs-unmodified-buffer 20220129.2022
Channel: emacs
Location: emacs/packages/melpa.scm (emacs packages melpa)
Home page: https://github.com/arthurcgusmao/unmodified-buffer
Licenses:
Synopsis: Auto revert modified buffer state
Description:

Documentation at https://melpa.org/#/unmodified-buffer

Total results: 8324