gnu: Add emacs-form-feed.

* gnu/packages/emacs-xyz.scm (emacs-form-feed): New variable.
This commit is contained in:
Joseph LaFreniere 2020-04-05 10:19:28 +02:00 committed by Nicolas Goaziou
parent fb0aa4eb6c
commit a24744bd0a
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -1873,6 +1873,29 @@ (define-public emacs-elf-mode
that the binary uses instead of the actual binary contents.")
(license license:gpl3+)))
(define-public emacs-form-feed
(package
(name "emacs-form-feed")
(version "0.2.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/wasamasa/form-feed.git")
(commit version)))
(file-name (git-file-name name version))
(sha256
(base32 "171jna631b2iqcimfsik9c66gii8nc0zdb58m077w00rn7rcxbh2"))))
(build-system emacs-build-system)
(home-page "https://github.com/wasamasa/form-feed")
(synopsis "Display ^L glyphs as horizontal lines")
(description
"This package provides a minor mode @code{form-feed-mode} to display page
delimiters which usually appear as ^L glyphs on a single line as horizontal
lines spanning the entire window. The minor mode is suitable for inclusion
into mode hooks and is intended to be used that way.")
(license license:gpl3+)))
(define-public emacs-ggtags
(package
(name "emacs-ggtags")