Function: window--try-horizontal-split
window--try-horizontal-split is a byte-compiled function defined in
window.el.gz.
Signature
(window--try-horizontal-split WINDOW)
Documentation
Helper function for split-window-sensibly
Source Code
;; Defined in /usr/src/emacs/lisp/window.el.gz
(defun window--try-horizontal-split (window)
"Helper function for `split-window-sensibly'"
(when (window-splittable-p window t)
(with-selected-window window
(split-window-right))))