Function: vc-dir-display-file
vc-dir-display-file is an interactive and byte-compiled function
defined in vc-dir.el.gz.
Signature
(vc-dir-display-file &optional EVENT)
Documentation
Display 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-display-file (&optional event)
"Display the file on the current line, in another window."
(interactive (list last-nonmenu-event))
(if event (posn-set-point (event-end event)))
(display-buffer (find-file-noselect (vc-dir-current-file))
t))