Function: allout-item-icon-key-handler
allout-item-icon-key-handler is an interactive and byte-compiled
function defined in allout-widgets.el.gz.
Signature
(allout-item-icon-key-handler)
Documentation
Catchall handling of key bindings in item icon/cue hot-spots.
Applies allout-hotspot-key-handler and calls the result, if any, as an
interactive command.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/allout-widgets.el.gz
;;;_ > allout-item-icon-key-handler ()
(defun allout-item-icon-key-handler ()
"Catchall handling of key bindings in item icon/cue hot-spots.
Applies `allout-hotspot-key-handler' and calls the result, if any, as an
interactive command."
(interactive)
(let* ((mapped-binding (allout-hotspot-key-handler)))
(when mapped-binding
(call-interactively mapped-binding))))