From d6e1f25e779ba3f6baaa6245fd861d932f5897f9 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Wed, 24 Sep 2025 21:11:12 -0400 Subject: [PATCH] tweak(lsp): eglot-code-action-indications: remove margin Ref: doomemacs/community#37 --- modules/tools/lsp/+eglot.el | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/tools/lsp/+eglot.el b/modules/tools/lsp/+eglot.el index f1483f982..db196aac9 100644 --- a/modules/tools/lsp/+eglot.el +++ b/modules/tools/lsp/+eglot.el @@ -14,7 +14,11 @@ (append (if (modulep! :checkers syntax -flymake) '(flymake)) (if (modulep! :completion company) - '(company)))) + '(company))) + ;; Margin indicator may increase line height due to glyph display + ;; failures or emoji font height differences; I also think the eldoc + ;; hint is enough. + eglot-code-action-indications '(eldoc-hint)) :config (set-popup-rule! "^\\*eglot-help" :size 0.15 :quit t :select t)