gnu: emacs-lispy: Update to 0.27.0.
* gnu/packages/emacs-xyz.scm (emacs-lispy): Update to 0.27.0. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
c799fd63f6
commit
7547648091
|
@ -4560,37 +4560,35 @@ navigate code in a tree-like fashion.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
(define-public emacs-lispy
|
(define-public emacs-lispy
|
||||||
;; Release 0.26.0 was almost 3 years ago, and there have been ~772 commits
|
(package
|
||||||
;; since.
|
(name "emacs-lispy")
|
||||||
(let ((commit "f94cfc6b8f9c3afe7d028c366928049c011023de")
|
(version "0.27.0")
|
||||||
(revision "1"))
|
(home-page "https://github.com/abo-abo/lispy")
|
||||||
(package
|
(source (origin
|
||||||
(name "emacs-lispy")
|
(method git-fetch)
|
||||||
(version (git-version "0.26.0" revision commit))
|
(uri (git-reference
|
||||||
(home-page "https://github.com/abo-abo/lispy")
|
(url "https://github.com/abo-abo/lispy")
|
||||||
(source (origin
|
(commit version)))
|
||||||
(method git-fetch)
|
(sha256
|
||||||
(uri (git-reference (url home-page) (commit commit)))
|
(base32
|
||||||
(sha256
|
"1cm7f4pyl73f3vhkb7ah6bbbrj2sa7n0p31g09k7dy4zgx04bgw6"))
|
||||||
(base32
|
(file-name (git-file-name name version))))
|
||||||
"1bm2cpwizg1qfpm377gpx1af1hm5maw69if1csnk5vwaphmv8c4g"))
|
(build-system emacs-build-system)
|
||||||
(file-name (git-file-name name version))))
|
(propagated-inputs
|
||||||
(build-system emacs-build-system)
|
`(("emacs-ace-window" ,emacs-ace-window)
|
||||||
(propagated-inputs
|
("emacs-iedit" ,emacs-iedit)
|
||||||
`(("emacs-ace-window" ,emacs-ace-window)
|
("emacs-ivy" ,emacs-ivy)
|
||||||
("emacs-iedit" ,emacs-iedit)
|
("emacs-hydra" ,emacs-hydra)
|
||||||
("emacs-ivy" ,emacs-ivy)
|
("emacs-zoutline" ,emacs-zoutline)))
|
||||||
("emacs-hydra" ,emacs-hydra)
|
(synopsis "Modal S-expression editing")
|
||||||
("emacs-zoutline" ,emacs-zoutline)))
|
(description
|
||||||
(synopsis "Modal S-expression editing")
|
"Due to the structure of Lisp syntax it's very rare for the programmer
|
||||||
(description
|
|
||||||
"Due to the structure of Lisp syntax it's very rare for the programmer
|
|
||||||
to want to insert characters right before \"(\" or right after \")\". Thus
|
to want to insert characters right before \"(\" or right after \")\". Thus
|
||||||
unprefixed printable characters can be used to call commands when the point is
|
unprefixed printable characters can be used to call commands when the point is
|
||||||
at one of these special locations. Lispy provides unprefixed keybindings for
|
at one of these special locations. Lispy provides unprefixed keybindings for
|
||||||
S-expression editing when point is at the beginning or end of an
|
S-expression editing when point is at the beginning or end of an
|
||||||
S-expression.")
|
S-expression.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
(define-public emacs-lispyville
|
(define-public emacs-lispyville
|
||||||
(let ((commit "d28b937f0cabd8ce61e2020fe9a733ca80d82c74")
|
(let ((commit "d28b937f0cabd8ce61e2020fe9a733ca80d82c74")
|
||||||
|
|
Loading…
Reference in New Issue