Function: hywiki-active-in-current-buffer-p

hywiki-active-in-current-buffer-p is a byte-compiled function defined in hywiki.el.

Signature

(hywiki-active-in-current-buffer-p)

Documentation

Return non-nil if HyWikiWord links are active in the current buffer.

Exclude the minibuffer if selected and return nil.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
;;; ************************************************************************
;;; Public functions
;;; ************************************************************************

(defun hywiki-active-in-current-buffer-p ()
  "Return non-nil if HyWikiWord links are active in the current buffer.
Exclude the minibuffer if selected and return nil."
  (if (eq hywiki-mode :pages)
      (hywiki-in-page-p)
    (and hywiki-mode (hywiki-potential-buffer-p))))