The code for existing major modes follows various coding conventions, including conventions for local keymap and syntax table initialization, global names, and hooks. Please follow these conventions when you define a new major mode:
describe-mode
) in your mode will display this string.
The documentation string may include the special documentation
substrings, `\[command]', `\{keymap}', and
`\<keymap>', that enable the documentation to adapt
automatically to the user's own key bindings. See section Substituting Key Bindings in Documentation.
kill-all-local-variables
. This is what gets rid of the
buffer-local variables of the major mode previously in effect.
major-mode
to the
major mode command symbol. This is how describe-mode
discovers
which documentation to print.
mode-name
to the
"pretty" name of the mode, as a string. This string appears in the
mode line.
use-local-map
to install this local map. See section Active Keymaps, for more information.
This keymap should be stored permanently in a global variable named
modename-mode-map
. Normally the library that defines the
mode sets this variable.
See section Tips for Defining Variables Robustly, for advice about how to write the code to set
up the mode's keymap variable.
modename-mode-syntax-table
. See section Syntax Tables.
modename-mode-abbrev-table
. See section Abbrev Tables.
font-lock-defaults
(see section Font Lock Mode).
imenu-generic-expression
or
imenu-create-index-function
(see section Imenu).
defvar
or defcustom
to set mode-related variables, so
that they are not reinitialized if they already have a value. (Such
reinitialization could discard customizations made by the user.)
make-local-variable
in the major mode command, not
make-variable-buffer-local
. The latter function would make the
variable local to every buffer in which it is subsequently set, which
would affect buffers that do not use this mode. It is undesirable for a
mode to have such global effects. See section Buffer-Local Variables.
It's OK to use make-variable-buffer-local
, if you wish, for a
variable used only within a single Lisp package.
modename-mode-hook
. The major mode command should run that
hook, with run-hooks
, as the very last thing it
does. See section Hooks.
indented-text-mode
runs text-mode-hook
as
well as indented-text-mode-hook
. It may run these other hooks
immediately before the mode's own hook (that is, after everything else),
or it may run them earlier.
change-major-mode-hook
(see section Creating and Deleting Buffer-Local Bindings).
mode-class
with value special
, put on as follows:
(put 'funny-mode 'mode-class 'special)This tells Emacs that new buffers created while the current buffer has Funny mode should not inherit Funny mode. Modes such as Dired, Rmail, and Buffer List use this feature.
auto-mode-alist
to select
the mode for those file names. If you define the mode command to
autoload, you should add this element in the same file that calls
autoload
. Otherwise, it is sufficient to add the element in the
file that contains the mode definition. See section How Emacs Chooses a Major Mode.
autoload
form
and an example of how to add to auto-mode-alist
, that users can
include in their `.emacs' files.
Go to the first, previous, next, last section, table of contents.