Variable: magit-auto-revert-mode-hook
magit-auto-revert-mode-hook is a customizable variable defined in
magit-autorevert.el.
Value
nil
Documentation
Hook run after entering or leaving magit-auto-revert-mode(var)/magit-auto-revert-mode(fun).
No problems result if this variable is not bound.
add-hook automatically binds it. (This is true for all hook variables.)
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-autorevert.el
;;;###autoload
(define-globalized-minor-mode magit-auto-revert-mode auto-revert-mode
magit-turn-on-auto-revert-mode-if-desired
:package-version '(magit . "2.4.0")
:link '(info-link "(magit)Automatic Reverting of File-Visiting Buffers")
:group 'magit-auto-revert
:group 'magit-essentials
:init-value (not (or global-auto-revert-mode noninteractive))
:initialize #'magit-auto-revert-mode--initialize)