Function: hui:menu-this-command-keys

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

Signature

(hui:menu-this-command-keys KEY)

Documentation

Return a string representation of the Hyperbole menu key sequence to KEY.

KEY must be a string, symbol or vector.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-mini.el
(defun hui:menu-this-command-keys (key)
  "Return a string representation of the Hyperbole menu key sequence to KEY.
KEY must be a string, symbol or vector."
  ;; `hui:menu-keys' is a vector of key sequences, each of which
  ;; may be a symbol, a vector of keys, or a string key
  (concat hui:menu-keys " " (key-description (vector key))))