emacs-lsp/dap-mode@6933fca0b5 -> emacs-lsp/dap-mode@f918c0580b emacs-lsp/lsp-mode@c6482c1bbf -> emacs-lsp/lsp-mode@1e7128c43f gagbo/consult-lsp@f4f195046b -> gagbo/consult-lsp@5a3c4e3f42 joaotavora/eglot@f775187115 -> joaotavora/eglot@83a61f673a - Fixes support for newer versions of rust-analyzer (#6214). - Fixes an issue where the diagnostics list from consult-lsp-diagnostics weren't properly sorted by severity (#6220). Ref: gagbo/consult-lsp#21 Close: #6220 Close: #6214
16 lines
763 B
EmacsLisp
16 lines
763 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; tools/lsp/packages.el
|
|
|
|
(if (featurep! +eglot)
|
|
(progn
|
|
(package! eglot :pin "83a61f673a0395e9ea3f17f8bf7afd7da37bce03")
|
|
(when (featurep! :completion vertico)
|
|
(package! consult-eglot :pin "f93c571dc392a8b11d35541bffde30bd9f411d30")))
|
|
(package! lsp-mode :pin "1e7128c43f611ed78752130ce5ce67e641a276df")
|
|
(package! lsp-ui :pin "96b1ecbfbf87a775f05b5f0b55253376a3bd61e7")
|
|
(when (featurep! :completion ivy)
|
|
(package! lsp-ivy :pin "3e87441a625d65ced5a208a0b0442d573596ffa3"))
|
|
(when (featurep! :completion helm)
|
|
(package! helm-lsp :pin "c2c6974dadfac459b1a69a1217441283874cea92"))
|
|
(when (featurep! :completion vertico)
|
|
(package! consult-lsp :pin "5a3c4e3f4233feff3f141df38f93d1be80259301")))
|