Function: hycontrol-enable-frames-mode
hycontrol-enable-frames-mode is an autoloaded, interactive and
byte-compiled function defined in hycontrol.el.
Signature
(hycontrol-enable-frames-mode &optional ARG)
Documentation
Globally enable HyControl Frames mode for rapid Emacs frame control.
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
;;; ************************************************************************
;;; Public functions
;;; ************************************************************************
;;; HyControl Global Minor Modes
;;;###autoload
(defun hycontrol-enable-frames-mode (&optional arg)
"Globally enable HyControl Frames mode for rapid Emacs frame control.
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-disable-modes)
(hycontrol-frames-mode (if (and (integerp arg) (>= arg 1)) arg 1)))