mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: emacs-substitute: Update to 0.2.0.
* gnu/packages/emacs-xyz.scm (emacs-substitute): Update to 0.2.0.
This commit is contained in:
parent
1de41d5a1f
commit
9f6feeca3a
1 changed files with 18 additions and 19 deletions
|
@ -9384,24 +9384,23 @@ (define-public emacs-mc-extras
|
|||
(license license:bsd-2))))
|
||||
|
||||
(define-public emacs-substitute
|
||||
(let ((commit "b81bb7789847f3d1645a60422fa080c48b93dd47")) ;version bump
|
||||
(package
|
||||
(name "emacs-substitute")
|
||||
(version "0.1.8")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://git.sr.ht/~protesilaos/substitute")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0s1lgpwmdjz17rd4r6qp41agmpqwa9976v1pb55p648zjh0p2vlz"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://git.sr.ht/~protesilaos/substitute")
|
||||
(synopsis "Efficiently replace targets in the buffer or context")
|
||||
(description
|
||||
"Substitute is a set of commands that perform text replacement (i)
|
||||
(package
|
||||
(name "emacs-substitute")
|
||||
(version "0.2.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://git.sr.ht/~protesilaos/substitute")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"1qb2nqwy870jh66iv46bx63mp0hg7ds79259m9l783h2cr74mqjx"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://git.sr.ht/~protesilaos/substitute")
|
||||
(synopsis "Efficiently replace targets in the buffer or context")
|
||||
(description
|
||||
"Substitute is a set of commands that perform text replacement (i)
|
||||
throughout the buffer, (ii) limited to the current definition (per
|
||||
narrow-to-defun), (iii) from point to the end of the buffer, and (iv) from
|
||||
point to the beginning of the buffer.
|
||||
|
@ -9409,7 +9408,7 @@ (define-public emacs-substitute
|
|||
These substitutions are meant to be as quick as possible and, as such, differ
|
||||
from the standard @code{query-replace} tool. The provided commands prompt for
|
||||
substitute text and perform the substitution outright.")
|
||||
(license license:gpl3+))))
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-typo
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue