ELisp: Major Mode Names

By Xah Lee. Date: . Last updated: .

There are several names associated with a major mode:

Here's a quick guide on how to name your own major mode.

First, think of a prefix name. Let's say “xx”.

  1. For ALL Symbols in your source code, they should start with “xx-”
  2. The file name should be “xx-mode.el”
  3. The command name to invoke the mode should be “xx-mode”
  4. The package's feature name should be “xx”. That is, (provide 'xx).

Value of Variable “major-mode”

major-mode is a built-in Buffer Local Variable .

Value of Feature Name

This is also a important technical name. Feature symbol is most similar to other language's package/module name for import/load.

See: ELisp: provide, require, features

Choosing Your Mode's Name

When choosing a name, try to come up with a name so that user can tell what it is for, but also unique from other modes for the same language. For example, if your mode is for HTML, you don't want just name it html-mode, because many other people probably have created a mode of the same name, causing confusion and name conflict.

Here are some example names from existing modes for consideration:

If you are out of ideas, you can simply name it with your name plus the language's name, such as “dv-html-mode”.

Prefix Mode Name to All Names

Emacs lisp does not have namespace. Basically, all variables and functions are all in a global namespace, stored in the variable obarray.

The symbols in your package should have unique names to avoid multiple packages having the same name that can override each other. The conventional practice is that all your symbol's names in your mode should be prefixed by your mode name, or a abbreviation of your mode name.

This is also important reason that you should choose a unique name for your mode.

For example, if you look at the source code of cperl-mode, all their names starts with “cperl-”. For python-mode, all names starts with “python-”.

Value of Variable “mode-name”

mode-name is a built-in Buffer Local Variable . When in a major mode, the value of the variable mode-name is displayed in the status bar (the “mode line”). This name is intended to be human friendly indication of what language they are working with.

For example:

If you use define-derived-mode, the 3rd arg will automatically be set as the mode-name. Else, you can set it yourself. (setq mode-name "HTML")

The Elisp File Name

Emacs and Elisp does not enforce a relation of your mode's name and the file name. For example, you can have your mode named “xx-mode”, while the file name can be “math_mode_by_David.el” or “math_mode_v1.4.el”.

Normally, you just name your file the same as the value of the variable major-mode defined in your package. So, for example, if you have “xx-mode”, then the file can be “xx-mode.el”. This is how majority of major mode package's files are named.

Elisp file's name can be a little flexible. A version number in the file name is common. If your package has more than one file, you can name them anything appropriate to the file's purpose.

emacs library/package system