mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-17 12:17:10 -05:00
gnu: Add emacs-keycast.
* gnu/packages/emacs-xyz.scm (emacs-keycast): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
25c3ce9dd8
commit
bb1efe432e
1 changed files with 22 additions and 0 deletions
|
@ -3008,6 +3008,28 @@ (define-public emacs-kanji
|
|||
and limited version of the images provided by the KanjiVG project.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-keycast
|
||||
(package
|
||||
(name "emacs-keycast")
|
||||
(version "1.0.4")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/tarsius/keycast.git")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1g9arjdhdpvsw47ny9gi5k758ya37yza4mr0rhbf02yvrqyfsrgr"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/tarsius/keycast")
|
||||
(synopsis "Show current command and its key in the mode line")
|
||||
(description
|
||||
"This package provides Keycast mode. Once enabled, that mode shows the
|
||||
current command and its key or mouse binding in the mode line, and updates
|
||||
them whenever another command is invoked.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-keyfreq
|
||||
(package
|
||||
(name "emacs-keyfreq")
|
||||
|
|
Loading…
Reference in a new issue