Function: magit-toggle-verbose-refresh
magit-toggle-verbose-refresh is an interactive and byte-compiled
function defined in magit-mode.el.
Signature
(magit-toggle-verbose-refresh)
Documentation
Toggle whether Magit refreshes buffers verbosely.
Enabling this helps figuring out which sections are bottlenecks. The additional output can be found in the *Messages* buffer.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/magit-20260411.1452/magit-mode.el
;;; Utilities
(defun magit-toggle-verbose-refresh ()
"Toggle whether Magit refreshes buffers verbosely.
Enabling this helps figuring out which sections are bottlenecks.
The additional output can be found in the *Messages* buffer."
(interactive)
(setq magit-refresh-verbose (not magit-refresh-verbose))
(message "%s verbose refreshing"
(if magit-refresh-verbose "Enabled" "Disabled")))