helm-describe-modes
provides a Helm interface to Emacs’s describe-mode
. It
lists the major mode, active minor modes, and inactive minor modes using Helm,
and provides actions for each mode.
Add the following to your init file (e.g. ~/.emacs.d/init.el
) to remap
describe-mode
to helm-describe-modes
:
(require 'helm-describe-modes)
(global-set-key [remap describe-mode] #'helm-describe-modes)
For information about the Helm framework, see the Helm project.
This package is heavily inspired by the helm-descbinds package by Taiki Sugawara.