mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-14 07:00:32 -05:00
gnu: Add emacs-unfill.
* gnu/packages/emacs-xyz.scm (emacs-unfill): New variable.
This commit is contained in:
parent
fbdabd7dc0
commit
daf29bf5a5
1 changed files with 21 additions and 0 deletions
|
@ -19697,3 +19697,24 @@ (define-public emacs-eshell-did-you-mean
|
||||||
when the command was not found in Eshell. The suggestions are found after the
|
when the command was not found in Eshell. The suggestions are found after the
|
||||||
commands that bear resemblance to the input command.")
|
commands that bear resemblance to the input command.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public emacs-unfill
|
||||||
|
(package
|
||||||
|
(name "emacs-unfill")
|
||||||
|
(version "0.2")
|
||||||
|
(home-page "https://github.com/purcell/unfill")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url home-page)
|
||||||
|
(commit "0.2")))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0wyradin5igp25nsd3n22i2ppxhmy49ac1iq1w2715v8pfmiydnc"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(synopsis "Inverse of Emacs' @code{fill-paragraph} and @code{fill-region}")
|
||||||
|
(description
|
||||||
|
"The functions in this package provide the inverse of Emacs'
|
||||||
|
@code{fill-paragraph} and @code{fill-region}.")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
Loading…
Reference in a new issue