mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-03 18:09:18 -05:00
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>
This commit is contained in:
parent
b4f28584d3
commit
d2299fe38a
1 changed files with 22 additions and 1 deletions
|
@ -60,7 +60,7 @@
|
||||||
;;; Copyright © 2020 Paul Garlick <pgarlick@tourbillion-technology.com>
|
;;; Copyright © 2020 Paul Garlick <pgarlick@tourbillion-technology.com>
|
||||||
;;; Copyright © 2020 Robert Smith <robertsmith@posteo.net>
|
;;; Copyright © 2020 Robert Smith <robertsmith@posteo.net>
|
||||||
;;; Copyright © 2020 Evan Straw <evan.straw99@gmail.com>
|
;;; 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 Martin Becze <mjbecze@riseup.net>
|
||||||
;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
|
;;; Copyright © 2020, 2021 Michael Rohleder <mike@rohleder.de>
|
||||||
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
|
;;; Copyright © 2020 Brice Waegeneire <brice@waegenei.re>
|
||||||
|
@ -18027,6 +18027,27 @@ (define-public emacs-irfc
|
||||||
"This package provides an Emacs interface for IETF RFC document.")
|
"This package provides an Emacs interface for IETF RFC document.")
|
||||||
(license license:gpl3+)))
|
(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
|
(define-public emacs-ido-vertical-mode
|
||||||
(package
|
(package
|
||||||
(name "emacs-ido-vertical-mode")
|
(name "emacs-ido-vertical-mode")
|
||||||
|
|
Loading…
Reference in a new issue