Function: vc-dir-find-file-other-window

vc-dir-find-file-other-window is an interactive and byte-compiled function defined in vc-dir.el.gz.

Signature

(vc-dir-find-file-other-window &optional EVENT)

Documentation

Find the file on the current line, in another window.

If this command needs to split the current window, it by default obeys the user options split-height-threshold and split-width-threshold, when it decides whether to split the window horizontally or vertically.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-dir.el.gz
(defun vc-dir-find-file-other-window (&optional event)
  "Find the file on the current line, in another window.
If this command needs to split the current window, it by default obeys
the user options `split-height-threshold' and `split-width-threshold',
when it decides whether to split the window horizontally or vertically."
  (interactive (list last-nonmenu-event))
  (if event (posn-set-point (event-end event)))
  (find-file-other-window (vc-dir-current-file)))