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
|
@ -90,7 +90,7 @@ This also logs the resolved project root, if found, so we know where we are."
|
|||
;; GC-induced slowdowns/freezes.
|
||||
(setq-local gcmh-high-cons-threshold (* 2 gcmh-high-cons-threshold))
|
||||
(prog1 (lsp-mode 1)
|
||||
(setq-local lsp-buffer-uri (lsp--buffer-uri))
|
||||
(setq lsp-buffer-uri (lsp--buffer-uri))
|
||||
;; Announce what project root we're using, for diagnostic purposes
|
||||
(if-let (root (lsp--calculate-root (lsp-session) (buffer-file-name)))
|
||||
(lsp--info "Guessed project root is %s" (abbreviate-file-name root))
|
||||
|
|
|
@ -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