guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: Add emacs-ido-at-point.


From: guix-commits
Subject: branch master updated: gnu: Add emacs-ido-at-point.
Date: Tue, 23 Feb 2021 07:51:33 -0500

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 <masaya@tojo.tokyo>
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 <mail@nicolasgoaziou.fr>
---
 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 <pgarlick@tourbillion-technology.com>
 ;;; Copyright © 2020 Robert Smith <robertsmith@posteo.net>
 ;;; Copyright © 2020 Evan Straw <evan.straw99@gmail.com>
-;;; Copyright © 2020 Masaya Tojo <masaya@tojo.tokyo>
+;;; Copyright © 2020, 2021 Masaya Tojo <masaya@tojo.tokyo>
 ;;; Copyright © 2020, 2021 Martin Becze <mjbecze@riseup.net>
 ;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
 ;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
@@ -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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]