mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-21 01:26:43 +01:00
gnu: Add emacs-consult-lsp.
* gnu/packages/emacs-xyz.scm (emacs-consult-lsp): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
This commit is contained in:
parent
b94a82dcf2
commit
e92c483be8
1 changed files with 23 additions and 0 deletions
|
@ -31980,6 +31980,29 @@ (define-public emacs-popon
|
|||
can bind a popon to a specific buffer to only show on that buffer.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-consult-lsp
|
||||
(package
|
||||
(name "emacs-consult-lsp")
|
||||
(version "1.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/gagbo/consult-lsp")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "14dyclspkf1a34nvjj800ckz1phsizq07ps8k4x0ah6ik0hfhy1w"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs (list emacs-consult emacs-lsp-mode emacs-f))
|
||||
(home-page "https://github.com/gagbo/consult-lsp/")
|
||||
(synopsis "LSP-mode and consult helping each other")
|
||||
(description
|
||||
"@code{emacs-consult-lsp} provides helpers for interactively selecting LSP
|
||||
workspace diagnostics, symbols, and file symbols from @{emacs-lsp-mode}
|
||||
by leveraging @code{emacs-consult} APIs.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public emacs-bitbake-modes
|
||||
(package
|
||||
(name "emacs-bitbake-modes")
|
||||
|
|
Loading…
Reference in a new issue