From 5a3a65cf45c4820055e67b6774d74764cb6522f1 Mon Sep 17 00:00:00 2001 From: Jacopo De Simoi Date: Fri, 10 Apr 2026 10:17:43 -0400 Subject: [PATCH] Silence mouse hints Potentially this can be avoided by using ~inhibit-mouse~ --- global.org | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/global.org b/global.org index de11e0a..699325c 100644 --- a/global.org +++ b/global.org @@ -491,6 +491,8 @@ '("%e" mode-line-format-left mode-line-separator mode-line-format-right)) + + (setq mode-line-default-help-echo nil) #+end_src The following has been found in [[https://www.masteringemacs.org/article/hiding-replacing-modeline-strings][here]] to clean up the modeline I modified it marginally to avoid using the loop monster @@ -716,6 +718,13 @@ (propertize "." 'display `((margin left-margin) ,(propertize "×" 'face 'flyspell-margin-incorrect)))) #+end_src + + #+begin_src emacs-lisp + (advice-add 'make-flyspell-overlay :filter-return (lambda (overlay) + (overlay-put overlay 'help-echo nil) + overlay)) + #+end_src + ** Fringe treatment *** Add margin marker for current line Add marker for current line in the margin (see