¿Cómo obtener una lista de modos menores activos en el búfer actual?
Los doctores (info "(elisp)Minor Mode Conventions")
dicen:
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.
Me detengo con:
(dolist (m minor-mode-list)
(when (symbol-value m)
(push m modes)))
describe-mode
las fuentes tienen notas que:
;; Older packages do not register in minor-mode-list but only in
;; minor-mode-alist.
No sé si ese punto sigue siendo válido ...
@Drew Parece que tal vez lo quiere programáticamente?
—
niñera
@nanny: Sí, lo adiviné. En esos casos, un lugar para comenzar sería buscar el código
—
Dibujó el
describe-mode
, si eso es adecuado.
describe-mode
da una lista adecuada de los modos menores activos en el búfer actual?