Function: hycontrol-frame-adjust-heights-full-width

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

Signature

(hycontrol-frame-adjust-heights-full-width)

Documentation

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

Heights are given in screen percentages by the list hycontrol-frame-heights and typically go from tallest to shortest.

Key Bindings

Source Code

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