No-op (lsp) if already enabled #3390
`lsp-deferred` calls `lsp` and `lsp` seems to do something expensive whether or not lsp-mode is already active. Over TRAMP, this is much too expensive, so we no-op lsp-deferred if lsp-mode is already active.
This commit is contained in:
parent
b08f9c607d
commit
7784c0b6e9
2 changed files with 3 additions and 2 deletions
|
@ -6,4 +6,5 @@
|
|||
(interactive)
|
||||
(if (featurep! +eglot)
|
||||
(eglot-ensure)
|
||||
(lsp-deferred)))
|
||||
(unless (bound-and-true-p lsp-mode)
|
||||
(lsp-deferred))))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue