Function: emerge-scroll-reset

emerge-scroll-reset is an interactive and byte-compiled function defined in emerge.el.gz.

Signature

(emerge-scroll-reset)

Documentation

Reset horizontal scrolling in Emerge.

This resets the horizontal scrolling of all three merge buffers to the left margin, if they are in windows.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/vc/emerge.el.gz
(defun emerge-scroll-reset ()
  "Reset horizontal scrolling in Emerge.
This resets the horizontal scrolling of all three merge buffers
to the left margin, if they are in windows."
  (interactive)
  (emerge-operate-on-windows
   (lambda (_) (set-window-hscroll (selected-window) 0))
   nil))