Function: hui:hbut-term-highlight
hui:hbut-term-highlight is a byte-compiled function defined in hui.el.
Signature
(hui:hbut-term-highlight START END)
Documentation
For terminals only: Emphasize a button spanning from START to END.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui.el
(defun hui:hbut-term-highlight (start end)
"For terminals only: Emphasize a button spanning from START to END."
(save-excursion
(save-restriction
(goto-char start)
(narrow-to-region (point-min) start)
(sit-for 0)
(setq inverse-video t)
(goto-char (point-min))
(widen)
(narrow-to-region (point) end)
(sit-for 0)
(setq inverse-video nil))))