mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: Add emacs-symbol-overlay.
* gnu/packages/emacs-xyz.scm (emacs-symbol-overlay): New variable. Signed-off-by: Oleg Pykhalov <go.wigust@gmail.com>
This commit is contained in:
parent
3eb245434b
commit
7fd1495079
1 changed files with 23 additions and 0 deletions
|
@ -4608,6 +4608,29 @@ (define-public emacs-highlight-symbol
|
|||
@code{highlight-symbol-query-replace} can be used to replace the symbol. ")
|
||||
(license license:gpl2+))))
|
||||
|
||||
(define-public emacs-symbol-overlay
|
||||
(let ((commit "e40a7c407f24158c45eaa5f54ed41f5e416a51dc")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "emacs-symbol-overlay")
|
||||
(version (git-version "4.1" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/wolray/symbol-overlay.git")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0ibz3392d3jw1l8006h9kf8s7bg6vl7jc92bmqc031a433009ic7"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/wolray/symbol-overlay")
|
||||
(synopsis "Highlight symbols and perform various search operations on them")
|
||||
(description
|
||||
"This package provides functions for highlighting and navigating
|
||||
between symbols.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-hl-todo
|
||||
(package
|
||||
(name "emacs-hl-todo")
|
||||
|
|
Loading…
Reference in a new issue