Function: hycontrol-local-windows-mode
hycontrol-local-windows-mode is an autoloaded, interactive and
byte-compiled function defined in hycontrol.el.
Signature
(hycontrol-local-windows-mode &optional ARG)
Documentation
Toggle Hyperbole Windows control minor mode in the current buffer.
This is a minor mode. If called interactively, toggle the
Hycontrol-Local-Windows mode mode. If the prefix argument is
positive, enable the mode, and if it is zero or negative, disable
the mode.
If called from Lisp, toggle the mode if ARG is toggle. Enable
the mode if ARG is nil, omitted, or is a positive number.
Disable the mode if ARG is a negative number.
To check whether the minor mode is enabled in the current buffer,
evaluate hycontrol-local-windows-mode(var)/hycontrol-local-windows-mode(fun).
The mode's hook is called both when the mode is enabled and when it is disabled.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
;; This just sets the keymap locally and shows the minor mode
;; indicator in the buffer's mode-line; the separate global minor mode
;; turns things on and off.
;;;###autoload
(define-minor-mode hycontrol-local-windows-mode
"Toggle Hyperbole Windows control minor mode in the current buffer."
:lighter " HyWin"
:group 'hyperbole-screen)