Function: follow-redraw

follow-redraw is an interactive and byte-compiled function defined in follow.el.gz.

Signature

(follow-redraw)

Documentation

Arrange windows displaying the same buffer in successor order.

This function can be called even if the buffer is not in Follow mode.

Hopefully, there should be no reason to call this function when in Follow mode since the windows should always be aligned.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/follow.el.gz
(defun follow-redraw ()
  "Arrange windows displaying the same buffer in successor order.
This function can be called even if the buffer is not in Follow mode.

Hopefully, there should be no reason to call this function when in
Follow mode since the windows should always be aligned."
  (interactive)
  (sit-for 0)
  (follow-redisplay))