mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add emacs-hl-todo.
* gnu/packages/emacs.scm (emacs-hl-todo): New variable.
This commit is contained in:
parent
41184943ae
commit
8f82641ac9
1 changed files with 22 additions and 0 deletions
|
@ -1766,6 +1766,28 @@ (define-public emacs-smartparens
|
|||
well as completely new features.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-hl-todo
|
||||
(package
|
||||
(name "emacs-hl-todo")
|
||||
(version "1.7.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://raw.githubusercontent.com/tarsius/hl-todo/"
|
||||
version "/hl-todo.el"))
|
||||
(sha256
|
||||
(base32
|
||||
"18zydm43zajlglhgr0bhdkd4pln27amd063k2ql6p1mvyam3j8ia"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/tarsius/hl-todo")
|
||||
(synopsis "Emacs mode to highlight TODO and similar keywords")
|
||||
(description
|
||||
"This package provides an Emacs mode to highlight TODO and similar
|
||||
keywords in comments and strings. This package also provides commands for
|
||||
moving to the next or previous keyword and to invoke @code{occur} with a
|
||||
regexp that matches all known keywords.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-hydra
|
||||
(package
|
||||
(name "emacs-hydra")
|
||||
|
|
Loading…
Reference in a new issue