Function: hycontrol-local-frames-mode
hycontrol-local-frames-mode is an autoloaded, interactive and
byte-compiled function defined in hycontrol.el.
Signature
(hycontrol-local-frames-mode &optional ARG)
Documentation
Toggle Hyperbole Frames control minor mode in the current buffer.
This is a minor mode. If called interactively, toggle the
Hycontrol-Local-Frames 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 the variable hycontrol-local-frames-mode(var)/hycontrol-local-frames-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-frames-mode
"Toggle Hyperbole Frames control minor mode in the current buffer."
:lighter " HyFrm"
:group 'hyperbole-screen)