mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 16:06:16 -05:00
gnu: Add emacs-evil-visualstar.
* gnu/packages/emacs-xyz.scm (emacs-evil-visualstar): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
80955ad634
commit
585fb83acb
1 changed files with 26 additions and 0 deletions
|
@ -5832,6 +5832,32 @@ (define-public emacs-evil-visual-replace
|
|||
@code{replace-regexp} that work for @code{evil-mode} visual blocks.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public emacs-evil-visualstar
|
||||
(let ((commit "06c053d8f7381f91c53311b1234872ca96ced752")
|
||||
(version "0.0.2")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "emacs-evil-visualstar")
|
||||
(version (git-version version revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/bling/evil-visualstar")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0mkbzw12fav945icibc2293m5haxqr3hzkyli2cf4ssk6yvn0x4c"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs `(("emacs-evil" ,emacs-evil)))
|
||||
(home-page "https://github.com/bling/evil-visualstar")
|
||||
(synopsis "Instantly search using the visual selection")
|
||||
(description
|
||||
"This package provides @code{evil-mode} functions for using selected text
|
||||
to search.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-monroe
|
||||
(package
|
||||
(name "emacs-monroe")
|
||||
|
|
Loading…
Reference in a new issue