Function: hycontrol-frame-adjust-widths-full-height

hycontrol-frame-adjust-widths-full-height is an autoloaded, interactive and byte-compiled function defined in hycontrol.el.

Signature

(hycontrol-frame-adjust-widths-full-height)

Documentation

Cycle through frame width adjustments after fixing its height full-screen.

Widths are given in screen percentages by the list hycontrol-frame-widths and typically go from widest to narrowest.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
;;;###autoload
(defun hycontrol-frame-adjust-widths-full-height ()
  "Cycle through frame width adjustments after fixing its height full-screen.
Widths are given in screen percentages by the list
`hycontrol-frame-widths' and typically go from widest to narrowest."
  (interactive)
  (when (null hycontrol--frame-widths-pointer)
    (setq hycontrol--frame-widths-pointer hycontrol-frame-widths))
  (hycontrol-set-width-percentage-full-height
   (car hycontrol--frame-widths-pointer))
  (message "Screen Percentage: Width %.1f%%; Fixed Height %d%%"
	   (* (car hycontrol--frame-widths-pointer) 100.0) 100)
  (setq hycontrol--frame-widths-pointer
	(cdr hycontrol--frame-widths-pointer)))