diff options
author | Mark H Weaver <mhw@netris.org> | 2018-01-04 21:21:04 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-01-04 21:21:04 -0500 |
commit | 247d23680a222bc5440dec7c3fe0d36ad463a121 (patch) | |
tree | 4e3c28a2e7b0531c7883ae1c40348f1533a20c4e /gnu/packages/emacs.scm | |
parent | e21ce0f9040592d398668498119565d94a639a04 (diff) | |
parent | 72687ca5d2d8d1dd55b152823a164606fa421d9c (diff) | |
download | patches-247d23680a222bc5440dec7c3fe0d36ad463a121.tar patches-247d23680a222bc5440dec7c3fe0d36ad463a121.tar.gz |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/emacs.scm')
-rw-r--r-- | gnu/packages/emacs.scm | 37 |
1 files changed, 36 insertions, 1 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index b9280728c4..81cdc29336 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -16,7 +16,7 @@ ;;; Copyright © 2016 Alex Griffin <a@ajgrf.com> ;;; Copyright © 2016, 2017 Nicolas Goaziou <mail@nicolasgoaziou.fr> ;;; Copyright © 2016, 2017 Alex Vong <alexvong1995@gmail.com> -;;; Copyright © 2016, 2017 Arun Isaac <arunisaac@systemreboot.net> +;;; Copyright © 2016, 2017, 2018 Arun Isaac <arunisaac@systemreboot.net> ;;; Copyright © 2017 Christopher Baines <mail@cbaines.net> ;;; Copyright © 2017 Mathieu Othacehe <m.othacehe@gmail.com> ;;; Copyright © 2017 Clément Lassieur <clement@lassieur.org> @@ -6600,3 +6600,38 @@ evil mode using @kbd{%}. It is a port of @code{matchit} for Vim.") makes Evil play nice with Smartparens. Evil is an Emacs minor mode that emulates Vim features and provides Vim-like key bindings.") (license license:gpl3+))) + +(define-public emacs-evil-quickscope + (package + (name "emacs-evil-quickscope") + (version "0.1.4") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/blorbx/evil-quickscope/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1r26a412mmar7vbf89zcifswiwpdg30mjzj32xdyqss57aqi83ma")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-evil" ,emacs-evil))) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-before 'install 'check + (lambda* (#:key inputs #:allow-other-keys) + (invoke "emacs" "--batch" "-L" + (string-append (assoc-ref inputs "emacs-evil") + "/share/emacs/site-lisp/guix.d/evil-" + ,(package-version emacs-evil)) + "-l" "evil-quickscope-tests.el" + "-f" "ert-run-tests-batch-and-exit")))))) + (home-page "https://github.com/blorbx/evil-quickscope") + (synopsis "Target highlighting for emacs evil-mode f,F,t and T commands") + (description "@code{emacs-evil-quickscope} highlights targets for Evil +mode’s f,F,t,T keys, allowing for quick navigation within a line. It is a +port of quick-scope for Vim. Evil is an Emacs minor mode that emulates Vim +features and provides Vim-like key bindings.") + (license license:gpl3+))) |