How do I find out what modes are currently running in the current Emacs buffer?
3 Answers
You can see the major mode and all the minor modes enabled for the selected buffer with:
C-hm
or
M-x describe-mode RET
The mode line also displays information about the major mode, and usually some minor modes.
I also recommend you run the tutorial with C-ht, which will teach you a great many useful things.
1 Comment
mcp