mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: Add emacs-selectrum.
* gnu/packages/emacs-xyz.scm (emacs-selectrum): New variable.
This commit is contained in:
parent
1d05da03ee
commit
1c17e087c2
1 changed files with 26 additions and 0 deletions
|
@ -5375,6 +5375,32 @@ (define-public emacs-prescient
|
||||||
library.")
|
library.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
|
(define-public emacs-selectrum
|
||||||
|
(package
|
||||||
|
(name "emacs-selectrum")
|
||||||
|
(version "1.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/raxod502/selectrum.git")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "105zl102dwbzvk50xh6b824nq6p24kxhky18ghdnk5yi5sv620lm"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://github.com/raxod502/selectrum/")
|
||||||
|
(synopsis "Incremental narrowing in Emacs")
|
||||||
|
(description "Selectrum is a solution for incremental narrowing in
|
||||||
|
Emacs, replacing Helm, Ivy, and IDO. Its design philosophy is based
|
||||||
|
on choosing the right abstractions and prioritizing consistency and
|
||||||
|
predictability over special-cased improvements for particular cases.
|
||||||
|
As such, Selectrum follows existing Emacs conventions where they exist
|
||||||
|
and are reasonable, and it declines to implement features which have
|
||||||
|
marginal benefit compared to the additional complexity of a new
|
||||||
|
interface.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public emacs-smartparens
|
(define-public emacs-smartparens
|
||||||
(package
|
(package
|
||||||
(name "emacs-smartparens")
|
(name "emacs-smartparens")
|
||||||
|
|
Loading…
Reference in a new issue