Silence mouse hints

Potentially this can be avoided by using ~inhibit-mouse~
master
Jacopo De Simoi 2 months ago
parent 8dba116f2c
commit 5a3a65cf45
  1. 9
      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

Loading…
Cancel
Save