Function: magit--inhibit-in-blob-buffers

magit--inhibit-in-blob-buffers is a byte-compiled function defined in magit-files.el.

Signature

(magit--inhibit-in-blob-buffers FN &rest ARGS)

Documentation

Prevent the advised function from doing anything in Magit blob buffers.

Source Code

;; Defined in ~/.emacs.d/elpa/magit-20260822.1158/magit-files.el
(defun magit--inhibit-in-blob-buffers (fn &rest args)
  "Prevent the advised function from doing anything in Magit blob buffers."
  (unless magit-buffer-blob-oid
    (apply fn args)))