Function: viper-switch-to-buffer-other-window
viper-switch-to-buffer-other-window is an interactive and
byte-compiled function defined in viper-cmd.el.gz.
Signature
(viper-switch-to-buffer-other-window)
Documentation
Switch to buffer in another window.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emulation/viper-cmd.el.gz
(defun viper-switch-to-buffer-other-window ()
"Switch to buffer in another window."
(interactive)
(let ((other-buffer (other-buffer (current-buffer)))
buffer)
(setq buffer
(funcall viper-read-buffer-function
"Switch to buffer in another window: " other-buffer))
(switch-to-buffer-other-window buffer)))