mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-18 04:37:36 -05:00
gnu: Add emacs-cape.
* gnu/packages/emacs-xyz.scm (emacs-cape): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
312273fcca
commit
eecdb3563d
1 changed files with 24 additions and 0 deletions
|
@ -2902,6 +2902,30 @@ (define-public emacs-corfu
|
|||
@code{completion-in-region} counterpart of the Vertico minibuffer UI.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-cape
|
||||
(package
|
||||
(name "emacs-cape")
|
||||
(version "0.5")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/minad/cape")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0780qymlrg3glyxypizqzwicp5ly5xavxgpmayhx8cxlgp2zlkjh"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/minad/cape")
|
||||
(synopsis "Completion at point extensions for Emacs")
|
||||
(description
|
||||
"Cape provides some Completion At Point Extensions, which can be used in
|
||||
combination with Corfu completion UI or the default completion UI. The
|
||||
completion backends used by @code{completion-at-point} are so called
|
||||
@code{completion-at-point-functions} (Capfs). In principle, the Capfs
|
||||
provided by Cape can also be used by Company.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-direnv
|
||||
(package
|
||||
(name "emacs-direnv")
|
||||
|
|
Loading…
Reference in a new issue