Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you list the active minor modes in emacs?

How do you list the active minor modes in emacs?

like image 710
readonly Avatar asked Oct 02 '09 20:10

readonly


People also ask

What is Emacs minor mode?

A minor mode is an optional editing mode that alters the behavior of Emacs in some well-defined way. Unlike major modes, any number of minor modes can be in effect at any time. Some minor modes are buffer-local, and can be turned on (enabled) in certain buffers and off (disabled) in others.

What are modes in Emacs?

A mode is a set of definitions that customize Emacs behavior in useful ways. There are two varieties of modes: minor modes, which provide features that users can turn on and off while editing; and major modes, which are used for editing or interacting with a particular kind of text.

What are the major modes in Emacs?

It includes Text mode, HTML mode, SGML mode, TeX mode and Outline mode. The second group contains modes for specific programming languages. These include Lisp mode (which has several variants), C mode, Fortran mode, and others.

What is the default mode in Emacs?

The standard default value is fundamental-mode . If the default value is nil , then whenever Emacs creates a new buffer via a command such as C-x b ( switch-to-buffer ), the new buffer is put in the major mode of the previously current buffer.


1 Answers

C-h m or M-x describe-mode shows all the active minor modes (and major mode) and a brief description of each.

like image 110
Phil Avatar answered Sep 30 '22 17:09

Phil