Variable: mode-line-modes-delimiters
mode-line-modes-delimiters is a customizable variable defined in
bindings.el.gz.
Value
("(" . ")")
Documentation
Strings placed around the modes displayed in the mode line.
These elements are placed around mode-name and mode-line-modes.
This variable was added, or its default value changed, in Emacs 31.1.
Probably introduced at or before Emacs version 31.1.
Source Code
;; Defined in /usr/src/emacs/lisp/bindings.el.gz
(defcustom mode-line-modes-delimiters '("(" . ")")
"Strings placed around the modes displayed in the mode line.
These elements are placed around `mode-name' and `mode-line-modes'."
:type '(choice (const :tag "No delimiters")
(cons (string :tag "Left delimiter")
(string :tag "Right delimiter")))
:group 'mode-line
:version "31.1")