[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/04: gnu: Add emacs-ace-link.
From: |
guix-commits |
Subject: |
02/04: gnu: Add emacs-ace-link. |
Date: |
Tue, 16 Apr 2019 13:21:59 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit cfcec4abf61c5f23b4fe125a8c354d6dfa32c2ba
Author: mikadoZero <address@hidden>
Date: Mon Mar 25 19:39:09 2019 -0400
gnu: Add emacs-ace-link.
* gnu/packages/emacs-xyz.scm (emacs-ace-link): New variable.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/emacs-xyz.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 9d69938..7aec695 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -44,6 +44,7 @@
;;; Copyright © 2018, 2019 Brett Gilio <address@hidden>
;;; Copyright © 2019 Dimakakos Dimos <address@hidden>
;;; Copyright © 2019 Brian Leung <address@hidden>
+;;; Copyright © 2019 mikadoZero <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -1140,6 +1141,34 @@ within a specified width. It is useful for displaying
long track titles.")
;;; Miscellaneous.
;;;
+(define-public emacs-ace-link
+ (package
+ (name "emacs-ace-link")
+ (version "0.5.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/abo-abo/ace-link.git")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "147dz79vg4ym5wg3d544bw2khdb2j3hr73rw4qfm64wf0q2dj0vk"))))
+ (build-system emacs-build-system)
+ (propagated-inputs
+ `(("emacs-avy" ,emacs-avy)))
+ (home-page "https://github.com/abo-abo/ace-link")
+ (synopsis "Quickly follow links in Emacs")
+ (description
+ "Currently, to jump to a link in a @code{Info-mode}, @code{help-mode},
address@hidden, @code{org-mode}, @code{eww-mode}, @code{compilation-mode},
address@hidden buffer, you can tab through the links to select the
+one you want. This is an O(N) operation, where the N is the amount of links.
+This package turns this into an O(1) operation. It does so by assigning a
+letter to each link using avy.")
+ (license license:gpl3+)))
+
(define-public emacs-bbdb
(package
(name "emacs-bbdb")