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.

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."
  (interactive (list last-nonmenu-event))
  (if event (posn-set-point (event-end event)))
  (find-file-other-window (vc-dir-current-file)))