idle-highlight-mode

Homepage: https://codeberg.org/ideasman42/emacs-idle-highlight-mode

Author: Phil Hagelberg, Cornelius Mika, Campbell Barton

Updated:

Summary

Highlight the word the point is on

Commentary

M-x idle-highlight-mode sets an idle timer that highlights all
occurrences in the buffer of the symbol under the point.

Enabling it in a hook is recommended if you don't want it enabled
for all buffers, just programming ones.

Example:

(defun my-prog-mode-hook ()
  (idle-highlight-mode t))

(add-hook 'prog-mode-hook 'my-prog-mode-hook)

Dependencies