How do I find out what modes are currently running in the current Emacs buffer?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can see the major mode and all the minor modes enabled for the selected buffer with:
C-hm
or
M-x
describe-modeRETThe 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.