diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-06-18 16:18:14 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-06-20 07:06:59 +0200 |
commit | a5338dd467d32b9f47f6b38059ee8c46104eff8b (patch) | |
tree | 7cb5174e46ea4c8d63e1e86dfe4d2b65faf6ed81 | |
parent | e1918ce486e51477b137f93716b58be779dd870f (diff) | |
download | guix-a5338dd467d32b9f47f6b38059ee8c46104eff8b.tar guix-a5338dd467d32b9f47f6b38059ee8c46104eff8b.tar.gz |
gnu: Add emacs-lispy.
* gnu/packages/emacs.scm (emacs-lispy): New variable.
-rw-r--r-- | gnu/packages/emacs.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 7a66f3177e..a3b0f63388 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1851,6 +1851,36 @@ lines that match the current text being edited. This gives you the effect of a temporary @code{keep-lines} or @code{occur}.") (license license:gpl3+))) +(define-public emacs-lispy + (package + (name "emacs-lispy") + (version "0.26.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/abo-abo/lispy/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "15gig95cvamw5zlw99cxggd27c18b9scznjj97gvjn2zbljcaqzl")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-ace-window" ,emacs-ace-window) + ("emacs-iedit" ,emacs-iedit) + ("emacs-ivy" ,emacs-ivy) + ("emacs-hydra" ,emacs-hydra))) + (home-page "https://github.com/abo-abo/lispy") + (synopsis "Modal S-expression editing") + (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 +unprefixed printable characters can be used to call commands when the point is +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.") + (license license:gpl3+))) + (define-public emacs-clojure-mode (package (name "emacs-clojure-mode") |