Skip to content
Snippets Groups Projects
Unverified Commit 79bd0e4f authored by Tim Gesthuizen's avatar Tim Gesthuizen Committed by Ludovic Courtès
Browse files

gnu: Add emacs-ace-jump-mode


* gnu/packages/emacs-xyz.scm (emacs-ace-jump-mode): New variable.

Signed-off-by: default avatarLudovic Courtès <ludo@gnu.org>
parent 16cdba76
No related branches found
No related tags found
No related merge requests found
...@@ -722,6 +722,29 @@ (define-public emacs-a ...@@ -722,6 +722,29 @@ (define-public emacs-a
index is considered the key).") index is considered the key).")
(license license:gpl3+))) (license license:gpl3+)))
   
(define-public emacs-ace-jump-mode
(package
(name "emacs-ace-jump-mode")
(version "2.0")
(home-page "https://github.com/winterTTr/ace-jump-mode")
(source (origin
(method git-fetch)
(uri (git-reference
(url home-page)
(commit (string-append "v" version))))
(sha256
(base32
"1bwvzh056ls2v7y26a0s4j5mj582dmds04lx4x6iqihs04ss74bb"))
(file-name (git-file-name name version))))
(build-system emacs-build-system)
(synopsis "Cursor location minor mode for fast navigation")
(description "Ace-jump-mode is a fast/direct cursor location minor
mode. It creates an N-Branch search tree internally and marks all
the possible position with predefined keys in within the whole Emacs
view. This allows you to move to the character, word, or line almost
directly.")
(license license:gpl3+)))
(define-public emacs-anaphora (define-public emacs-anaphora
(package (package
(name "emacs-anaphora") (name "emacs-anaphora")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment