guix-patches
[Top][All Lists]
Advanced

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

bug#26793: [PATCH] gnu: Add emacs-key-chord.


From: Kyle Meyer
Subject: bug#26793: [PATCH] gnu: Add emacs-key-chord.
Date: Sat, 6 May 2017 00:41:44 -0400

* gnu/packages/emacs.scm (emacs-key-chord): New variable.
---
 gnu/packages/emacs.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 9028ed0ed..a096b4f45 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -4561,3 +4561,22 @@ built on top of XELB.")
     (description "@code{emacs-gnuplot} is an emacs major mode for interacting
 with gnuplot.")
     (license license:gpl2+)))
+
+(define-public emacs-key-chord
+  (package
+    (name "emacs-key-chord")
+    (version "0.6")
+    (source (origin
+              (method url-fetch)
+              (uri "https://www.emacswiki.org/emacs/download/key-chord.el";)
+              (sha256
+               (base32
+                "03m44pqggfrd53nh9dvpdjgm0rvca34qxmd30hr33hzprzjambxg"))))
+    (build-system emacs-build-system)
+    (home-page "https://www.emacswiki.org/emacs/key-chord.el";)
+    (synopsis "Map pairs of simultaneously pressed keys to Emacs commands")
+    (description
+     "This Emacs package provides @code{key-chord-mode}, a mode for binding
+key chords to commands.  A key chord is defined as two keys pressed
+simultaneously or a single key quickly pressed twice.")
+    (license license:gpl2+)))
-- 
2.12.2






reply via email to

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