Function: follow-previous-window
follow-previous-window is an interactive and byte-compiled function
defined in follow.el.gz.
Signature
(follow-previous-window)
Documentation
Select the previous window showing the same buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/follow.el.gz
(defun follow-previous-window ()
"Select the previous window showing the same buffer."
(interactive)
(let ((pred (car (follow-split-followers (follow-all-followers)))))
(if pred
(select-window (car pred))
(error "%s" "No more windows"))))