Function: hypb:maximize-window-height

hypb:maximize-window-height is an interactive and byte-compiled function defined in hypb.el.

Signature

(hypb:maximize-window-height &optional WINDOW)

Documentation

Maximize WINDOW.

Make WINDOW as large as possible without deleting any windows. WINDOW must be a valid window and defaults to the selected one.

If the option window-resize-pixelwise is non-nil maximize WINDOW pixelwise.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hypb.el
;; Derived from "window.el".
(defun hypb:maximize-window-height (&optional window)
  "Maximize WINDOW.
Make WINDOW as large as possible without deleting any windows.
WINDOW must be a valid window and defaults to the selected one.

If the option `window-resize-pixelwise' is non-nil maximize
WINDOW pixelwise."
  (interactive)
  (setq window (window-normalize-window window))
  (window-resize
   window (window-max-delta window nil nil nil nil nil window-resize-pixelwise)
   nil nil window-resize-pixelwise))