guix-commits
[Top][All Lists]
Advanced

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

01/06: gnu: Add emacs-transpose-mark.


From: guix-commits
Subject: 01/06: gnu: Add emacs-transpose-mark.
Date: Sun, 18 Sep 2022 05:18:47 -0400 (EDT)

ngz pushed a commit to branch master
in repository guix.

commit ba189bdc7a1936afa6d786ff5a2cf4fd08264f18
Author: Trevor Richards <trev@trevdev.ca>
AuthorDate: Tue Sep 13 08:21:37 2022 -0700

    gnu: Add emacs-transpose-mark.
    
    * gnu/packages/emacs-xyz.scm (emacs-transpose-mark): New variable.
    
    Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
 gnu/packages/emacs-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 2ab80eeb6a..91beb65926 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -15773,6 +15773,31 @@ functions which allows users to transpose windows 
arrangement in currently
 selected frame.")
     (license license:bsd-2)))
 
+(define-public emacs-transpose-mark
+  ;; XXX: Upstream made no release so far, and did not add a Version keyword.
+  (let ((commit "667327602004794de97214cf336ac61650ef75b7")
+        (revision "0"))
+    (package
+      (name "emacs-transpose-mark")
+      (version (git-version "0" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri (git-reference
+               (url "https://github.com/kwrooijen/transpose-mark";)
+               (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "03wc50vn1kmrgnzzhs06pwpap2p2rx84wwzxw0hawsg1f1l35m2x"))))
+      (build-system emacs-build-system)
+      (home-page "https://github.com/kwrooijen/transpose-mark";)
+      (synopsis "Library for transposing lines and regions")
+      (description "Transpose mark provides some commands that makes
+transposing lines and regions easier.  You can mark a line and transpose it
+with a line at point, or mark a region and transpose it with another region
+a point.  The plugin provides visual feedback for marked regions.")
+      (license license:gpl3+))))
+
 (define-public emacs-key-chord
   (package
     (name "emacs-key-chord")



reply via email to

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