This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new d2299fe gnu: Add emacs-ido-at-point.
d2299fe is described below
commit d2299fe38a93c58c2a18861afecbb9b7b4e7f904
Author: Masaya Tojo <[email protected]>
AuthorDate: Tue Feb 23 19:54:22 2021 +0900
gnu: Add emacs-ido-at-point.
* gnu/packages/emacs-xyz.scm (emacs-ido-at-point): New variable.
Signed-off-by: Nicolas Goaziou <[email protected]>
---
gnu/packages/emacs-xyz.scm | 23 ++++++++++++++++++++++-
1 file changed, 22 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 71564dc..e2c069a 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -60,7 +60,7 @@
;;; Copyright © 2020 Paul Garlick <[email protected]>
;;; Copyright © 2020 Robert Smith <[email protected]>
;;; Copyright © 2020 Evan Straw <[email protected]>
-;;; Copyright © 2020 Masaya Tojo <[email protected]>
+;;; Copyright © 2020, 2021 Masaya Tojo <[email protected]>
;;; Copyright © 2020, 2021 Martin Becze <[email protected]>
;;; Copyright © 2020, 2021 Michael Rohleder <[email protected]>
;;; Copyright © 2020 Brice Waegeneire <[email protected]>
@@ -18027,6 +18027,27 @@ bookmarks and history.")
"This package provides an Emacs interface for IETF RFC document.")
(license license:gpl3+)))
+(define-public emacs-ido-at-point
+ (package
+ (name "emacs-ido-at-point")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/katspaugh/ido-at-point")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1bii7vj8pmmijcpvq3a1scky4ais7k6d7zympb3m9dmz355m9rpp"))))
+ (build-system emacs-build-system)
+ (synopsis "Ido-style completion at point")
+ (description
+ "This package is an alternative frontend for @code{completion-at-point}.
+It replaces the standard completions buffer with Ido prompt.")
+ (home-page "https://github.com/katspaugh/ido-at-point")
+ (license license:gpl3+)))
+
(define-public emacs-ido-vertical-mode
(package
(name "emacs-ido-vertical-mode")