gnu: Add emacs-key-chord.

* gnu/packages/emacs.scm (emacs-key-chord): New variable.

Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
This commit is contained in:
Kyle Meyer 2017-05-06 00:41:44 -04:00 committed by Arun Isaac
parent c0326ebcb5
commit a34242eedc
No known key found for this signature in database
GPG key ID: 2E25EE8B61802BB3

View file

@ -4580,3 +4580,22 @@ (define-public emacs-transpose-frame
functions which allows users to transpose windows arrangement in currently
selected frame.")
(license license:bsd-2)))
(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 "@code{emacs-key-chord} 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+)))