guix-commits
[Top][All Lists]
Advanced

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

11/88: gnu: Add emacs-move-text.


From: Oleg Pykhalov
Subject: 11/88: gnu: Add emacs-move-text.
Date: Wed, 2 May 2018 13:21:05 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit fb3aeaf7de9182d5300464e54f58181da6b37110
Author: Oleg Pykhalov <address@hidden>
Date:   Wed May 2 18:55:05 2018 +0300

    gnu: Add emacs-move-text.
    
    * gnu/packages/emacs.scm (emacs-move-text): New public variable.
---
 gnu/packages/emacs.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index f217001..ed5d194 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -8316,3 +8316,24 @@ arXiv, Google Scholar, Library of Congress, etc.
     (synopsis "List-manipulation utility functions")
     (description "This package provides a list manipulation library for 
Emacs.")
     (license license:gpl3+)))
+
+(define-public emacs-move-text
+  (package
+    (name "emacs-move-text")
+    (version "2.0.8")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/emacsfodder/move-text/archive/";
+                           version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1sjfja9r25692pgcldgnjzkapzy970m14jh9l4pajysiqcdk72g0"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/emacsfodder/move-text";)
+    (synopsis "Move current line or region with M-up or M-down")
+    (description "This package provide functions to move the current line
+using @kbd{M-up} or @kbd{M-down} if a region is marked, it will move the
+region instead.")
+    (license license:gpl3+)))



reply via email to

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