Function: git-rebase-show-or-scroll-down
git-rebase-show-or-scroll-down is an interactive and byte-compiled
function defined in git-rebase.el.
Signature
(git-rebase-show-or-scroll-down)
Documentation
Update the commit buffer for commit on current line.
Either show the commit at point in the appropriate buffer, or if that buffer is already being displayed in the current frame and contains information about that commit, then instead scroll the buffer down.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/git-rebase.el
(defun git-rebase-show-or-scroll-down ()
"Update the commit buffer for commit on current line.
Either show the commit at point in the appropriate buffer, or if
that buffer is already being displayed in the current frame and
contains information about that commit, then instead scroll the
buffer down."
(interactive)
(git-rebase--show-commit 'down))