guix-commits
[Top][All Lists]
Advanced

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

04/13: gnu: Add emacs-evil-replace-with-register.


From: guix-commits
Subject: 04/13: gnu: Add emacs-evil-replace-with-register.
Date: Thu, 11 Apr 2019 07:46:49 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit f74a90bf6cf7c7ee3b8c3997ab08c015339b92bb
Author: Brian Leung <address@hidden>
Date:   Thu Apr 4 06:15:33 2019 +0200

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

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 205d01f..302288e 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -5655,6 +5655,32 @@ end of a line and increment or decrement it.")
 for exchanging text.")
       (license license:gpl3+))))
 
+(define-public emacs-evil-replace-with-register
+  (let ((commit "91cc7bf21a94703c441cc9212214075b226b7f67")
+        (version "0.1")
+        (revision "1"))
+    (package
+      (name "emacs-evil-replace-with-register")
+      (version (git-version version revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/Dewdrops/evil-ReplaceWithRegister";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32
+           "14rpn76qrf287s3y2agmddcxi27r226i53ixjvd694ss039g0r11"))))
+      (build-system emacs-build-system)
+      (propagated-inputs `(("emacs-evil" ,emacs-evil)))
+      (home-page "https://github.com/Dewdrops/evil-ReplaceWithRegister";)
+      (synopsis "Quickly replace text with the contents of a register")
+      (description
+       "This package provides an Evil operator for replacing text with the
+contents of a register.")
+      (license license:gpl3+))))
+
 (define-public emacs-monroe
   (package
     (name "emacs-monroe")



reply via email to

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