Jak uzyskać listę aktywnych mniejszych trybów w bieżącym buforze?
Dokumenty (info "(elisp)Minor Mode Conventions")
mówią:
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.
Zatrzymuję się na:
(dolist (m minor-mode-list)
(when (symbol-value m)
(push m modes)))
describe-mode
źródła mają notatki, że:
;; Older packages do not register in minor-mode-list but only in
;; minor-mode-alist.
Nie wiem czy ten ważny punkt ...
describe-mode
- o ile nie jest to wystarczające.
describe-mode
ma odpowiedniej listy aktywnych mniejszych trybów w bieżącym buforze?