Function: hycontrol-enable-windows-mode

hycontrol-enable-windows-mode is an autoloaded, interactive and byte-compiled function defined in hycontrol.el.

Signature

(hycontrol-enable-windows-mode &optional ARG)

Documentation

Globally enable HyControl Windows mode for rapid Emacs window control.

Interactively delete, jump to, rebalance, resize, and split windows. Optional non-negative numeric prefix ARG is used as the number of units for commands issued while the mode is active. If ARG is < 1, it is set to 1. If it is > hycontrol-maximum-units, it is set to hycontrol-maximum-units.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
;;;###autoload
(defun hycontrol-enable-windows-mode (&optional arg)
  "Globally enable HyControl Windows mode for rapid Emacs window control.

Interactively delete, jump to, rebalance, resize, and split windows.
Optional non-negative numeric prefix ARG is used as the number of
units for commands issued while the mode is active.  If ARG is < 1, it
is set to 1.  If it is > `hycontrol-maximum-units', it is set to
`hycontrol-maximum-units'."
  (interactive "p")
  (hycontrol-disable-modes)
  (hycontrol-windows-mode (if (and (integerp arg) (>= arg 1)) arg 1)))