Variable: hyrolo-menu-common-body

hyrolo-menu-common-body is a variable defined in hyrolo-menu.el.

Value

(("Move"
  ["Scroll-Backward" scroll-down t]
  ["Scroll-Forward" scroll-up t]
  ["To-Beginning" beginning-of-buffer t]
  ["To-End" end-of-buffer t]
  "----"
  ["To-Next-Entry" hyrolo-outline-next-visible-heading t]
  ["To-Next-Same-Level" hyrolo-outline-forward-same-level t]
  ["To-Previous-Entry" hyrolo-outline-previous-visible-heading t]
  ["To-Previous-Same-Level" hyrolo-outline-backward-same-level t]
  ["Up-a-Level" hyrolo-outline-up-heading t])
 ("Outline"
  ["Hide (Collapse)" hyrolo-outline-hide-subtree t]
  ["Show (Expand)" hyrolo-outline-show-subtree t]
  ["Show-All" hyrolo-outline-show-all t]
  ["Show-Only-First-Line" hyrolo-outline-hide-body t]))

Documentation

The middle menu entries common to all HyRolo menus.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hyrolo-menu.el
(defconst hyrolo-menu-common-body
  '(
    ("Move"
     ["Scroll-Backward"        scroll-down                              t]
     ["Scroll-Forward"         scroll-up                                t]
     ["To-Beginning"           beginning-of-buffer                      t]
     ["To-End"                 end-of-buffer                            t]
     "----"
     ["To-Next-Entry"          hyrolo-outline-next-visible-heading      t]
     ["To-Next-Same-Level"     hyrolo-outline-forward-same-level        t]
     ["To-Previous-Entry"      hyrolo-outline-previous-visible-heading  t]
     ["To-Previous-Same-Level" hyrolo-outline-backward-same-level       t]
     ["Up-a-Level"             hyrolo-outline-up-heading                t])
    ("Outline"
     ["Hide (Collapse)"        hyrolo-outline-hide-subtree              t]
     ["Show (Expand)"          hyrolo-outline-show-subtree              t]
     ["Show-All"               hyrolo-outline-show-all                  t]
     ["Show-Only-First-Line"   hyrolo-outline-hide-body                 t]))
  "The middle menu entries common to all HyRolo menus.")