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:
jgart 2022-07-26 18:44:11 -05:00 committed by Nicolas Goaziou
parent b94a82dcf2
commit e92c483be8
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -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")