Come ottenere un elenco di modalità secondarie attive nel buffer corrente?
I documenti (info "(elisp)Minor Mode Conventions")
dicono:
Define a variable whose name ends in ‘-mode’. We call this the
"mode variable". The minor mode command should set this variable.
The value will be ‘nil’ if the mode is disabled, and non-‘nil’ if
the mode is enabled. The variable should be buffer-local if the
minor mode is buffer-local.
Mi fermo con:
(dolist (m minor-mode-list)
(when (symbol-value m)
(push m modes)))
describe-mode
le fonti hanno notato che:
;; Older packages do not register in minor-mode-list but only in
;; minor-mode-alist.
Non so se quel punto sia ancora valido ...
describe-mode
, se questo è altrimenti adeguato.
describe-mode
fornisce un elenco adeguato delle modalità secondarie attive nel buffer corrente?