diff options
author | Brian Leung <bkleung89@gmail.com> | 2019-06-28 04:20:12 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-07-07 15:48:19 +0200 |
commit | b453637f1bc2626e0b19fc6b981b1d42c43b3dcc (patch) | |
tree | f97517190d7dc993e7e4d402fd4bcac483edcd50 | |
parent | 55a0b2a08d97b5df9e802c4392dcd4cc680f977e (diff) | |
download | patches-b453637f1bc2626e0b19fc6b981b1d42c43b3dcc.tar patches-b453637f1bc2626e0b19fc6b981b1d42c43b3dcc.tar.gz |
gnu: Add emacs-lpy.
* gnu/packages/emacs-xyz.scm (emacs-lpy): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 281fa0d3e9..051816cb90 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -4838,6 +4838,36 @@ keybinding style. The provided commands allow for editing Lisp in normal state and will work even without lispy being enabled.") (license license:gpl3+)))) +(define-public emacs-lpy + (let ((commit "553d28f7b6523ae5d44d34852ab770b871b0b0ad") + (version "0.1.0") + (revision "1")) + (package + (name "emacs-lpy") + (version (git-version version revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/abo-abo/lpy") + (commit commit))) + (sha256 + (base32 + "0kl9b3gga18cwv5cq4db8i6b7waj6mp3h2l7qjnp7wq6dpvwhn0i")) + (file-name (git-file-name name version)))) + (propagated-inputs + `(("emacs-zoutline" ,emacs-zoutline) + ("emacs-lispy" ,emacs-lispy))) + (build-system emacs-build-system) + (home-page "https://github.com/abo-abo/lpy") + (synopsis "Modal editing for Python") + (description + "This package provides a minor mode for Python that binds useful +commands to unprefixed keys, such as @code{j} or @code{e}, under certain +circumstances, and leaves the keys untouched outside of those situations, +allowing unprefixed keys to insert their respective characters as expected.") + (license license:gpl3+)))) + (define-public emacs-clojure-mode (package (name "emacs-clojure-mode") |