mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-17 12:17:10 -05:00
gnu: Add emacs-mct.
* gnu/packages/emacs-xyz.scm (emacs-mct): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
3610927bc0
commit
63d5efd92b
1 changed files with 23 additions and 0 deletions
|
@ -994,6 +994,29 @@ (define-public emacs-magit-annex
|
|||
"Magit-annex adds a few git-annex operations to the Magit interface.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-mct
|
||||
(package
|
||||
(name "emacs-mct")
|
||||
(version "0.4.2")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://gitlab.com/protesilaos/mct")
|
||||
(commit version)))
|
||||
(sha256
|
||||
(base32 "0sj9hyxpighspwrm2yimqkdxlhw2yiznaj69ysn2sjd6jn2aqpc6"))
|
||||
(file-name (git-file-name name version))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://protesilaos.com/emacs/mct")
|
||||
(synopsis "Enhancement of the default Emacs minibuffer completion UI")
|
||||
(description "Minibuffer and Completions in Tandem, also known as MCT, or
|
||||
mct.el, is an Emacs package that enhances the default minibuffer and
|
||||
@samp{*Completions*} buffer so that they work together as part of a unified
|
||||
framework. The idea is to make the presentation and overall functionality be
|
||||
consistent with other popular, vertically aligned completion UIs while
|
||||
leveraging built-in functionality.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-minions
|
||||
(package
|
||||
(name "emacs-minions")
|
||||
|
|
Loading…
Reference in a new issue