Variable: mode-line-misc-info
mode-line-misc-info is a variable defined in bindings.el.gz.
Value
((which-function-mode
(which-func-mode
(which-func--use-mode-line ("" which-func-format " "))))
(eglot--managed-mode
(" ["
(:eval
(cl-loop for e in eglot-mode-line-format for render =
(format-mode-line e) unless (eq render "") collect
(cons render (eq e 'eglot-mode-line-menu)) into rendered
finally
(return
(cl-loop for (rspec . rest) on rendered for (r . titlep)
= rspec concat r when rest concat
(if titlep ":" "/")))))
"] "))
(global-mode-string ("" global-mode-string)))
Documentation
Mode line construct for miscellaneous information.
By default, this shows the information specified by global-mode-string.
Source Code
;; Defined in /usr/src/emacs/lisp/bindings.el.gz
(defvar mode-line-misc-info
'((global-mode-string ("" global-mode-string)))
"Mode line construct for miscellaneous information.
By default, this shows the information specified by `global-mode-string'.")