Function: mouse-split-window-vertically
mouse-split-window-vertically is an interactive and byte-compiled
function defined in mouse.el.gz.
Signature
(mouse-split-window-vertically CLICK)
Documentation
Select Emacs window mouse is on, then split it vertically in half.
The window is split at the line clicked on. This command must be bound to a mouse click.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mouse.el.gz
(defun mouse-split-window-vertically (click)
"Select Emacs window mouse is on, then split it vertically in half.
The window is split at the line clicked on.
This command must be bound to a mouse click."
(interactive "@e")
(mouse-minibuffer-check click)
(let ((start (event-start click)))
(select-window (posn-window start))
(let ((new-height (1+ (cdr (posn-col-row (event-end click)))))
(first-line window-min-height)
(last-line (- (window-height) window-min-height)))
(if (< last-line first-line)
(user-error "Window too short to split")
;; Bind `window-combination-resize' to nil so we are sure to get
;; the split right at the line clicked on.
(let (window-combination-resize)
(split-window-vertically
(min (max new-height first-line) last-line)))))))