mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add emacs-minibuffer-line.
* gnu/packages/emacs-xyz.scm (emacs-minibuffer-line): New variable.
This commit is contained in:
parent
919c5e1b43
commit
fec41bceb8
1 changed files with 26 additions and 0 deletions
|
@ -19430,3 +19430,29 @@ (define-public emacs-dimmer
|
|||
overall color scheme is shown in a muted form without requiring you to define
|
||||
what is a \"dim\" version of every face.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-minibuffer-line
|
||||
(package
|
||||
(name "emacs-minibuffer-line")
|
||||
(version "0.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://elpa.gnu.org/packages/minibuffer-line-"
|
||||
version
|
||||
".el"))
|
||||
(sha256
|
||||
(base32 "1ny4iirp26na5118wfgxlv6fxlrdclzdbd9m0lkrv51w0qw7spil"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://elpa.gnu.org/packages/minibuffer-line.html")
|
||||
(synopsis "Display status info in the minibuffer window")
|
||||
(description
|
||||
"This package lets you display various status information in the
|
||||
minibuffer window instead of the mode-line. Of course, this is only displayed
|
||||
when the minibuffer window is not already used for other things (e.g. a
|
||||
minibuffer or an each area message).
|
||||
|
||||
The contents and aspect is controlled by the @code{minibuffer-line-format}
|
||||
variable and the @code{minibuffer-line} face.")
|
||||
(license license:gpl3+)))
|
||||
|
|
Loading…
Reference in a new issue