Function: hycontrol-frame-adjust-heights
hycontrol-frame-adjust-heights is an autoloaded, interactive and
byte-compiled function defined in hycontrol.el.
Signature
(hycontrol-frame-adjust-heights)
Documentation
Cycle through different common height adjustments of a frame.
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 ()
"Cycle through different common height adjustments of a frame.
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-frame-height-percentage-of-screen
(car hycontrol--frame-heights-pointer))
(message "Screen Percentage: Fixed Width %.1f%%; Height %.1f%%"
(* 100.0 (/ (float (hycontrol-frame-width))
(- (display-pixel-width)
hycontrol-screen-left-offset hycontrol-screen-right-offset)))
(* 100.0 (car hycontrol--frame-heights-pointer)))
(setq hycontrol--frame-heights-pointer
(cdr hycontrol--frame-heights-pointer)))