Variable: hui:menu-to
hui:menu-to is a customizable variable defined in hui-mini.el.
Value
(("To>") ("Agenda-or-Search" org-agenda) ("Bookmarks" bookmark-jump)
("Calendar" calendar) ("Directories" hui:menu-to-personal-section)
("org-roam-Find" hyrolo-org-roam)
("Global-Buttons"
(find-file (expand-file-name hbmap:filename hbmap:dir-user)))
("Jump-to-Websites" webjump)
("Koutlines" hui:menu-to-personal-section) ("buffer-Menu-Filter")
("Org-Find" hyrolo-org) ("Projects" hui:menu-to-personal-section)
("Rolo" hyrolo-fgrep) ("Shell-Commands" hui:menu-to-personal-section)
("Todos" org-todo-list) ("URL-Links" hui:menu-to-personal-section)
("Web-Search/" (menu . web) "Display Hyperbole web search menu"))
Documentation
*Hyperbole minibuffer To menu items of the form:
(LABEL-STRING ACTION-SEXP DOC-STR).
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-mini.el
(defcustom hui:menu-to
'(("To>")
("Agenda-or-Search" org-agenda)
("Bookmarks" bookmark-jump)
("Calendar" calendar)
("Directories" hui:menu-to-personal-section)
;; ("E")
("org-roam-Find" hyrolo-org-roam)
;; ("recent-Files" recentf-open-files)
("Global-Buttons" (find-file (expand-file-name hbmap:filename hbmap:dir-user)))
;; ("Helm" (menu . helm) "Display Hyperbole helm control menu")
;; ("I")
("Jump-to-Websites" webjump)
("Koutlines" hui:menu-to-personal-section)
;; ("L")
("buffer-Menu-Filter")
;; ("Notes" hynote-find)
("Org-Find" hyrolo-org)
("Projects" hui:menu-to-personal-section)
("Rolo" hyrolo-fgrep)
;; ("<Quit-Menu>")
("Shell-Commands" hui:menu-to-personal-section)
("Todos" org-todo-list)
("URL-Links" hui:menu-to-personal-section)
;; ("V")
("Web-Search/" (menu . web) "Display Hyperbole web search menu")
;; ("X")
;; ("Y")
;; ("Zettelkasten-Search")
)
"*Hyperbole minibuffer To menu items of the form:
\(LABEL-STRING ACTION-SEXP DOC-STR)."
:set (lambda (var value)
(if (fboundp #'hyperbole-minibuffer-menu)
(progn (set-default var value)
(hyperbole-minibuffer-menu))
(set-default var value)))
:type '(cons (list string) (repeat (list string sexp string)))
:group 'hyperbole-buttons)