Function: hycontrol-frames
hycontrol-frames is an interactive and byte-compiled function defined
in hycontrol.el.
Signature
(hycontrol-frames &optional ARG)
Documentation
Interactively delete, jump to, move, replicate, and resize frames.
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-frames (&optional arg)
"Interactively delete, jump to, move, replicate, and resize frames.
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-frames-setup)
(unless hycontrol-help-flag
(message "(HyControl) Frames global minor mode enabled; use {%s} for help"
(hycontrol-help-key-description))))