mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-01 12:17:25 -05:00
tools/lsp: fall back to lsp-find-{definitions,references} #1521
When lsp-ui-mode is disabled.
This commit is contained in:
@ -7,7 +7,9 @@
|
||||
|
||||
(after! lsp-mode
|
||||
(set-lookup-handlers! 'lsp-mode :async t
|
||||
:documentation 'lsp-describe-thing-at-point)
|
||||
:documentation 'lsp-describe-thing-at-point
|
||||
:definition 'lsp-find-definition
|
||||
:references 'lsp-find-references)
|
||||
|
||||
;; The original `lsp' initializes too much, too quickly. Things like flycheck,
|
||||
;; company, and yasnippet. Doom's modules already handle these just fine, so
|
||||
|
Reference in New Issue
Block a user