Function: hui:menu-item-keys

hui:menu-item-keys is a byte-compiled function defined in hui-mini.el.

Signature

(hui:menu-item-keys MENU-ALIST)

Documentation

Return ordered list of keys that activate Hypb minibuffer MENU-ALIST items.

For each item, the key is either the first capital letter in item or if there are none, then its first character.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-mini.el
(defun hui:menu-item-keys (menu-alist)
  "Return ordered list of keys that activate Hypb minibuffer MENU-ALIST items.
For each item, the key is either the first capital letter in item
or if there are none, then its first character."
  (mapcar (lambda (item) (hui:menu-item-key item))
	  (mapcar #'car (cdr menu-alist))))