Function: vip-find-file-other-window

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

Signature

(vip-find-file-other-window)

Documentation

Visit file in another window.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/vip.el.gz
(defun vip-find-file-other-window ()
  "Visit file in another window."
  (interactive)
  (let (file)
    (setq file (read-file-name "Visit file: "))
    (switch-to-buffer-other-window (find-file-noselect file))
    (vip-change-mode-to-vi)))