guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

05/13: gnu: Add emacs-evil-indent-plus.


From: guix-commits
Subject: 05/13: gnu: Add emacs-evil-indent-plus.
Date: Thu, 11 Apr 2019 07:46:50 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 91af509751927e48e3e4735cbe6b5694b92bcd9c
Author: Brian Leung <address@hidden>
Date:   Thu Apr 4 06:16:30 2019 +0200

    gnu: Add emacs-evil-indent-plus.
    
    * gnu/packages/emacs-xyz.scm (emacs-evil-indent-plus): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/emacs-xyz.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 302288e..5f137cd 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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]