gnu: Add emacs-ido-vertical-mode.

* gnu/packages/emacs.scm (emacs-ido-vertical-mode): New public variable.
This commit is contained in:
Oleg Pykhalov 2018-05-02 19:13:23 +03:00
parent dbbd6e89b5
commit 0e087b704f
No known key found for this signature in database
GPG Key ID: 7246E11C69B79569
1 changed files with 20 additions and 0 deletions

View File

@ -9991,3 +9991,23 @@ bookmarks and history.")
(description
"This package provides an Emacs interface for IETF RFC document.")
(license license:gpl3+)))
(define-public emacs-ido-vertical-mode
(package
(name "emacs-ido-vertical-mode")
(version "0.1.6")
(source
(origin
(method url-fetch)
(uri (string-append
"https://github.com/creichert/ido-vertical-mode.el/archive/"
"v" version ".tar.gz"))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0dprdxq8wvqd45dinwj92k0kixr07c8xvspa6i613mjcpxgwjg53"))))
(build-system emacs-build-system)
(home-page "https://github.com/creichert/ido-vertical-mode.el")
(synopsis "Makes ido-mode display vertically")
(description "Makes ido-mode display prospects vertically.")
(license license:gpl3+)))