diff options
author | Brian Leung <bkleung89@gmail.com> | 2019-04-04 06:16:30 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-04-11 13:46:39 +0200 |
commit | 91af509751927e48e3e4735cbe6b5694b92bcd9c (patch) | |
tree | f940331e9cf47266c4ec9154f9fcab141720085f /gnu | |
parent | f74a90bf6cf7c7ee3b8c3997ab08c015339b92bb (diff) | |
download | patches-91af509751927e48e3e4735cbe6b5694b92bcd9c.tar patches-91af509751927e48e3e4735cbe6b5694b92bcd9c.tar.gz |
gnu: Add emacs-evil-indent-plus.
* gnu/packages/emacs-xyz.scm (emacs-evil-indent-plus): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 302288e08a..5f137cd95d 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -5681,6 +5681,33 @@ for exchanging text.") contents of a register.") (license license:gpl3+)))) +(define-public emacs-evil-indent-plus + (let ((commit "0c7501e6efed661242c3a20e0a6c79a6455c2c40") + (version "1.0.0") + (revision "1")) + (package + (name "emacs-evil-indent-plus") + (version (git-version version revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/TheBB/evil-indent-plus") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1g6r1ydscwjvmhh1zg4q3nap4avk8lb9msdqrh7dff6pla0r2qs6")))) + (build-system emacs-build-system) + (propagated-inputs `(("emacs-evil" ,emacs-evil))) + (home-page "https://github.com/TheBB/evil-indent-plus") + (synopsis "Text objects based on indentation") + (description + "This package adds new text objects for @code{evil-mode} based on +blocks having the same or higher indentation, including or excluding +surrounding lines.") + (license license:gpl2+)))) + (define-public emacs-monroe (package (name "emacs-monroe") |