Function: context-menu-region@magit-section-mode

context-menu-region@magit-section-mode is a byte-compiled function defined in magit-section.el.

Signature

(context-menu-region@magit-section-mode FN MENU CLICK)

Documentation

Disable in magit-section-mode buffers.

Source Code

;; Defined in ~/.emacs.d/elpa/magit-section-20260330.1102/magit-section.el
(define-advice context-menu-region (:around (fn menu click) magit-section-mode)
  "Disable in `magit-section-mode' buffers."
  (if (derived-mode-p 'magit-section-mode)
      menu
    (funcall fn menu click)))