Function: git-rebase-backward-line

git-rebase-backward-line is an interactive and byte-compiled function defined in git-rebase.el.

Signature

(git-rebase-backward-line &optional N)

Documentation

Move N lines backward (forward if N is negative).

Like forward-line but go into the opposite direction.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/git-rebase.el
(defun git-rebase-backward-line (&optional n)
  "Move N lines backward (forward if N is negative).
Like `forward-line' but go into the opposite direction."
  (interactive "p")
  (forward-line (- (or n 1))))