Function: vip-find-file

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

Signature

(vip-find-file)

Documentation

Visit file in the current window.

Key Bindings

Source Code

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