Function: hycontrol-windows

hycontrol-windows is an interactive and byte-compiled function defined in hycontrol.el.

Signature

(hycontrol-windows &optional ARG)

Documentation

Interactively delete, jump to, rebalance, resize, and split windows.

With optional numeric prefix ARG, move and resize by ARG (an integer) units. 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
(defun hycontrol-windows (&optional arg)
  "Interactively delete, jump to, rebalance, resize, and split windows.
With optional numeric prefix ARG, move and resize by ARG (an
integer) units.  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-setup arg #'hycontrol-windows-setup)
  (unless hycontrol-help-flag
    (message "(HyControl) Windows global minor mode enabled; use {%s} for help"
	     (hycontrol-help-key-description))))