guix-commits
[Top][All Lists]
Advanced

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

05/07: gnu: Add emacs-evil-multiedit.


From: Ludovic Courtès
Subject: 05/07: gnu: Add emacs-evil-multiedit.
Date: Sat, 2 Jun 2018 10:02:59 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit ac85107c9fe0e6224444fad4275df7d2146d3abb
Author: Pierre Neidhardt <address@hidden>
Date:   Fri Jun 1 09:49:21 2018 +0200

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

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index f589f23..fe9ac7b 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -10692,3 +10692,32 @@ describing the key binding changes.")
      "Use keybindings for the mu4e mail reader in Emacs that make sense for
 Evil users.")
     (license license:gpl3+)))
+
+(define-public emacs-evil-multiedit
+  (let ((commit "ea3d9177b74ab0bc65e55df9cc0a0b42e4ef815d"))
+    (package
+      (name "emacs-evil-multiedit")
+      (version (git-version "1.3.9" "1" commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/hlissner/evil-multiedit";)
+               (commit commit)))
+         (file-name (string-append name "-" version "-checkout"))
+         (sha256
+          (base32
+           "17zm35r474z8ras4xy7124pcb972d385pbdv4jxyj5vq042vq07w"))))
+      (build-system emacs-build-system)
+      (propagated-inputs
+       `(("emacs-evil" ,emacs-evil)
+         ("emacs-iedit" ,emacs-iedit)))
+      (home-page
+       "https://github.com/hlissner/evil-multiedit";)
+      (synopsis "Multiple cursors for Evil mode")
+      (description
+       "This plugin was an answer to the lack of proper multiple cursor support
+in Emacs+Evil.  It allows you to select and edit matches interactively,
+integrating @code{iedit-mode} into Evil mode with an attempt at sensible
+defaults.")
+    (license license:gpl3+))))



reply via email to

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