Function: magit-blame-read-only-mode
magit-blame-read-only-mode is an interactive and byte-compiled
function defined in magit-blame.el.
Signature
(magit-blame-read-only-mode &optional ARG)
Documentation
Provide keybindings for Magit-Blame mode.
This minor-mode provides the key bindings for Magit-Blame mode, but only when Read-Only mode is also enabled because these key bindings would otherwise conflict badly with regular bindings.
When both Magit-Blame mode and Read-Only mode are enabled, then this mode gets automatically enabled too and when one of these modes is toggled, then this mode also gets toggled automatically.
B magit-blame
DEL magit-diff-show-or-scroll-down
M-w magit-blame-copy-hash
N magit-blame-next-chunk-same-commit
P magit-blame-previous-chunk-same-commit
RET magit-show-commit
S-SPC magit-diff-show-or-scroll-down
SPC magit-diff-show-or-scroll-up
b magit-blame-addition
c magit-blame-cycle-style
f magit-blame-reverse
n magit-blame-next-chunk
p magit-blame-previous-chunk(var)/magit-blame-previous-chunk(fun)
q magit-blame-quit
r magit-blame-removal
This is a minor mode. If called interactively, toggle the
Magit-Blame-Read-Only mode mode. If the prefix argument is positive,
enable the mode, and if it is zero or negative, disable the mode.
If called from Lisp, toggle the mode if ARG is toggle. Enable the
mode if ARG is nil, omitted, or is a positive number. Disable the mode
if ARG is a negative number.
To check whether the minor mode is enabled in the current buffer,
evaluate the variable magit-blame-read-only-mode(var)/magit-blame-read-only-mode(fun).
The mode's hook is called both when the mode is enabled and when it is disabled.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-blame.el
;;;; Read-Only Mode
(define-minor-mode magit-blame-read-only-mode
"Provide keybindings for Magit-Blame mode.
This minor-mode provides the key bindings for Magit-Blame mode,
but only when Read-Only mode is also enabled because these key
bindings would otherwise conflict badly with regular bindings.
When both Magit-Blame mode and Read-Only mode are enabled, then
this mode gets automatically enabled too and when one of these
modes is toggled, then this mode also gets toggled automatically.
\\{magit-blame-read-only-mode-map}")