lsp-mode: Do not show doc via mouse cursor

Usually the `lsp-ui-doc` is shown when the mouse cursor hovers a code
element. This is now disabled.
This commit is contained in:
finga 2024-10-14 16:19:20 +02:00
parent d22f00dcc5
commit 9960c38468

View file

@ -55,4 +55,5 @@
:bind :bind
("C-c i" . lsp-ui-doc-show) ("C-c i" . lsp-ui-doc-show)
:config :config
(setq lsp-ui-doc-position 'at-point)) (setq lsp-ui-doc-position 'at-point)
(setq lsp-ui-doc-show-with-mouse nil))