From edad4691ff0180af4e0fb504fa2ad4e28efbb21d Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Mon, 16 Dec 2024 07:43:28 +0000 Subject: [PATCH] Remove idle timeout options, back to default --- system/home/emacs/init.el | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/system/home/emacs/init.el b/system/home/emacs/init.el index c3dc196a..427766b9 100644 --- a/system/home/emacs/init.el +++ b/system/home/emacs/init.el @@ -1059,14 +1059,12 @@ (use-package eglot :bind ( :map prog-mode-map - ("C-c c e" . eglot) ("C-c c a" . eglot-code-actions) ("C-c c r" . eglot-rename)) :hook ((prog-mode . eglot-ensure) (eglot-managed-mode . (lambda () (add-hook 'flymake-diagnostic-functions 'eglot-flymake-backend nil t)))) :custom - (eglot-menu-string "lsp") - (eglot-send-changes-idle-time 0.5) + (eglot-menu-string "LSP") (eglot-extend-to-xref t) (eglot-autoshutdown t) (eglot-sync-connect nil) @@ -1120,10 +1118,7 @@ (use-package flymake :bind (("C-c C-." . flymake-goto-next-error) ("C-c C-," . flymake-goto-prev-error)) - :hook ((prog-mode yaml-ts-mode) . (lambda () (flymake-mode +1))) - :custom - (flymake-no-changes-timeout 0.5) - (flymake-show-diagnostics-at-end-of-line 'short)) + :hook ((prog-mode yaml-ts-mode) . (lambda () (flymake-mode +1)))) (use-package flymake-shellcheck :disabled t