Function: hywiki-word-highlight-buffers
hywiki-word-highlight-buffers is an interactive and byte-compiled
function defined in hywiki.el.
Signature
(hywiki-word-highlight-buffers BUFFERS)
Documentation
Setup HyWikiWord auto-highlighting and highlight in BUFFERS.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defun hywiki-word-highlight-buffers (buffers)
"Setup HyWikiWord auto-highlighting and highlight in BUFFERS."
(interactive)
(add-hook 'after-change-major-mode-hook 'hywiki-word-add-completion-at-point)
(add-hook 'after-change-major-mode-hook 'hywiki-word-highlight-in-current-buffer)
(add-hook 'window-buffer-change-functions 'hywiki-word-highlight-in-frame)
(add-to-list 'yank-handled-properties
'(hywiki-word-face . hywiki-highlight-on-yank))
(hywiki-word-highlight-in-buffers buffers)
(when (called-interactively-p 'interactive)
(message "HyWikiWord auto-highlighting enabled")))