diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-06-18 16:15:44 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-06-20 07:06:58 +0200 |
commit | 12db29baafb677cba1a93a8b36cceba93d997541 (patch) | |
tree | 30612ef866e5b4760319d22d45c28e3207c21306 /gnu | |
parent | 79b3d3ea58586bb29ee71c98dcd261154572ace2 (diff) | |
download | guix-12db29baafb677cba1a93a8b36cceba93d997541.tar guix-12db29baafb677cba1a93a8b36cceba93d997541.tar.gz |
gnu: Add emacs-ivy.
* gnu/packages/emacs.scm (emacs-ivy): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 32eb844cb0..8648ceb132 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1744,6 +1744,33 @@ the Hydra very seamless; it's like a minor mode that disables itself automatically.") (license license:gpl3+))) +(define-public emacs-ivy + (package + (name "emacs-ivy") + (version "0.8.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://github.com/abo-abo/swiper/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "18nqwl05is71dzswnvpfhlg7b0v3apvbsfxrwab9c0apwavi892q")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-hydra" ,emacs-hydra))) + (home-page "http://oremacs.com/swiper/") + (synopsis "Incremental vertical completion for Emacs") + (description + "This package provides @code{ivy-read} as an alternative to +@code{completing-read} and similar functions. No attempt is made to determine +the best candidate. Instead, the user can navigate candidates with +@code{ivy-next-line} and @code{ivy-previous-line}. The matching is done by +splitting the input text by spaces and re-building it into a regular +expression.") + (license license:gpl3+))) + (define-public emacs-clojure-mode (package (name "emacs-clojure-mode") |