Function: vip-other-window
vip-other-window is an interactive and byte-compiled function defined
in vip.el.gz.
Signature
(vip-other-window ARG)
Documentation
Switch to other window.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/vip.el.gz
;; window scrolling etc.
(defun vip-other-window (arg)
"Switch to other window."
(interactive "p")
(other-window arg)
(or (not (eq vip-current-mode 'emacs-mode))
(string= (buffer-name (current-buffer)) " *Minibuf-1*")
(vip-change-mode-to-vi)))