From 9960c38468b811baf47e3e3ad88dcbc9b93cde82 Mon Sep 17 00:00:00 2001 From: finga Date: Mon, 14 Oct 2024 16:19:20 +0200 Subject: [PATCH] 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. --- .emacs.d/config/dev.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.emacs.d/config/dev.el b/.emacs.d/config/dev.el index c95d15f..937e88c 100644 --- a/.emacs.d/config/dev.el +++ b/.emacs.d/config/dev.el @@ -55,4 +55,5 @@ :bind ("C-c i" . lsp-ui-doc-show) :config - (setq lsp-ui-doc-position 'at-point)) + (setq lsp-ui-doc-position 'at-point) + (setq lsp-ui-doc-show-with-mouse nil))