Skip to content
Snippets Groups Projects
Unverified Commit 350cfccb authored by Adriano Peluso's avatar Adriano Peluso Committed by Alex Kost
Browse files

gnu: Add emacs-adaptive-wrap.

Suggested-by Ivan Vilata i Balaguer <ivan@selidor.net>.
Fixes <https://bugs.gnu.org/26367

>.

* gnu/packages/emacs.scm (emacs-adaptive-wrap): New variable.

Signed-off-by: default avatarAlex Kost <alezost@gmail.com>
parent b0dd3436
No related branches found
No related tags found
No related merge requests found
......@@ -4057,3 +4057,26 @@ (define-public emacs-highlight-sexp
(description
"This Emacs package highlights the s-exp at the current position.")
(license license:gpl3+)))
(define-public emacs-adaptive-wrap
(package
(name "emacs-adaptive-wrap")
(version "0.5")
(source (origin
(method url-fetch)
(uri (string-append
"http://elpa.gnu.org/packages/adaptive-wrap-"
version ".el"))
(sha256
(base32
"0frgmp8vrrml4iykm60j4d6cl9rbcivy9yh24q6kd10bcyx59ypy"))))
(build-system emacs-build-system)
(home-page "http://elpa.gnu.org/packages/adaptive-wrap.html")
(synopsis "Smart line-wrapping with wrap-prefix")
(description
"This Emacs package provides the @code{adaptive-wrap-prefix-mode}
minor mode which sets the wrap-prefix property on the fly so that
single-long-line paragraphs get word-wrapped in a way similar to what
you'd get with @kbd{M-q} using @code{adaptive-fill-mode}, but without
actually changing the buffer's text.")
(license license:gpl3+)))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment