Function: follow-switch-to-current-buffer-all

follow-switch-to-current-buffer-all is an interactive and byte-compiled function defined in follow.el.gz.

Signature

(follow-switch-to-current-buffer-all)

Documentation

Show current buffer in all windows on this frame, and enter Follow mode.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/follow.el.gz
(defun follow-switch-to-current-buffer-all ()
  "Show current buffer in all windows on this frame, and enter Follow mode."
  (interactive)
  (unless follow-mode
    (follow-mode 1))
  (follow-switch-to-buffer-all))