Function: hycontrol-quit
hycontrol-quit is an interactive and byte-compiled function defined in
hycontrol.el.
Signature
(hycontrol-quit)
Documentation
Globally quit HyControl Frames mode.
Typically on a press of {q}, always on a press of {Q}.
If in a help buffer where {q} is bound to quit-window, run that
instead of quitting HyControl.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
(defun hycontrol-quit ()
"Globally quit HyControl Frames mode.
Typically on a press of {q}, always on a press of {Q}.
If in a help buffer where {q} is bound to `quit-window', run that
instead of quitting HyControl."
(interactive)
;; Allow for quitting from help windows displayed when HyControl is active.
(if (and (eq last-command-event ?q)
(eq (local-key-binding "q") #'quit-window))
(call-interactively #'quit-window)
(when hycontrol-windows-mode
(message "Hyperbole finished controlling windows"))
(when hycontrol-frames-mode
(message "Hyperbole finished controlling frames"))
(hycontrol-disable-modes)))