emacs: make eglot quiet on connection
Alan Pearce alan@alanpearce.eu
Sun, 28 Apr 2024 09:15:41 +0200
1 files changed, 2 insertions(+), 0 deletions(-)
jump to
M user/emacs/init.el → user/emacs/init.el
@@ -1063,6 +1063,8 @@ nix-mode-hook haskell-mode-hook) #'eglot-ensure) :config (progn + (advice-add 'eglot--message :before-while (lambda (formatstring &rest rest) + (s-starts-with-p "Connected!" formatstring))) (defun my/setup-eglot-eldoc () (push 'flymake-eldoc-function eldoc-documentation-functions)) (add-hook 'eglot-managed-mode-hook 'my/setup-eglot-eldoc)