guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: Add emacs-objed.


From: guix-commits
Subject: branch master updated: gnu: Add emacs-objed.
Date: Sat, 21 Mar 2020 10:42:04 -0400

This is an automated email from the git hooks/post-receive script.

mothacehe pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 6a65ec0  gnu: Add emacs-objed.
6a65ec0 is described below

commit 6a65ec0945ef5a39073ffe06f51cbacd641883aa
Author: 6033fe7de85d <address@hidden>
AuthorDate: Wed Mar 18 18:56:33 2020 +0100

    gnu: Add emacs-objed.
    
    *gnu/packages/emacs-xyz.scm (emacs-objed): New variable.
    
    Signed-off-by: Mathieu Othacehe <address@hidden>
---
 gnu/packages/emacs-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 62217e3..1ea3155 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -64,6 +64,7 @@
 ;;; Copyright © 2020 Martin Becze <address@hidden>
 ;;; Copyright © 2020 Michael Rohleder <address@hidden>
 ;;; Copyright © 2020 Brice Waegeneire <address@hidden>
+;;; Copyright © 2020 6033fe7de85d <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -21711,3 +21712,25 @@ a @samp{date} keywords, and optionally, a 
@samp{filetags} keyword.")
        "Daredevil SKK is a version of @acronym{SKK, Simple Kana to Kanji
 conversion program}, a Japanese input method on Emacs.")
       (license license:gpl2+))))
+
+(define-public emacs-objed
+  (package
+    (name "emacs-objed")
+    (version "0.8.3")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (string-append
+               "https://elpa.gnu.org/packages/objed-"; version ".tar"))
+        (sha256
+          (base32
+            "1s38d6bvggdk5p45ww1jb4gxifzgjwgw1m6ar920nlg0j4fgbcvr"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/clemera/objed";)
+    (synopsis "Navigate and edit text objects")
+    (description
+      "@code{emacs-objed} allows to navigate and edit text objects.  It
+enables modal editing and composition of commands, too.  It combines ideas of
+other Editors like Vim or Kakoune and tries to align them with regular Emacs
+conventions.")
+    (license license:gpl3+)))



reply via email to

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