mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
gnu: Add emacs-compdef.
* gnu/packages/emacs-xyz.scm (emacs-compdef): New variable.
This commit is contained in:
parent
ea1a17d9bf
commit
53b23b3371
1 changed files with 23 additions and 0 deletions
|
@ -3553,6 +3553,29 @@ (define-public emacs-company-math
|
|||
@code{company-mode} allowing for completion of common math symbols.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-compdef
|
||||
(let ((commit "fc08a9b049c3718fc7d6c6ee2140759aff031bc9")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "emacs-compdef")
|
||||
(version (git-version "0.2" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://gitlab.com/jjzmajic/compdef.git")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1dwf4rlj19d80yp656c7nkp6hb3mabv808r6ix3hpv6rjjs38vhl"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://gitlab.com/jjzmajic/compdef")
|
||||
(synopsis "Set local completion backends")
|
||||
(description "This package provides a function to cleanly set local
|
||||
completion backends according to mode, and integrates with
|
||||
@code{use-package}.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-nswbuff
|
||||
(let ((commit "362da7f3687e2eb5bb11667347de85f4a9d002bc")
|
||||
(revision "1"))
|
||||
|
|
Loading…
Reference in a new issue