gnu: Add emacs-evil-visual-replace.

* gnu/packages/emacs-xyz.scm (emacs-evil-visual-replace): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Brian Leung 2019-04-04 06:18:21 +02:00 committed by Ludovic Courtès
parent a99e7f524e
commit 80955ad634
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 23 additions and 0 deletions

View File

@ -5809,6 +5809,29 @@ pasting into and from @code{tmux} paste buffers.")
@code{evil-mode}.")
(license license:gpl3+)))
(define-public emacs-evil-visual-replace
(package
(name "emacs-evil-visual-replace")
(version "0.0.5")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/troyp/evil-visual-replace")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32
"1gfyrq7xfzmzh3x8k5f08n027dlbwi0pkkxf9c39fkxp4jngibsz"))))
(build-system emacs-build-system)
(propagated-inputs `(("emacs-evil" ,emacs-evil)))
(home-page "https://github.com/troyp/evil-visual-replace")
(synopsis "Replacement commands for @code{evil-mode} visual blocks")
(description
"This package provides versions of @code{query-replace} and
@code{replace-regexp} that work for @code{evil-mode} visual blocks.")
(license license:gpl2+)))
(define-public emacs-monroe
(package
(name "emacs-monroe")