Function: hywiki-add-hyrolo
hywiki-add-hyrolo is an interactive and byte-compiled function defined
in hywiki.el.
Signature
(hywiki-add-hyrolo WIKIWORD)
Documentation
Make WIKIWORD search and display hyrolo-file-list matches.
If WIKIWORD is invalid, trigger a user-error if called interactively
or return nil if not.
After successfully adding the hyrolo search, run hywiki-add-referent-hook.
Use hywiki-get-referent to determine whether WIKIWORD exists prior to
calling this function.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hywiki.el
(defun hywiki-add-hyrolo (wikiword)
"Make WIKIWORD search and display `hyrolo-file-list' matches.
If WIKIWORD is invalid, trigger a `user-error' if called interactively
or return nil if not.
After successfully adding the hyrolo search, run `hywiki-add-referent-hook'.
Use `hywiki-get-referent' to determine whether WIKIWORD exists prior to
calling this function."
(interactive (list (or (hywiki-word-at)
(hywiki-word-read-new "Add/Edit HyWikiWord: "))))
(require 'hyrolo)
;; !! TODO: Change PaulAllenWinter to search for "Winter, Paul Allen".
(hywiki-add-referent wikiword (cons 'hyrolo #'hyrolo-fgrep)))