Function: magit-blame-quit
magit-blame-quit is an interactive and byte-compiled function defined
in magit-blame.el.
Signature
(magit-blame-quit)
Documentation
Turn off Magit-Blame mode.
If the buffer was created during a recursive blame, then also kill the buffer.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-blame.el
(transient-define-suffix magit-blame-quit ()
"Turn off Magit-Blame mode.
If the buffer was created during a recursive blame,
then also kill the buffer."
:if-non-nil 'magit-blame-mode
(interactive)
(magit-blame-mode -1)
(when magit-blame-recursive-p
(kill-buffer)))