mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add emacs-highlight-defined.
* gnu/packages/emacs.scm (emacs-highlight-defined): New public variable.
This commit is contained in:
parent
fcd8d4f713
commit
b91e172431
1 changed files with 22 additions and 0 deletions
|
@ -9875,3 +9875,25 @@ compilation/grep buffers. Works with @code{wgrep}, @code{ack}, @code{ag},
|
||||||
@code{shift-number-up} to increase and @code{shift-number-down} to
|
@code{shift-number-up} to increase and @code{shift-number-down} to
|
||||||
decrease the number at point.")
|
decrease the number at point.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public emacs-highlight-defined
|
||||||
|
(package
|
||||||
|
(name "emacs-highlight-defined")
|
||||||
|
(version "0.1.5")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"https://github.com/Fanael/highlight-defined/archive/"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1ryd66989b5byqdw8jmjrjf0c78iiz72wibld750skcnj5h5h506"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://github.com/Fanael/highlight-defined")
|
||||||
|
(synopsis "Syntax highlighting of known Elisp symbols")
|
||||||
|
(description "Minor mode providing syntax highlighting of known Emacs Lisp
|
||||||
|
symbols. Currently the code distinguishes Lisp functions, built-in functions,
|
||||||
|
macros, faces and variables. To enable call @code{highlight-defined-mode}. ")
|
||||||
|
(license license:gpl3+)))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue