mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 14:07:01 +01:00
gnu: Add emacs-eldoc-box.
* gnu/packages/emacs-xyz.scm (emacs-eldoc-box): New variable. Signed-off-by: Andrew Tropin <andrew@trop.in>
This commit is contained in:
parent
88027480b5
commit
6663eb9aa7
1 changed files with 22 additions and 0 deletions
|
@ -18626,6 +18626,28 @@ (define-public emacs-eldoc
|
|||
variable instead, to remind you of that variable's meaning.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-eldoc-box
|
||||
(package
|
||||
(name "emacs-eldoc-box")
|
||||
(version "1.10.1")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/casouri/eldoc-box")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"076bbn2nnrx02zk2hs4b39q0w3s7afbgfdxnwk2y2s8lkq1l6l87"))))
|
||||
(build-system emacs-build-system)
|
||||
(home-page "https://github.com/casouri/eldoc-box")
|
||||
(synopsis "Childframe doc for eglot and anything that uses eldoc")
|
||||
(description
|
||||
"This package displays ElDoc documentations in a childframe. The
|
||||
childfrme is selectable and scrollable with mouse, even thought the cursor is
|
||||
hidden.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
;; Tests for ert-runner have a circular dependency with ecukes, and therefore
|
||||
;; cannot be run
|
||||
(define-public emacs-ert-runner
|
||||
|
|
Loading…
Reference in a new issue