Function: hywiki-word-highlight-in-buffers
hywiki-word-highlight-in-buffers is a byte-compiled function defined
in hywiki.el.
Signature
(hywiki-word-highlight-in-buffers BUFFERS)
Documentation
Auto-highlight HyWikiWords in BUFFERS.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defun hywiki-word-highlight-in-buffers (buffers)
"Auto-highlight HyWikiWords in BUFFERS."
(dolist (buf buffers)
(with-current-buffer buf
(hywiki-word-add-completion-at-point)
(add-hook 'pre-command-hook 'hywiki-word-store-around-point -60 :local)
(add-hook 'post-self-insert-hook 'hywiki-word-highlight-post-self-insert -60 :local)
(add-hook 'post-command-hook 'hywiki-word-highlight-post-command -60 :local)
;; Display buffer before `normal-mode' triggers possibly
;; long-running font-locking
(sit-for 0)
(hywiki-maybe-highlight-references nil nil t)))
;; Rebuild lookup tables if any HyWiki page name has changed
(hywiki-get-referent-hasht)
(hywiki-maybe-directory-updated))