Function: magit-go-backward

magit-go-backward is an interactive and byte-compiled function defined in magit-mode.el.

Signature

(magit-go-backward)

Documentation

Move backward in current buffer's history.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-mode.el
;;; Buffer History

(defun magit-go-backward ()
  "Move backward in current buffer's history."
  (interactive)
  (if help-xref-stack
      (help-xref-go-back (current-buffer))
    (user-error "No previous entry in buffer's history")))