Function: hui-menu-key-bindings
hui-menu-key-bindings is a byte-compiled function defined in
hui-menu.el.
Signature
(hui-menu-key-bindings REST-OF-MENU)
Documentation
Key binding menu to go before REST-OF-MENU.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-menu.el
(defun hui-menu-key-bindings (rest-of-menu)
"Key binding menu to go before REST-OF-MENU."
(nconc
(list
(vector (hui-menu-key-binding-item "Action-Key \t\t\t" 'hkey-either) '(hui:bind-key #'hkey-either) t) ;; {M-RET}
(vector (hui-menu-key-binding-item "Button-Rename-Key \t" 'hui:ebut-rename) '(hui:bind-key #'hui:ebut-rename) t) ;; None
(vector (hui-menu-key-binding-item "Drag-Emulation-Key \t\t" 'hkey-operate) '(hui:bind-key #'hkey-operate) t) ;; {M-o}
(vector (hui-menu-key-binding-item "Find-Web-Key \t\t" 'hui-search-web) '(hui:bind-key #'hui-search-web) t) ;; {C-c /}
(vector (hui-menu-key-binding-item "Grid-of-Windows-Key \t" 'hycontrol-windows-grid) '(hui:bind-key #'hycontrol-windows-grid) t) ;; {C-c @}
(vector (hui-menu-key-binding-item "Hyperbole-Menu-Key \t" 'hyperbole) '(hui:global-bind-key #'hyperbole) t) ;; {C-h h}
(vector (hui-menu-key-binding-item "Jump-Thing-Key \t\t" 'hui-select-goto-matching-delimiter) '(hui:bind-key #'hui-select-thing) t) ;; {C-c .}
(vector (hui-menu-key-binding-item "Mark-Thing-Key \t\t" 'hui-select-thing) '(hui:bind-key #'hui-select-thing) t) ;; {C-c RET}
(vector (hui-menu-key-binding-item "Smart-Help-Key \t\t" 'hkey-help) '(hui:bind-key #'hkey-help) t) ;; {C-h A}
(vector (hui-menu-key-binding-item "Windows-Control-Key\t" 'hycontrol-enable-windows-mode) '(hui:bind-key #'hycontrol-enable-windows-mode) t)) ;; {C-C \}
rest-of-menu))