me
/
guix
Archived
1
0
Fork 0

gnu: Add emacs-evil-escape.

* gnu/packages/emacs-xyz.scm (emacs-evil-escape): New variable.
master
John Soo 2020-03-30 14:43:17 +02:00 committed by Nicolas Goaziou
parent bd71818df3
commit 9a69218a16
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 24 additions and 0 deletions

View File

@ -7831,6 +7831,30 @@ a popup window for previewing candidates.")
arguments, such as arguments separated by commas and semicolons.") arguments, such as arguments separated by commas and semicolons.")
(license license:expat)))) (license license:expat))))
(define-public emacs-evil-escape
(package
(name "emacs-evil-escape")
(version "3.14")
(source
(origin
(method git-fetch)
(uri
(git-reference
(url "https://github.com/syl20bnr/evil-escape")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0s8lmmm25qabicwaj9jybpbd8mkc62yl7jnhk1lpablydjkv3w2i"))))
(propagated-inputs
`(("emacs-evil" ,emacs-evil)))
(build-system emacs-build-system)
(home-page "https://github.com/syl20bnr/evil-escape")
(synopsis "Escape from insert state and everything else in Emacs")
(description
"Evil escape provides a customizable key sequence to escape from insert
state and everything else in Emacs.")
(license license:gpl3+)))
(define-public emacs-evil-exchange (define-public emacs-evil-exchange
(let ((commit "47691537815150715e64e6f6ec79be7746c96120") (let ((commit "47691537815150715e64e6f6ec79be7746c96120")
(version "0.41") (version "0.41")