Replace `read-input' by `read-string'.
[emacs.git] / lispref / modes.texi
blobec5fe23c171dc6cbeeaba60623e44f530442b875
1 @c -*-texinfo-*-
2 @c This is part of the GNU Emacs Lisp Reference Manual.
3 @c Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1998, 1999,
4 @c   2003, 2004, 2005 Free Software Foundation, Inc.
5 @c See the file elisp.texi for copying conditions.
6 @setfilename ../info/modes
7 @node Modes, Documentation, Keymaps, Top
8 @chapter Major and Minor Modes
9 @cindex mode
11   A @dfn{mode} is a set of definitions that customize Emacs and can be
12 turned on and off while you edit.  There are two varieties of modes:
13 @dfn{major modes}, which are mutually exclusive and used for editing
14 particular kinds of text, and @dfn{minor modes}, which provide features
15 that users can enable individually.
17   This chapter describes how to write both major and minor modes, how to
18 indicate them in the mode line, and how they run hooks supplied by the
19 user.  For related topics such as keymaps and syntax tables, see
20 @ref{Keymaps}, and @ref{Syntax Tables}.
22 @menu
23 * Hooks::              How to use hooks; how to write code that provides hooks.
24 * Major Modes::        Defining major modes.
25 * Minor Modes::        Defining minor modes.
26 * Mode Line Format::   Customizing the text that appears in the mode line.
27 * Imenu::              How a mode can provide a menu
28                          of definitions in the buffer.
29 * Font Lock Mode::     How modes can highlight text according to syntax.
30 * Desktop Save Mode::  How modes can have buffer state saved between
31                          Emacs sessions.
32 @end menu
34 @node Hooks
35 @section Hooks
36 @cindex hooks
38   A @dfn{hook} is a variable where you can store a function or functions
39 to be called on a particular occasion by an existing program.  Emacs
40 provides hooks for the sake of customization.  Most often, hooks are set
41 up in the init file (@pxref{Init File}), but Lisp programs can set them also.
42 @xref{Standard Hooks}, for a list of standard hook variables.
44 @cindex normal hook
45   Most of the hooks in Emacs are @dfn{normal hooks}.  These variables
46 contain lists of functions to be called with no arguments.  When the
47 hook name ends in @samp{-hook}, that tells you it is normal.  We try to
48 make all hooks normal, as much as possible, so that you can use them in
49 a uniform way.
51   Every major mode function is supposed to run a normal hook called the
52 @dfn{mode hook} as the last step of initialization.  This makes it easy
53 for a user to customize the behavior of the mode, by overriding the
54 buffer-local variable assignments already made by the mode.  Most
55 minor modes also run a mode hook at their end.  But hooks are used in
56 other contexts too.  For example, the hook @code{suspend-hook} runs
57 just before Emacs suspends itself (@pxref{Suspending Emacs}).
59   The recommended way to add a hook function to a normal hook is by
60 calling @code{add-hook} (see below).  The hook functions may be any of
61 the valid kinds of functions that @code{funcall} accepts (@pxref{What
62 Is a Function}).  Most normal hook variables are initially void;
63 @code{add-hook} knows how to deal with this.  You can add hooks either
64 globally or buffer-locally with @code{add-hook}.
66 @cindex abnormal hook
67   If the hook variable's name does not end with @samp{-hook}, that
68 indicates it is probably an @dfn{abnormal hook}.  Then you should look at its
69 documentation to see how to use the hook properly.
71   If the variable's name ends in @samp{-functions} or @samp{-hooks},
72 then the value is a list of functions, but it is abnormal in that either
73 these functions are called with arguments or their values are used in
74 some way.  You can use @code{add-hook} to add a function to the list,
75 but you must take care in writing the function.  (A few of these
76 variables, notably those ending in @samp{-hooks}, are actually
77 normal hooks which were named before we established the convention of
78 using @samp{-hook} for them.)
80   If the variable's name ends in @samp{-function}, then its value
81 is just a single function, not a list of functions.
83   Here's an example that uses a mode hook to turn on Auto Fill mode when
84 in Lisp Interaction mode:
86 @example
87 (add-hook 'lisp-interaction-mode-hook 'turn-on-auto-fill)
88 @end example
90   At the appropriate time, Emacs uses the @code{run-hooks} function to
91 run particular hooks.  This function calls the hook functions that have
92 been added with @code{add-hook}.
94 @defun run-hooks &rest hookvars
95 This function takes one or more normal hook variable names as
96 arguments, and runs each hook in turn.  Each argument should be a
97 symbol that is a normal hook variable.  These arguments are processed
98 in the order specified.
100 If a hook variable has a non-@code{nil} value, that value may be a
101 function or a list of functions.  (The former option is considered
102 obsolete.)  If the value is a function (either a lambda expression or
103 a symbol with a function definition), it is called.  If it is a list
104 that isn't a function, its elements are called, consecutively.  All
105 the hook functions are called with no arguments.
106 @end defun
108 @defun run-hook-with-args hook &rest args
109 This function is the way to run an abnormal hook and always call all
110 of the hook functions.  It calls each of the hook functions one by
111 one, passing each of them the arguments @var{args}.
112 @end defun
114 @defun run-hook-with-args-until-failure hook &rest args
115 This function is the way to run an abnormal hook until one of the hook
116 functions fails.  It calls each of the hook functions, passing each of
117 them the arguments @var{args}, until some hook function returns
118 @code{nil}.  It then stops and returns @code{nil}.  If none of the
119 hook functions return @code{nil}, it returns a non-@code{nil} value.
120 @end defun
122 @defun run-hook-with-args-until-success hook &rest args
123 This function is the way to run an abnormal hook until a hook function
124 succeeds.  It calls each of the hook functions, passing each of them
125 the arguments @var{args}, until some hook function returns
126 non-@code{nil}.  Then it stops, and returns whatever was returned by
127 the last hook function that was called.  If all hook functions return
128 @code{nil}, it returns @code{nil} as well.
129 @end defun
131 @defun add-hook hook function &optional append local
132 This function is the handy way to add function @var{function} to hook
133 variable @var{hook}.  You can use it for abnormal hooks as well as for
134 normal hooks.  @var{function} can be any Lisp function that can accept
135 the proper number of arguments for @var{hook}.  For example,
137 @example
138 (add-hook 'text-mode-hook 'my-text-hook-function)
139 @end example
141 @noindent
142 adds @code{my-text-hook-function} to the hook called @code{text-mode-hook}.
144 If @var{function} is already present in @var{hook} (comparing using
145 @code{equal}), then @code{add-hook} does not add it a second time.
147 It is best to design your hook functions so that the order in which they
148 are executed does not matter.  Any dependence on the order is ``asking
149 for trouble''.  However, the order is predictable: normally,
150 @var{function} goes at the front of the hook list, so it will be
151 executed first (barring another @code{add-hook} call).  If the optional
152 argument @var{append} is non-@code{nil}, the new hook function goes at
153 the end of the hook list and will be executed last.
155 @code{add-hook} can handle the cases where @var{hook} is void or its
156 value is a single function; it sets or changes the value to a list of
157 functions.
159 If @var{local} is non-@code{nil}, that says to add @var{function} to
160 the buffer-local hook list instead of to the global hook list.  If
161 needed, this makes the hook buffer-local and adds @code{t} to the
162 buffer-local value.  The latter acts as a flag to run the hook
163 functions in the default value as well as in the local value.
164 @end defun
166 @defun remove-hook hook function &optional local
167 This function removes @var{function} from the hook variable
168 @var{hook}.  It compares @var{function} with elements of @var{hook}
169 using @code{equal}, so it works for both symbols and lambda
170 expressions.
172 If @var{local} is non-@code{nil}, that says to remove @var{function}
173 from the buffer-local hook list instead of from the global hook list.
174 @end defun
176 @node Major Modes
177 @section Major Modes
178 @cindex major mode
180   Major modes specialize Emacs for editing particular kinds of text.
181 Each buffer has only one major mode at a time.  For each major mode
182 there is a function to switch to that mode in the current buffer; its
183 name should end in @samp{-mode}.  These functions work by setting
184 buffer-local variable bindings and other data associated with the
185 buffer, such as a local keymap.  The effect lasts until you switch
186 to another major mode in the same buffer.
188 @menu
189 * Major Mode Basics::
190 * Major Mode Conventions::  Coding conventions for keymaps, etc.
191 * Example Major Modes::     Text mode and Lisp modes.
192 * Auto Major Mode::         How Emacs chooses the major mode automatically.
193 * Mode Help::               Finding out how to use a mode.
194 * Derived Modes::           Defining a new major mode based on another major
195                               mode.
196 * Generic Modes::           Defining a simple major mode that supports
197                               comment syntax and Font Lock mode.
198 * Mode Hooks::              Hooks run at the end of major mode functions.
199 @end menu
201 @node Major Mode Basics
202 @subsection Major Mode Basics
203 @cindex Fundamental mode
205   The least specialized major mode is called @dfn{Fundamental mode}.
206 This mode has no mode-specific definitions or variable settings, so each
207 Emacs command behaves in its default manner, and each option is in its
208 default state.  All other major modes redefine various keys and options.
209 For example, Lisp Interaction mode provides special key bindings for
210 @kbd{C-j} (@code{eval-print-last-sexp}), @key{TAB}
211 (@code{lisp-indent-line}), and other keys.
213   When you need to write several editing commands to help you perform a
214 specialized editing task, creating a new major mode is usually a good
215 idea.  In practice, writing a major mode is easy (in contrast to
216 writing a minor mode, which is often difficult).
218   If the new mode is similar to an old one, it is often unwise to modify
219 the old one to serve two purposes, since it may become harder to use and
220 maintain.  Instead, copy and rename an existing major mode definition
221 and alter the copy---or define a @dfn{derived mode} (@pxref{Derived
222 Modes}).  For example, Rmail Edit mode, which is in
223 @file{emacs/lisp/mail/rmailedit.el}, is a major mode that is very similar to
224 Text mode except that it provides two additional commands.  Its
225 definition is distinct from that of Text mode, but uses that of Text mode.
227   Even if the new mode is not an obvious derivative of any other mode,
228 it is convenient to use @code{define-derived-mode} with a @code{nil}
229 parent argument, since it automatically enforces the most important
230 coding conventions for you.
232   For a very simple programming language major mode that handles
233 comments and fontification, you can use @code{define-generic-mode}.
234 @xref{Generic Modes}.
236   Rmail Edit mode offers an example of changing the major mode
237 temporarily for a buffer, so it can be edited in a different way (with
238 ordinary Emacs commands rather than Rmail commands).  In such cases, the
239 temporary major mode usually provides a command to switch back to the
240 buffer's usual mode (Rmail mode, in this case).  You might be tempted to
241 present the temporary redefinitions inside a recursive edit and restore
242 the usual ones when the user exits; but this is a bad idea because it
243 constrains the user's options when it is done in more than one buffer:
244 recursive edits must be exited most-recently-entered first.  Using an
245 alternative major mode avoids this limitation.  @xref{Recursive
246 Editing}.
248   The standard GNU Emacs Lisp library directory tree contains the code
249 for several major modes, in files such as @file{text-mode.el},
250 @file{texinfo.el}, @file{lisp-mode.el}, @file{c-mode.el}, and
251 @file{rmail.el}.  They are found in various subdirectories of the
252 @file{lisp} directory.  You can study these libraries to see how modes
253 are written.  Text mode is perhaps the simplest major mode aside from
254 Fundamental mode.  Rmail mode is a complicated and specialized mode.
256 @node Major Mode Conventions
257 @subsection Major Mode Conventions
259   The code for existing major modes follows various coding conventions,
260 including conventions for local keymap and syntax table initialization,
261 global names, and hooks.  Please follow these conventions when you
262 define a new major mode.
264   This list of conventions is only partial, because each major mode
265 should aim for consistency in general with other Emacs major modes.
266 This makes Emacs as a whole more coherent.  It is impossible to list
267 here all the possible points where this issue might come up; if the
268 Emacs developers point out an area where your major mode deviates from
269 the usual conventions, please make it compatible.
271 @itemize @bullet
272 @item
273 Define a command whose name ends in @samp{-mode}, with no arguments,
274 that switches to the new mode in the current buffer.  This command
275 should set up the keymap, syntax table, and buffer-local variables in an
276 existing buffer, without changing the buffer's contents.
278 @item
279 Write a documentation string for this command that describes the
280 special commands available in this mode.  @kbd{C-h m}
281 (@code{describe-mode}) in your mode will display this string.
283 The documentation string may include the special documentation
284 substrings, @samp{\[@var{command}]}, @samp{\@{@var{keymap}@}}, and
285 @samp{\<@var{keymap}>}, which enable the documentation to adapt
286 automatically to the user's own key bindings.  @xref{Keys in
287 Documentation}.
289 @item
290 The major mode command should start by calling
291 @code{kill-all-local-variables}.  This is what gets rid of the
292 buffer-local variables of the major mode previously in effect.
294 @item
295 The major mode command should set the variable @code{major-mode} to the
296 major mode command symbol.  This is how @code{describe-mode} discovers
297 which documentation to print.
299 @item
300 The major mode command should set the variable @code{mode-name} to the
301 ``pretty'' name of the mode, as a string.  This string appears in the
302 mode line.
304 @item
305 @cindex functions in modes
306 Since all global names are in the same name space, all the global
307 variables, constants, and functions that are part of the mode should
308 have names that start with the major mode name (or with an abbreviation
309 of it if the name is long).  @xref{Coding Conventions}.
311 @item
312 In a major mode for editing some kind of structured text, such as a
313 programming language, indentation of text according to structure is
314 probably useful.  So the mode should set @code{indent-line-function}
315 to a suitable function, and probably customize other variables
316 for indentation.
318 @item
319 @cindex keymaps in modes
320 The major mode should usually have its own keymap, which is used as the
321 local keymap in all buffers in that mode.  The major mode command should
322 call @code{use-local-map} to install this local map.  @xref{Active
323 Keymaps}, for more information.
325 This keymap should be stored permanently in a global variable named
326 @code{@var{modename}-mode-map}.  Normally the library that defines the
327 mode sets this variable.
329 @xref{Tips for Defining}, for advice about how to write the code to set
330 up the mode's keymap variable.
332 @item
333 The key sequences bound in a major mode keymap should usually start with
334 @kbd{C-c}, followed by a control character, a digit, or @kbd{@{},
335 @kbd{@}}, @kbd{<}, @kbd{>}, @kbd{:} or @kbd{;}.  The other punctuation
336 characters are reserved for minor modes, and ordinary letters are
337 reserved for users.
339 A major mode can also rebind the keys @kbd{M-n}, @kbd{M-p} and
340 @kbd{M-s}.  The bindings for @kbd{M-n} and @kbd{M-p} should normally
341 be some kind of ``moving forward and backward,'' but this does not
342 necessarily mean cursor motion.
344 It is legitimate for a major mode to rebind a standard key sequence if
345 it provides a command that does ``the same job'' in a way better
346 suited to the text this mode is used for.  For example, a major mode
347 for editing a programming language might redefine @kbd{C-M-a} to
348 ``move to the beginning of a function'' in a way that works better for
349 that language.
351 It is also legitimate for a major mode to rebind a standard key
352 sequence whose standard meaning is rarely useful in that mode.  For
353 instance, minibuffer modes rebind @kbd{M-r}, whose standard meaning is
354 rarely of any use in the minibuffer.  Major modes such as Dired or
355 Rmail that do not allow self-insertion of text can reasonably redefine
356 letters and other printing characters as special commands.
358 @item
359 Major modes must not define @key{RET} to do anything other than insert
360 a newline.  The command to insert a newline and then indent is
361 @kbd{C-j}.  Please keep this distinction uniform for all major modes.
363 @item
364 Major modes should not alter options that are primarily a matter of user
365 preference, such as whether Auto-Fill mode is enabled.  Leave this to
366 each user to decide.  However, a major mode should customize other
367 variables so that Auto-Fill mode will work usefully @emph{if} the user
368 decides to use it.
370 @item
371 @cindex syntax tables in modes
372 The mode may have its own syntax table or may share one with other
373 related modes.  If it has its own syntax table, it should store this in
374 a variable named @code{@var{modename}-mode-syntax-table}.  @xref{Syntax
375 Tables}.
377 @item
378 If the mode handles a language that has a syntax for comments, it should
379 set the variables that define the comment syntax.  @xref{Options for
380 Comments,, Options Controlling Comments, emacs, The GNU Emacs Manual}.
382 @item
383 @cindex abbrev tables in modes
384 The mode may have its own abbrev table or may share one with other
385 related modes.  If it has its own abbrev table, it should store this
386 in a variable named @code{@var{modename}-mode-abbrev-table}.  If the
387 major mode command defines any abbrevs itself, it should pass @code{t}
388 for the @var{system-flag} argument to @code{define-abbrev}.
389 @xref{Defining Abbrevs}.
391 @item
392 The mode should specify how to do highlighting for Font Lock mode, by
393 setting up a buffer-local value for the variable
394 @code{font-lock-defaults} (@pxref{Font Lock Mode}).
396 @item
397 The mode should specify how Imenu should find the definitions or
398 sections of a buffer, by setting up a buffer-local value for the
399 variable @code{imenu-generic-expression}, for the pair of variables
400 @code{imenu-prev-index-position-function} and
401 @code{imenu-extract-index-name-function}, or for the variable
402 @code{imenu-create-index-function} (@pxref{Imenu}).
404 @item
405 The mode can specify a local value for
406 @code{eldoc-documentation-function} to tell ElDoc mode how to handle
407 this mode.
409 @item
410 Use @code{defvar} or @code{defcustom} to set mode-related variables, so
411 that they are not reinitialized if they already have a value.  (Such
412 reinitialization could discard customizations made by the user.)
414 @item
415 @cindex buffer-local variables in modes
416 To make a buffer-local binding for an Emacs customization variable, use
417 @code{make-local-variable} in the major mode command, not
418 @code{make-variable-buffer-local}.  The latter function would make the
419 variable local to every buffer in which it is subsequently set, which
420 would affect buffers that do not use this mode.  It is undesirable for a
421 mode to have such global effects.  @xref{Buffer-Local Variables}.
423 With rare exceptions, the only reasonable way to use
424 @code{make-variable-buffer-local} in a Lisp package is for a variable
425 which is used only within that package.  Using it on a variable used by
426 other packages would interfere with them.
428 @item
429 @cindex mode hook
430 @cindex major mode hook
431 Each major mode should have a @dfn{mode hook} named
432 @code{@var{modename}-mode-hook}.  The major mode command should run that
433 hook, with @code{run-mode-hooks}, as the very last thing it
434 does.  @xref{Mode Hooks}.
436 @item
437 The major mode command may start by calling some other major mode
438 command (called the @dfn{parent mode}) and then alter some of its
439 settings.  A mode that does this is called a @dfn{derived mode}.  The
440 recommended way to define one is to use @code{define-derived-mode},
441 but this is not required.  Such a mode should use
442 @code{delay-mode-hooks} around its entire body (including the call to
443 the parent mode command) @emph{except} for the final call to
444 @code{run-mode-hooks}, which runs the derived mode's hook.  (Using
445 @code{define-derived-mode} does this automatically.)  @xref{Derived
446 Modes}, and @ref{Mode Hooks}.
448 @item
449 If something special should be done if the user switches a buffer from
450 this mode to any other major mode, this mode can set up a buffer-local
451 value for @code{change-major-mode-hook} (@pxref{Creating Buffer-Local}).
453 @item
454 If this mode is appropriate only for specially-prepared text, then the
455 major mode command symbol should have a property named @code{mode-class}
456 with value @code{special}, put on as follows:
458 @kindex mode-class @r{(property)}
459 @cindex @code{special}
460 @example
461 (put 'funny-mode 'mode-class 'special)
462 @end example
464 @noindent
465 This tells Emacs that new buffers created while the current buffer is
466 in Funny mode should not inherit Funny mode, in case
467 @code{default-major-mode} is @code{nil}.  Modes such as Dired, Rmail,
468 and Buffer List use this feature.
470 @item
471 If you want to make the new mode the default for files with certain
472 recognizable names, add an element to @code{auto-mode-alist} to select
473 the mode for those file names.  If you define the mode command to
474 autoload, you should add this element in the same file that calls
475 @code{autoload}.  If you use an autoload cookie for the mode command,
476 you can also use an autoload cookie for the form that adds the element
477 (@pxref{autoload cookie}).  If you do not autoload the mode command,
478 it is sufficient to add the element in the file that contains the mode
479 definition.  @xref{Auto Major Mode}.
481 @item
482 In the comments that document the file, you should provide a sample
483 @code{autoload} form and an example of how to add to
484 @code{auto-mode-alist}, that users can include in their init files
485 (@pxref{Init File}).
487 @item
488 @cindex mode loading
489 The top-level forms in the file defining the mode should be written so
490 that they may be evaluated more than once without adverse consequences.
491 Even if you never load the file more than once, someone else will.
492 @end itemize
494 @node Example Major Modes
495 @subsection Major Mode Examples
497   Text mode is perhaps the simplest mode besides Fundamental mode.
498 Here are excerpts from  @file{text-mode.el} that illustrate many of
499 the conventions listed above:
501 @smallexample
502 @group
503 ;; @r{Create the syntax table for this mode.}
504 (defvar text-mode-syntax-table
505   (let ((st (make-syntax-table)))
506     (modify-syntax-entry ?\" ".   " st)
507     (modify-syntax-entry ?\\ ".   " st)
508     ;; We add `p' so that M-c on 'hello' leads to 'Hello' rather than 'hello'.
509     (modify-syntax-entry ?' "w p" st)
510     st)
511   "Syntax table used while in `text-mode'.")
512 @end group
514 ;; @r{Create the keymap for this mode.}
515 @group
516 (defvar text-mode-map
517   (let ((map (make-sparse-keymap)))
518     (define-key map "\e\t" 'ispell-complete-word)
519     (define-key map "\es" 'center-line)
520     (define-key map "\eS" 'center-paragraph)
521     map)
522   "Keymap for `text-mode'.
523 Many other modes, such as `mail-mode', `outline-mode' and `indented-text-mode',
524 inherit all the commands defined in this map.")
525 @end group
526 @end smallexample
528   Here is how the actual mode command is defined now:
530 @smallexample
531 @group
532 (define-derived-mode text-mode nil "Text"
533   "Major mode for editing text written for humans to read.
534 In this mode, paragraphs are delimited only by blank or white lines.
535 You can thus get the full benefit of adaptive filling
536  (see the variable `adaptive-fill-mode').
537 \\@{text-mode-map@}
538 Turning on Text mode runs the normal hook `text-mode-hook'."
539 @end group
540 @group
541   (make-local-variable 'text-mode-variant)
542   (setq text-mode-variant t)
543   ;; @r{These two lines are a feature added recently.}
544   (set (make-local-variable 'require-final-newline)
545        mode-require-final-newline)
546   (set (make-local-variable 'indent-line-function) 'indent-relative))
547 @end group
548 @end smallexample
550   But here is how it was defined formerly, before
551 @code{define-derived-mode} existed:
553 @smallexample
554 @group
555 ;; @r{This isn't needed nowadays, since @code{define-derived-mode} does it.}
556 (defvar text-mode-abbrev-table nil
557   "Abbrev table used while in text mode.")
558 (define-abbrev-table 'text-mode-abbrev-table ())
559 @end group
561 @group
562 (defun text-mode ()
563   "Major mode for editing text intended for humans to read...
564  Special commands: \\@{text-mode-map@}
565 @end group
566 @group
567 Turning on text-mode runs the hook `text-mode-hook'."
568   (interactive)
569   (kill-all-local-variables)
570   (use-local-map text-mode-map)
571 @end group
572 @group
573   (setq local-abbrev-table text-mode-abbrev-table)
574   (set-syntax-table text-mode-syntax-table)
575 @end group
576 @group
577   ;; @r{These four lines are absent from the current version}
578   ;; @r{not because this is done some other way, but rather}
579   ;; @r{because nowadays Text mode uses the normal definition of paragraphs.}
580   (make-local-variable 'paragraph-start)
581   (setq paragraph-start (concat "[ \t]*$\\|" page-delimiter))
582   (make-local-variable 'paragraph-separate)
583   (setq paragraph-separate paragraph-start)
584   (make-local-variable 'indent-line-function)
585   (setq indent-line-function 'indent-relative-maybe)
586 @end group
587 @group
588   (setq mode-name "Text")
589   (setq major-mode 'text-mode)
590   (run-mode-hooks 'text-mode-hook)) ; @r{Finally, this permits the user to}
591                                     ;   @r{customize the mode with a hook.}
592 @end group
593 @end smallexample
595 @cindex @file{lisp-mode.el}
596   The three Lisp modes (Lisp mode, Emacs Lisp mode, and Lisp
597 Interaction mode) have more features than Text mode and the code is
598 correspondingly more complicated.  Here are excerpts from
599 @file{lisp-mode.el} that illustrate how these modes are written.
601 @cindex syntax table example
602 @smallexample
603 @group
604 ;; @r{Create mode-specific table variables.}
605 (defvar lisp-mode-syntax-table nil "")
606 (defvar lisp-mode-abbrev-table nil "")
607 @end group
609 @group
610 (defvar emacs-lisp-mode-syntax-table
611   (let ((table (make-syntax-table)))
612     (let ((i 0))
613 @end group
615 @group
616       ;; @r{Set syntax of chars up to @samp{0} to say they are}
617       ;;   @r{part of symbol names but not words.}
618       ;;   @r{(The digit @samp{0} is @code{48} in the @acronym{ASCII} character set.)}
619       (while (< i ?0)
620         (modify-syntax-entry i "_   " table)
621         (setq i (1+ i)))
622       ;; @r{@dots{} similar code follows for other character ranges.}
623 @end group
624 @group
625       ;; @r{Then set the syntax codes for characters that are special in Lisp.}
626       (modify-syntax-entry ?  "    " table)
627       (modify-syntax-entry ?\t "    " table)
628       (modify-syntax-entry ?\f "    " table)
629       (modify-syntax-entry ?\n ">   " table)
630 @end group
631 @group
632       ;; @r{Give CR the same syntax as newline, for selective-display.}
633       (modify-syntax-entry ?\^m ">   " table)
634       (modify-syntax-entry ?\; "<   " table)
635       (modify-syntax-entry ?` "'   " table)
636       (modify-syntax-entry ?' "'   " table)
637       (modify-syntax-entry ?, "'   " table)
638 @end group
639 @group
640       ;; @r{@dots{}likewise for many other characters@dots{}}
641       (modify-syntax-entry ?\( "()  " table)
642       (modify-syntax-entry ?\) ")(  " table)
643       (modify-syntax-entry ?\[ "(]  " table)
644       (modify-syntax-entry ?\] ")[  " table))
645     table))
646 @end group
647 @group
648 ;; @r{Create an abbrev table for lisp-mode.}
649 (define-abbrev-table 'lisp-mode-abbrev-table ())
650 @end group
651 @end smallexample
653   Much code is shared among the three Lisp modes.  The following
654 function sets various variables; it is called by each of the major Lisp
655 mode functions:
657 @smallexample
658 @group
659 (defun lisp-mode-variables (lisp-syntax)
660   (when lisp-syntax
661     (set-syntax-table lisp-mode-syntax-table))
662   (setq local-abbrev-table lisp-mode-abbrev-table)
663   @dots{}
664 @end group
665 @end smallexample
667   Functions such as @code{forward-paragraph} use the value of the
668 @code{paragraph-start} variable.  Since Lisp code is different from
669 ordinary text, the @code{paragraph-start} variable needs to be set
670 specially to handle Lisp.  Also, comments are indented in a special
671 fashion in Lisp and the Lisp modes need their own mode-specific
672 @code{comment-indent-function}.  The code to set these variables is the
673 rest of @code{lisp-mode-variables}.
675 @smallexample
676 @group
677   (make-local-variable 'paragraph-start)
678   (setq paragraph-start (concat page-delimiter "\\|$" ))
679   (make-local-variable 'paragraph-separate)
680   (setq paragraph-separate paragraph-start)
681   @dots{}
682 @end group
683 @group
684   (make-local-variable 'comment-indent-function)
685   (setq comment-indent-function 'lisp-comment-indent))
686   @dots{}
687 @end group
688 @end smallexample
690   Each of the different Lisp modes has a slightly different keymap.  For
691 example, Lisp mode binds @kbd{C-c C-z} to @code{run-lisp}, but the other
692 Lisp modes do not.  However, all Lisp modes have some commands in
693 common.  The following code sets up the common commands:
695 @smallexample
696 @group
697 (defvar shared-lisp-mode-map ()
698   "Keymap for commands shared by all sorts of Lisp modes.")
700 ;; @r{Putting this @code{if} after the @code{defvar} is an older style.}
701 (if shared-lisp-mode-map
702     ()
703    (setq shared-lisp-mode-map (make-sparse-keymap))
704    (define-key shared-lisp-mode-map "\e\C-q" 'indent-sexp)
705    (define-key shared-lisp-mode-map "\177"
706                'backward-delete-char-untabify))
707 @end group
708 @end smallexample
710 @noindent
711 And here is the code to set up the keymap for Lisp mode:
713 @smallexample
714 @group
715 (defvar lisp-mode-map ()
716   "Keymap for ordinary Lisp mode...")
718 (if lisp-mode-map
719     ()
720   (setq lisp-mode-map (make-sparse-keymap))
721   (set-keymap-parent lisp-mode-map shared-lisp-mode-map)
722   (define-key lisp-mode-map "\e\C-x" 'lisp-eval-defun)
723   (define-key lisp-mode-map "\C-c\C-z" 'run-lisp))
724 @end group
725 @end smallexample
727   Finally, here is the complete major mode function definition for
728 Lisp mode.
730 @smallexample
731 @group
732 (defun lisp-mode ()
733   "Major mode for editing Lisp code for Lisps other than GNU Emacs Lisp.
734 Commands:
735 Delete converts tabs to spaces as it moves back.
736 Blank lines separate paragraphs.  Semicolons start comments.
737 \\@{lisp-mode-map@}
738 Note that `run-lisp' may be used either to start an inferior Lisp job
739 or to switch back to an existing one.
740 @end group
742 @group
743 Entry to this mode calls the value of `lisp-mode-hook'
744 if that value is non-nil."
745   (interactive)
746   (kill-all-local-variables)
747 @end group
748 @group
749   (use-local-map lisp-mode-map)          ; @r{Select the mode's keymap.}
750   (setq major-mode 'lisp-mode)           ; @r{This is how @code{describe-mode}}
751                                          ;   @r{finds out what to describe.}
752   (setq mode-name "Lisp")                ; @r{This goes into the mode line.}
753   (lisp-mode-variables t)                ; @r{This defines various variables.}
754   (make-local-variable 'comment-start-skip)
755   (setq comment-start-skip
756         "\\(\\(^\\|[^\\\\\n]\\)\\(\\\\\\\\\\)*\\)\\(;+\\|#|\\) *")
757   (make-local-variable 'font-lock-keywords-case-fold-search)
758   (setq font-lock-keywords-case-fold-search t)
759 @end group
760 @group
761   (setq imenu-case-fold-search t)
762   (set-syntax-table lisp-mode-syntax-table)
763   (run-mode-hooks 'lisp-mode-hook))           ; @r{This permits the user to use a}
764                                          ;   @r{hook to customize the mode.}
765 @end group
766 @end smallexample
768 @node Auto Major Mode
769 @subsection How Emacs Chooses a Major Mode
771   Based on information in the file name or in the file itself, Emacs
772 automatically selects a major mode for the new buffer when a file is
773 visited.  It also processes local variables specified in the file text.
775 @deffn Command fundamental-mode
776   Fundamental mode is a major mode that is not specialized for anything
777 in particular.  Other major modes are defined in effect by comparison
778 with this one---their definitions say what to change, starting from
779 Fundamental mode.  The @code{fundamental-mode} function does @emph{not}
780 run any mode hooks; you're not supposed to customize it.  (If you want Emacs
781 to behave differently in Fundamental mode, change the @emph{global}
782 state of Emacs.)
783 @end deffn
785 @deffn Command normal-mode &optional find-file
786 This function establishes the proper major mode and buffer-local variable
787 bindings for the current buffer.  First it calls @code{set-auto-mode}
788 (see below), then it runs @code{hack-local-variables} to parse, and
789 bind or evaluate as appropriate, the file's local variables
790 (@pxref{File Local Variables}).
792 If the @var{find-file} argument to @code{normal-mode} is non-@code{nil},
793 @code{normal-mode} assumes that the @code{find-file} function is calling
794 it.  In this case, it may process local variables in the @samp{-*-}
795 line or at the end of the file.  The variable
796 @code{enable-local-variables} controls whether to do so.  @xref{File
797 Variables, , Local Variables in Files, emacs, The GNU Emacs Manual},
798 for the syntax of the local variables section of a file.
800 If you run @code{normal-mode} interactively, the argument
801 @var{find-file} is normally @code{nil}.  In this case,
802 @code{normal-mode} unconditionally processes any file local variables.
804 If @code{normal-mode} processes the local variables list and this list
805 specifies a major mode, that mode overrides any mode chosen by
806 @code{set-auto-mode}.  If neither @code{set-auto-mode} nor
807 @code{hack-local-variables} specify a major mode, the buffer stays in
808 the major mode determined by @code{default-major-mode} (see below).
810 @cindex file mode specification error
811 @code{normal-mode} uses @code{condition-case} around the call to the
812 major mode function, so errors are caught and reported as a @samp{File
813 mode specification error},  followed by the original error message.
814 @end deffn
816 @defun set-auto-mode &optional keep-mode-if-same
817 @cindex visited file mode
818   This function selects the major mode that is appropriate for the
819 current buffer.  It bases its decision (in order of precedence) on
820 the @w{@samp{-*-}} line, on the @w{@samp{#!}} line (using
821 @code{interpreter-mode-alist}), on the text at the beginning of the
822 buffer (using @code{magic-mode-alist}), and finally on the visited
823 file name (using @code{auto-mode-alist}).  @xref{Choosing Modes, , How
824 Major Modes are Chosen, emacs, The GNU Emacs Manual}.  However, this
825 function does not look for the @samp{mode:} local variable near the
826 end of a file; the @code{hack-local-variables} function does that.
827 If @code{enable-local-variables} is @code{nil}, @code{set-auto-mode}
828 does not check the @w{@samp{-*-}} line for a mode tag either.
830 If @var{keep-mode-if-same} is non-@code{nil}, this function does not
831 call the mode command if the buffer is already in the proper major
832 mode.  For instance, @code{set-visited-file-name} sets this to
833 @code{t} to avoid killing buffer local variables that the user may
834 have set.
835 @end defun
837 @defopt default-major-mode
838 This variable holds the default major mode for new buffers.  The
839 standard value is @code{fundamental-mode}.
841 If the value of @code{default-major-mode} is @code{nil}, Emacs uses
842 the (previously) current buffer's major mode as the default major mode
843 of a new buffer.  However, if that major mode symbol has a @code{mode-class}
844 property with value @code{special}, then it is not used for new buffers;
845 Fundamental mode is used instead.  The modes that have this property are
846 those such as Dired and Rmail that are useful only with text that has
847 been specially prepared.
848 @end defopt
850 @defun set-buffer-major-mode buffer
851 This function sets the major mode of @var{buffer} to the value of
852 @code{default-major-mode}; if that variable is @code{nil}, it uses the
853 current buffer's major mode (if that is suitable).  As an exception,
854 if @var{buffer}'s name is @samp{*scratch*}, it sets the mode to
855 @code{initial-major-mode}.
857 The low-level primitives for creating buffers do not use this function,
858 but medium-level commands such as @code{switch-to-buffer} and
859 @code{find-file-noselect} use it whenever they create buffers.
860 @end defun
862 @defopt initial-major-mode
863 @cindex @samp{*scratch*}
864 The value of this variable determines the major mode of the initial
865 @samp{*scratch*} buffer.  The value should be a symbol that is a major
866 mode command.  The default value is @code{lisp-interaction-mode}.
867 @end defopt
869 @defvar interpreter-mode-alist
870 This variable specifies major modes to use for scripts that specify a
871 command interpreter in a @samp{#!} line.  Its value is an alist with
872 elements of the form @code{(@var{interpreter} . @var{mode})}; for
873 example, @code{("perl" . perl-mode)} is one element present by
874 default.  The element says to use mode @var{mode} if the file
875 specifies an interpreter which matches @var{interpreter}.  The value
876 of @var{interpreter} is actually a regular expression. @xref{Regular
877 Expressions}.
878 @end defvar
880 @defvar magic-mode-alist
881 This variable's value is an alist with elements of the form
882 @code{(@var{regexp} .  @var{function})}, where @var{regexp} is a
883 regular expression and @var{function} is a function or @code{nil}.
884 After visiting a file, @code{set-auto-mode} calls @var{function} if
885 the text at the beginning of the buffer matches @var{regexp} and
886 @var{function} is non-@code{nil}; if @var{function} is @code{nil},
887 @code{auto-mode-alist} gets to decide the mode.
888 @end defvar
890 @defvar auto-mode-alist
891 This variable contains an association list of file name patterns
892 (regular expressions) and corresponding major mode commands.  Usually,
893 the file name patterns test for suffixes, such as @samp{.el} and
894 @samp{.c}, but this need not be the case.  An ordinary element of the
895 alist looks like @code{(@var{regexp} .  @var{mode-function})}.
897 For example,
899 @smallexample
900 @group
901 (("\\`/tmp/fol/" . text-mode)
902  ("\\.texinfo\\'" . texinfo-mode)
903  ("\\.texi\\'" . texinfo-mode)
904 @end group
905 @group
906  ("\\.el\\'" . emacs-lisp-mode)
907  ("\\.c\\'" . c-mode)
908  ("\\.h\\'" . c-mode)
909  @dots{})
910 @end group
911 @end smallexample
913 When you visit a file whose expanded file name (@pxref{File Name
914 Expansion}), with version numbers and backup suffixes removed using
915 @code{file-name-sans-versions} (@pxref{File Name Components}), matches
916 a @var{regexp}, @code{set-auto-mode} calls the corresponding
917 @var{mode-function}.  This feature enables Emacs to select the proper
918 major mode for most files.
920 If an element of @code{auto-mode-alist} has the form @code{(@var{regexp}
921 @var{function} t)}, then after calling @var{function}, Emacs searches
922 @code{auto-mode-alist} again for a match against the portion of the file
923 name that did not match before.  This feature is useful for
924 uncompression packages: an entry of the form @code{("\\.gz\\'"
925 @var{function} t)} can uncompress the file and then put the uncompressed
926 file in the proper mode according to the name sans @samp{.gz}.
928 Here is an example of how to prepend several pattern pairs to
929 @code{auto-mode-alist}.  (You might use this sort of expression in your
930 init file.)
932 @smallexample
933 @group
934 (setq auto-mode-alist
935   (append
936    ;; @r{File name (within directory) starts with a dot.}
937    '(("/\\.[^/]*\\'" . fundamental-mode)
938      ;; @r{File name has no dot.}
939      ("[^\\./]*\\'" . fundamental-mode)
940      ;; @r{File name ends in @samp{.C}.}
941      ("\\.C\\'" . c++-mode))
942    auto-mode-alist))
943 @end group
944 @end smallexample
945 @end defvar
947 @node Mode Help
948 @subsection Getting Help about a Major Mode
949 @cindex mode help
950 @cindex help for major mode
951 @cindex documentation for major mode
953   The @code{describe-mode} function is used to provide information
954 about major modes.  It is normally called with @kbd{C-h m}.  The
955 @code{describe-mode} function uses the value of @code{major-mode},
956 which is why every major mode function needs to set the
957 @code{major-mode} variable.
959 @deffn Command describe-mode
960 This function displays the documentation of the current major mode.
962 The @code{describe-mode} function calls the @code{documentation}
963 function using the value of @code{major-mode} as an argument.  Thus, it
964 displays the documentation string of the major mode function.
965 (@xref{Accessing Documentation}.)
966 @end deffn
968 @defvar major-mode
969 This variable holds the symbol for the current buffer's major mode.
970 This symbol should have a function definition that is the command to
971 switch to that major mode.  The @code{describe-mode} function uses the
972 documentation string of the function as the documentation of the major
973 mode.
974 @end defvar
976 @node Derived Modes
977 @subsection Defining Derived Modes
978 @cindex derived mode
980   It's often useful to define a new major mode in terms of an existing
981 one.  An easy way to do this is to use @code{define-derived-mode}.
983 @defmac define-derived-mode variant parent name docstring keyword-args@dots{} body@dots{}
984 This construct defines @var{variant} as a major mode command, using
985 @var{name} as the string form of the mode name.  @var{variant} and
986 @var{parent} should be unquoted symbols.
988 The new command @var{variant} is defined to call the function
989 @var{parent}, then override certain aspects of that parent mode:
991 @itemize @bullet
992 @item
993 The new mode has its own sparse keymap, named
994 @code{@var{variant}-map}.  @code{define-derived-mode}
995 makes the parent mode's keymap the parent of the new map, unless
996 @code{@var{variant}-map} is already set and already has a parent.
998 @item
999 The new mode has its own syntax table, kept in the variable
1000 @code{@var{variant}-syntax-table}, unless you override this using the
1001 @code{:syntax-table} keyword (see below).  @code{define-derived-mode}
1002 makes the parent mode's syntax-table the parent of
1003 @code{@var{variant}-syntax-table}, unless the latter is already set
1004 and already has a parent different from @code{standard-syntax-table}.
1006 @item
1007 The new mode has its own abbrev table, kept in the variable
1008 @code{@var{variant}-abbrev-table}, unless you override this using the
1009 @code{:abbrev-table} keyword (see below).
1011 @item
1012 The new mode has its own mode hook, @code{@var{variant}-hook}.  It
1013 runs this hook, after running the hooks of its ancestor modes, with
1014 @code{run-mode-hooks} (@pxref{Mode Hooks}).
1015 @end itemize
1017 In addition, you can specify how to override other aspects of
1018 @var{parent} with @var{body}.  The command @var{variant}
1019 evaluates the forms in @var{body} after setting up all its usual
1020 overrides, just before running @code{@var{variant}-hook}.
1022 You can also specify @code{nil} for @var{parent}.  This gives the new
1023 mode no parent.  Then @code{define-derived-mode} behaves as described
1024 above, but, of course, omits all actions connected with @var{parent}.
1026 The argument @var{docstring} specifies the documentation string for
1027 the new mode.  @code{define-derived-mode} adds some general
1028 information about the mode's hook, followed by the mode's keymap, at
1029 the end of this docstring.  If you omit @var{docstring},
1030 @code{define-derived-mode} generates a documentation string.
1032 The @var{keyword-args} are pairs of keywords and values.  The values
1033 are evaluated.  The following keywords are currently supported:
1035 @table @code
1036 @item :group
1037 If this is specified, it is the customization group for this mode.
1039 @item :syntax-table
1040 You can use this to explicitly specify a syntax table for the new
1041 mode.  If you specify a @code{nil} value, the new mode uses the same
1042 syntax table as @var{parent}, or @code{standard-syntax-table} if
1043 @var{parent} is @code{nil}.  (Note that this does @emph{not} follow
1044 the convention used for non-keyword arguments that a @code{nil} value
1045 is equivalent with not specifying the argument.)
1047 @item :abbrev-table
1048 You can use this to explicitly specify an abbrev table for the new
1049 mode.  If you specify a @code{nil} value, the new mode uses the same
1050 abbrev table as @var{parent}, or @code{fundamental-mode-abbrev-table}
1051 if @var{parent} is @code{nil}.  (Again, a @code{nil} value is
1052 @emph{not} equivalent to not specifying this keyword.)
1053 @end table
1055 Here is a hypothetical example:
1057 @example
1058 (define-derived-mode hypertext-mode
1059   text-mode "Hypertext"
1060   "Major mode for hypertext.
1061 \\@{hypertext-mode-map@}"
1062   (setq case-fold-search nil))
1064 (define-key hypertext-mode-map
1065   [down-mouse-3] 'do-hyper-link)
1066 @end example
1068 Do not write an @code{interactive} spec in the definition;
1069 @code{define-derived-mode} does that automatically.
1070 @end defmac
1072 @node Generic Modes
1073 @subsection Generic Modes
1074 @cindex generic mode
1076 @dfn{Generic modes} are simple major modes with basic support for
1077 comment syntax and Font Lock mode.  They are primarily useful for
1078 configuration files.  To define a generic mode, use the macro
1079 @code{define-generic-mode}.  See the file @file{generic-x.el} for some
1080 examples of the use of @code{define-generic-mode}.
1082 @defmac define-generic-mode mode comment-list keyword-list font-lock-list auto-mode-list function-list &optional docstring
1083 This macro creates a new generic mode.  The argument @var{mode} (an
1084 unquoted symbol) is the major mode command.  The optional argument
1085 @var{docstring} is the documentation for the mode command.  If you do
1086 not supply it, @code{define-generic-mode} uses a default documentation
1087 string instead.
1089 @var{comment-list} is a list in which each element is either a
1090 character, a string of one or two characters, or a cons cell.  A
1091 character or a string is set up in the mode's syntax table as a
1092 ``comment starter.''  If the entry is a cons cell, the @sc{car} is set
1093 up as a ``comment starter'' and the @sc{cdr} as a ``comment ender.''
1094 (Use @code{nil} for the latter if you want comments to end at the end
1095 of the line.)  Note that the syntax table has limitations about what
1096 comment starters and enders are actually possible.  @xref{Syntax
1097 Tables}.
1099 @var{keyword-list} is a list of keywords to highlight with
1100 @code{font-lock-keyword-face}.  Each keyword should be a string.
1101 @var{font-lock-list} is a list of additional expressions to highlight.
1102 Each element of this list should have the same form as an element of
1103 @code{font-lock-keywords}.  @xref{Search-based Fontification}.
1105 @var{auto-mode-list} is a list of regular expressions to add to the
1106 variable @code{auto-mode-alist}.  These regular expressions are added
1107 when Emacs runs the macro expansion.
1109 @var{function-list} is a list of functions to call to do some
1110 additional setup.  The mode command calls these functions just before
1111 it runs the mode hook variable @code{@var{mode}-hook}.
1112 @end defmac
1114 @node Mode Hooks
1115 @subsection Mode Hooks
1117 The two last things a major mode function does is to run its mode
1118 hook and finally the mode independent normal hook
1119 @code{after-change-major-mode-hook}.  If the major mode is a derived
1120 mode, that is if it calls another major mode (the parent mode) in its
1121 body, then the parent's mode hook is run just before the derived
1122 mode's hook.  Neither the parent's mode hook nor
1123 @code{after-change-major-mode-hook} are run at the end of the actual
1124 call to the parent mode.  This applies recursively if the parent mode
1125 has itself a parent.  That is, the mode hooks of all major modes called
1126 directly or indirectly by the major mode function are all run in
1127 sequence at the end, just before @code{after-change-major-mode-hook}.
1129 If you are customizing a major mode, rather than defining one, the
1130 above is all you need to know about the hooks run at the end of a
1131 major mode.  This also applies if you use @code{define-derived-mode}
1132 to define a major mode, because that macro will automatically
1133 implement the above for you.
1135 Programmers wishing to define a major mode without using
1136 @code{define-derived-mode}, should make sure that their major mode
1137 follows the above conventions.  @xref{Major Mode Conventions}, for how
1138 this should be accomplished.  Below, we give some implementation
1139 details.
1141 @defun run-mode-hooks &rest hookvars
1142 Major modes should run their mode hook using this function.  It is
1143 similar to @code{run-hooks} (@pxref{Hooks}), but if run inside a
1144 @code{delay-mode-hooks} form, this function does not run any hooks.
1145 Instead, it arranges for @var{hookvars} to be run at a later call to
1146 the function.  Otherwise, @code{run-mode-hooks} runs any delayed hooks
1147 in order, then @var{hookvars} and finally
1148 @code{after-change-major-mode-hook}.
1149 @end defun
1151 @defmac delay-mode-hooks body...
1152 This macro executes @var{body} like @code{progn}, but all calls to
1153 @code{run-mode-hooks} inside @var{body} delay running their hooks.
1154 They will be run by the first call to @code{run-mode-hooks} after exit
1155 from @code{delay-mode-hooks}.
1156 @end defmac
1158 @defvar after-change-major-mode-hook
1159 Every major mode function should run this normal hook at its very end.
1160 It normally does not need to do so explicitly.  Indeed, a major mode
1161 function should normally run its mode hook with @code{run-mode-hooks}
1162 as the very last thing it does and @code{run-mode-hooks} runs
1163 @code{after-change-major-mode-hook} at its very end.
1164 @end defvar
1166 @node Minor Modes
1167 @section Minor Modes
1168 @cindex minor mode
1170   A @dfn{minor mode} provides features that users may enable or disable
1171 independently of the choice of major mode.  Minor modes can be enabled
1172 individually or in combination.  Minor modes would be better named
1173 ``generally available, optional feature modes,'' except that such a name
1174 would be unwieldy.
1176   A minor mode is not usually meant as a variation of a single major mode.
1177 Usually they are general and can apply to many major modes.  For
1178 example, Auto Fill mode works with any major mode that permits text
1179 insertion.  To be general, a minor mode must be effectively independent
1180 of the things major modes do.
1182   A minor mode is often much more difficult to implement than a major
1183 mode.  One reason is that you should be able to activate and deactivate
1184 minor modes in any order.  A minor mode should be able to have its
1185 desired effect regardless of the major mode and regardless of the other
1186 minor modes in effect.
1188   Often the biggest problem in implementing a minor mode is finding a
1189 way to insert the necessary hook into the rest of Emacs.  Minor mode
1190 keymaps make this easier than it used to be.
1192 @defvar minor-mode-list
1193 The value of this variable is a list of all minor mode commands.
1194 @end defvar
1196 @menu
1197 * Minor Mode Conventions::      Tips for writing a minor mode.
1198 * Keymaps and Minor Modes::     How a minor mode can have its own keymap.
1199 * Defining Minor Modes::        A convenient facility for defining minor modes.
1200 @end menu
1202 @node Minor Mode Conventions
1203 @subsection Conventions for Writing Minor Modes
1204 @cindex minor mode conventions
1205 @cindex conventions for writing minor modes
1207   There are conventions for writing minor modes just as there are for
1208 major modes.  Several of the major mode conventions apply to minor
1209 modes as well: those regarding the name of the mode initialization
1210 function, the names of global symbols, and the use of keymaps and
1211 other tables.
1213   In addition, there are several conventions that are specific to
1214 minor modes.  (The easiest way to follow all the conventions is to use
1215 the macro @code{define-minor-mode}; @ref{Defining Minor Modes}.)
1217 @itemize @bullet
1218 @item
1219 @cindex mode variable
1220 Make a variable whose name ends in @samp{-mode} to control the minor
1221 mode.  We call this the @dfn{mode variable}.  The minor mode command
1222 should set this variable (@code{nil} to disable; anything else to
1223 enable).
1225 If possible, implement the mode so that setting the variable
1226 automatically enables or disables the mode.  Then the minor mode command
1227 does not need to do anything except set the variable.
1229 This variable is used in conjunction with the @code{minor-mode-alist} to
1230 display the minor mode name in the mode line.  It can also enable
1231 or disable a minor mode keymap.  Individual commands or hooks can also
1232 check the variable's value.
1234 If you want the minor mode to be enabled separately in each buffer,
1235 make the variable buffer-local.
1237 @item
1238 Define a command whose name is the same as the mode variable.
1239 Its job is to enable and disable the mode by setting the variable.
1241 The command should accept one optional argument.  If the argument is
1242 @code{nil}, it should toggle the mode (turn it on if it is off, and
1243 off if it is on).  It should turn the mode on if the argument is a
1244 positive integer, the symbol @code{t}, or a list whose @sc{car} is one
1245 of those.  It should turn the mode off if the argument is a negative
1246 integer or zero, the symbol @code{-}, or a list whose @sc{car} is a
1247 negative integer or zero.  The meaning of other arguments is not
1248 specified.
1250 Here is an example taken from the definition of @code{transient-mark-mode}.
1251 It shows the use of @code{transient-mark-mode} as a variable that enables or
1252 disables the mode's behavior, and also shows the proper way to toggle,
1253 enable or disable the minor mode based on the raw prefix argument value.
1255 @smallexample
1256 @group
1257 (setq transient-mark-mode
1258       (if (null arg) (not transient-mark-mode)
1259         (> (prefix-numeric-value arg) 0)))
1260 @end group
1261 @end smallexample
1263 @item
1264 Add an element to @code{minor-mode-alist} for each minor mode
1265 (@pxref{Mode Line Variables}), if you want to indicate the minor mode in
1266 the mode line.  This element should be a list of the following form:
1268 @smallexample
1269 (@var{mode-variable} @var{string})
1270 @end smallexample
1272 Here @var{mode-variable} is the variable that controls enabling of the
1273 minor mode, and @var{string} is a short string, starting with a space,
1274 to represent the mode in the mode line.  These strings must be short so
1275 that there is room for several of them at once.
1277 When you add an element to @code{minor-mode-alist}, use @code{assq} to
1278 check for an existing element, to avoid duplication.  For example:
1280 @smallexample
1281 @group
1282 (unless (assq 'leif-mode minor-mode-alist)
1283   (setq minor-mode-alist
1284         (cons '(leif-mode " Leif") minor-mode-alist)))
1285 @end group
1286 @end smallexample
1288 @noindent
1289 or like this, using @code{add-to-list} (@pxref{Setting Variables}):
1291 @smallexample
1292 @group
1293 (add-to-list 'minor-mode-alist '(leif-mode " Leif"))
1294 @end group
1295 @end smallexample
1296 @end itemize
1298   Global minor modes distributed with Emacs should if possible support
1299 enabling and disabling via Custom (@pxref{Customization}).  To do this,
1300 the first step is to define the mode variable with @code{defcustom}, and
1301 specify @code{:type boolean}.
1303   If just setting the variable is not sufficient to enable the mode, you
1304 should also specify a @code{:set} method which enables the mode by
1305 invoking the mode command.  Note in the variable's documentation string that
1306 setting the variable other than via Custom may not take effect.
1308   Also mark the definition with an autoload cookie (@pxref{Autoload}),
1309 and specify a @code{:require} so that customizing the variable will load
1310 the library that defines the mode.  This will copy suitable definitions
1311 into @file{loaddefs.el} so that users can use @code{customize-option} to
1312 enable the mode.  For example:
1314 @smallexample
1315 @group
1317 ;;;###autoload
1318 (defcustom msb-mode nil
1319   "Toggle msb-mode.
1320 Setting this variable directly does not take effect;
1321 use either \\[customize] or the function `msb-mode'."
1322   :set (lambda (symbol value)
1323          (msb-mode (or value 0)))
1324   :initialize 'custom-initialize-default
1325   :version "20.4"
1326   :type    'boolean
1327   :group   'msb
1328   :require 'msb)
1329 @end group
1330 @end smallexample
1332 @node Keymaps and Minor Modes
1333 @subsection Keymaps and Minor Modes
1335   Each minor mode can have its own keymap, which is active when the mode
1336 is enabled.  To set up a keymap for a minor mode, add an element to the
1337 alist @code{minor-mode-map-alist}.  @xref{Active Keymaps}.
1339 @cindex @code{self-insert-command}, minor modes
1340   One use of minor mode keymaps is to modify the behavior of certain
1341 self-inserting characters so that they do something else as well as
1342 self-insert.  In general, this is the only way to do that, since the
1343 facilities for customizing @code{self-insert-command} are limited to
1344 special cases (designed for abbrevs and Auto Fill mode).  (Do not try
1345 substituting your own definition of @code{self-insert-command} for the
1346 standard one.  The editor command loop handles this function specially.)
1348 The key sequences bound in a minor mode should consist of @kbd{C-c}
1349 followed by a punctuation character @emph{other than} @kbd{@{},
1350 @kbd{@}}, @kbd{<}, @kbd{>}, @kbd{:}, and @kbd{;}.  (Those few punctuation
1351 characters are reserved for major modes.)
1353 @node Defining Minor Modes
1354 @subsection Defining Minor Modes
1356   The macro @code{define-minor-mode} offers a convenient way of
1357 implementing a mode in one self-contained definition.
1359 @defmac define-minor-mode mode doc [init-value [lighter [keymap]]] keyword-args... body...
1360 @tindex define-minor-mode
1361 This macro defines a new minor mode whose name is @var{mode} (a
1362 symbol).  It defines a command named @var{mode} to toggle the minor
1363 mode, with @var{doc} as its documentation string.  It also defines a
1364 variable named @var{mode}, which is set to @code{t} or @code{nil} by
1365 enabling or disabling the mode.  The variable is initialized to
1366 @var{init-value}.
1368 The string @var{lighter} says what to display in the mode line
1369 when the mode is enabled; if it is @code{nil}, the mode is not displayed
1370 in the mode line.
1372 The optional argument @var{keymap} specifies the keymap for the minor mode.
1373 It can be a variable name, whose value is the keymap, or it can be an alist
1374 specifying bindings in this form:
1376 @example
1377 (@var{key-sequence} . @var{definition})
1378 @end example
1380 The above three arguments @var{init-value}, @var{lighter}, and
1381 @var{keymap} can be (partially) omitted when @var{keyword-args} are
1382 used.  The @var{keyword-args} consist of keywords followed by
1383 corresponding values.  A few keywords have special meanings:
1385 @table @code
1386 @item :group @var{group}
1387 Custom group name to use in all generated @code{defcustom} forms.
1388 Defaults to @var{mode} without the possible trailing @samp{-mode}.
1389 @strong{Warning:} don't use this default group name unless you have
1390 written a @code{defgroup} to define that group properly.  @xref{Group
1391 Definitions}.
1393 @item :global @var{global}
1394 If non-@code{nil} specifies that the minor mode should be global.  By
1395 default, minor modes defined with @code{define-minor-mode} are
1396 buffer-local.
1398 @item :init-value @var{init-value}
1399 This is equivalent to specifying @var{init-value} positionally.
1401 @item :lighter @var{lighter}
1402 This is equivalent to specifying @var{lighter} positionally.
1404 @item :keymap @var{keymap}
1405 This is equivalent to specifying @var{keymap} positionally.
1406 @end table
1408 Any other keyword arguments are passed passed directly to the
1409 @code{defcustom} generated for the variable @var{mode}.
1411 The command named @var{mode} first performs the standard actions such
1412 as setting the variable named @var{mode} and then executes the
1413 @var{body} forms, if any.  It finishes by running the mode hook
1414 variable @code{@var{mode}-hook}.
1415 @end defmac
1417 @findex easy-mmode-define-minor-mode
1418   The name @code{easy-mmode-define-minor-mode} is an alias
1419 for this macro.
1421   Here is an example of using @code{define-minor-mode}:
1423 @smallexample
1424 (define-minor-mode hungry-mode
1425   "Toggle Hungry mode.
1426 With no argument, this command toggles the mode.
1427 Non-null prefix argument turns on the mode.
1428 Null prefix argument turns off the mode.
1430 When Hungry mode is enabled, the control delete key
1431 gobbles all preceding whitespace except the last.
1432 See the command \\[hungry-electric-delete]."
1433  ;; The initial value.
1434  nil
1435  ;; The indicator for the mode line.
1436  " Hungry"
1437  ;; The minor mode bindings.
1438  '(("\C-\^?" . hungry-electric-delete))
1439  :group 'hunger)
1440 @end smallexample
1442 @noindent
1443 This defines a minor mode named ``Hungry mode'', a command named
1444 @code{hungry-mode} to toggle it, a variable named @code{hungry-mode}
1445 which indicates whether the mode is enabled, and a variable named
1446 @code{hungry-mode-map} which holds the keymap that is active when the
1447 mode is enabled.  It initializes the keymap with a key binding for
1448 @kbd{C-@key{DEL}}.  It puts the variable @code{hungry-mode} into
1449 custom group @code{hunger}.  There are no @var{body} forms---many
1450 minor modes don't need any.
1452   Here's an equivalent way to write it:
1454 @smallexample
1455 (define-minor-mode hungry-mode
1456   "Toggle Hungry mode.
1457 With no argument, this command toggles the mode.
1458 Non-null prefix argument turns on the mode.
1459 Null prefix argument turns off the mode.
1461 When Hungry mode is enabled, the control delete key
1462 gobbles all preceding whitespace except the last.
1463 See the command \\[hungry-electric-delete]."
1464  ;; The initial value.
1465  :initial-value nil
1466  ;; The indicator for the mode line.
1467  :lighter " Hungry"
1468  ;; The minor mode bindings.
1469  :keymap
1470  '(("\C-\^?" . hungry-electric-delete)
1471    ("\C-\M-\^?"
1472     . (lambda ()
1473         (interactive)
1474         (hungry-electric-delete t))))
1475  :group 'hunger)
1476 @end smallexample
1478 @defmac define-global-minor-mode global-mode mode turn-on keyword-args...
1479 This defines a global minor mode named @var{global-mode} whose meaning
1480 is to enable the buffer-local minor mode @var{mode} in every buffer.
1481 To turn on the minor mode in a buffer, it uses the function
1482 @var{turn-on}; to turn off the minor mode, it calls @code{mode} with
1483 @minus{}1 as argument.
1485 Use @code{:group @var{group}} in @var{keyword-args} to specify the
1486 custom group for the mode variable of the global minor mode.
1487 @end defmac
1489 @node Mode Line Format
1490 @section Mode-Line Format
1491 @cindex mode line
1493   Each Emacs window (aside from minibuffer windows) typically has a mode
1494 line at the bottom, which displays status information about the buffer
1495 displayed in the window.  The mode line contains information about the
1496 buffer, such as its name, associated file, depth of recursive editing,
1497 and major and minor modes.  A window can also have a @dfn{header
1498 line}, which is much like the mode line but appears at the top of the
1499 window.
1501   This section describes how to control the contents of the mode line
1502 and header line.  We include it in this chapter because much of the
1503 information displayed in the mode line relates to the enabled major and
1504 minor modes.
1506 @menu
1507 * Mode Line Basics::
1508 * Mode Line Data::        The data structure that controls the mode line.
1509 * Mode Line Variables::   Variables used in that data structure.
1510 * %-Constructs::          Putting information into a mode line.
1511 * Properties in Mode::    Using text properties in the mode line.
1512 * Header Lines::          Like a mode line, but at the top.
1513 * Emulating Mode Line::   Formatting text as the mode line would.
1514 @end menu
1516 @node Mode Line Basics
1517 @subsection Mode Line Basics
1519   @code{mode-line-format} is a buffer-local variable that holds a
1520 template used to display the mode line of the current buffer.  All
1521 windows for the same buffer use the same @code{mode-line-format}, so
1522 their mode lines appear the same---except for scrolling percentages, and
1523 line and column numbers, since those depend on point and on how the
1524 window is scrolled.  @code{header-line-format} is used likewise for
1525 header lines.
1527   For efficiency, Emacs does not recompute the mode line and header
1528 line of a window in every redisplay.  It does so when circumstances
1529 appear to call for it---for instance, if you change the window
1530 configuration, switch buffers, narrow or widen the buffer, scroll, or
1531 change the buffer's modification status.  If you modify any of the
1532 variables referenced by @code{mode-line-format} (@pxref{Mode Line
1533 Variables}), or any other variables and data structures that affect
1534 how text is displayed (@pxref{Display}), you may want to force an
1535 update of the mode line so as to display the new information or
1536 display it in the new way.
1538 @c Emacs 19 feature
1539 @defun force-mode-line-update &optional all
1540 Force redisplay of the current buffer's mode line and header line.
1541 The next redisplay will update the mode line and header line based on
1542 the latest values of all relevant variables.  With optional
1543 non-@code{nil} @var{all}, force redisplay of all mode lines and header
1544 lines.
1546 This function also forces recomputation of the menu bar menus
1547 and the frame title.
1548 @end defun
1550   The selected window's mode line is usually displayed in a different
1551 color using the face @code{mode-line}.  Other windows' mode lines
1552 appear in the face @code{mode-line-inactive} instead.  @xref{Faces}.
1554   A window that is just one line tall does not display either a mode
1555 line or a header line, even if the variables call for one.  A window
1556 that is two lines tall cannot display both a mode line and a header
1557 line at once; if the variables call for both, only the mode line
1558 actually appears.
1560 @node Mode Line Data
1561 @subsection The Data Structure of the Mode Line
1562 @cindex mode-line construct
1564   The mode-line contents are controlled by a data structure of lists,
1565 strings, symbols, and numbers kept in buffer-local variables.  The data
1566 structure is called a @dfn{mode-line construct}, and it is built in
1567 recursive fashion out of simpler mode-line constructs.  The same data
1568 structure is used for constructing frame titles (@pxref{Frame Titles})
1569 and header lines (@pxref{Header Lines}).
1571 @defvar mode-line-format
1572 The value of this variable is a mode-line construct with overall
1573 responsibility for the mode-line format.  The value of this variable
1574 controls which other variables are used to form the mode-line text, and
1575 where they appear.
1577 If you set this variable to @code{nil} in a buffer, that buffer does not
1578 have a mode line.
1579 @end defvar
1581   A mode-line construct may be as simple as a fixed string of text, but
1582 it usually specifies how to use other variables to construct the text.
1583 Many of these variables are themselves defined to have mode-line
1584 constructs as their values.
1586   The default value of @code{mode-line-format} incorporates the values
1587 of variables such as @code{mode-line-position} and
1588 @code{mode-line-modes} (which in turn incorporates the values of the
1589 variables @code{mode-name} and @code{minor-mode-alist}).  Because of
1590 this, very few modes need to alter @code{mode-line-format} itself.  For
1591 most purposes, it is sufficient to alter some of the variables that
1592 @code{mode-line-format} either directly or indirectly refers to.
1594   A mode-line construct may be a list, a symbol, or a string.  If the
1595 value is a list, each element may be a list, a symbol, or a string.
1597   The mode line can display various faces, if the strings that control
1598 it have the @code{face} property.  @xref{Properties in Mode}.  In
1599 addition, the face @code{mode-line} is used as a default for the whole
1600 mode line (@pxref{Standard Faces}).
1602 @table @code
1603 @cindex percent symbol in mode line
1604 @item @var{string}
1605 A string as a mode-line construct is displayed verbatim in the mode line
1606 except for @dfn{@code{%}-constructs}.  Decimal digits after the @samp{%}
1607 specify the field width for space filling on the right (i.e., the data
1608 is left justified).  @xref{%-Constructs}.
1610 @item @var{symbol}
1611 A symbol as a mode-line construct stands for its value.  The value of
1612 @var{symbol} is used as a mode-line construct, in place of @var{symbol}.
1613 However, the symbols @code{t} and @code{nil} are ignored, as is any
1614 symbol whose value is void.
1616 There is one exception: if the value of @var{symbol} is a string, it is
1617 displayed verbatim: the @code{%}-constructs are not recognized.
1619 Unless @var{symbol} is marked as ``risky'' (i.e., it has a
1620 non-@code{nil} @code{risky-local-variable} property), all properties in
1621 any strings, as well as all @code{:eval} and @code{:propertize} forms in
1622 the value of that symbol will be ignored.
1624 @item (@var{string} @var{rest}@dots{}) @r{or} (@var{list} @var{rest}@dots{})
1625 A list whose first element is a string or list means to process all the
1626 elements recursively and concatenate the results.  This is the most
1627 common form of mode-line construct.
1629 @item (:eval @var{form})
1630 A list whose first element is the symbol @code{:eval} says to evaluate
1631 @var{form}, and use the result as a string to display.
1633 @item (:propertize @var{elt} @var{props}@dots{})
1634 A list whose first element is the symbol @code{:propertize} says to
1635 process the mode-line construct @var{elt} recursively and add the text
1636 properties specified by @var{props} to the result.  The argument
1637 @var{props} should consist of zero or more pairs @var{text-property}
1638 @var{value}.  (This feature is new as of Emacs 22.1.)
1640 @item (@var{symbol} @var{then} @var{else})
1641 A list whose first element is a symbol that is not a keyword specifies a
1642 conditional.  Its meaning depends on the value of @var{symbol}.  If the
1643 value is non-@code{nil}, the second element, @var{then}, is processed
1644 recursively as a mode-line element.  But if the value of @var{symbol} is
1645 @code{nil}, the third element, @var{else}, is processed recursively.
1646 You may omit @var{else}; then the mode-line element displays nothing if
1647 the value of @var{symbol} is @code{nil}.
1649 @item (@var{width} @var{rest}@dots{})
1650 A list whose first element is an integer specifies truncation or
1651 padding of the results of @var{rest}.  The remaining elements
1652 @var{rest} are processed recursively as mode-line constructs and
1653 concatenated together.  Then the result is space filled (if
1654 @var{width} is positive) or truncated (to @minus{}@var{width} columns,
1655 if @var{width} is negative) on the right.
1657 For example, the usual way to show what percentage of a buffer is above
1658 the top of the window is to use a list like this: @code{(-3 "%p")}.
1659 @end table
1661   If you do alter @code{mode-line-format} itself, the new value should
1662 use the same variables that appear in the default value (@pxref{Mode
1663 Line Variables}), rather than duplicating their contents or displaying
1664 the information in another fashion.  This way, customizations made by
1665 the user or by Lisp programs (such as @code{display-time} and major
1666 modes) via changes to those variables remain effective.
1668 @cindex Shell mode @code{mode-line-format}
1669   Here is an example of a @code{mode-line-format} that might be
1670 useful for @code{shell-mode}, since it contains the host name and default
1671 directory.
1673 @example
1674 @group
1675 (setq mode-line-format
1676   (list "-"
1677    'mode-line-mule-info
1678    'mode-line-modified
1679    'mode-line-frame-identification
1680    "%b--"
1681 @end group
1682 @group
1683    ;; @r{Note that this is evaluated while making the list.}
1684    ;; @r{It makes a mode-line construct which is just a string.}
1685    (getenv "HOST")
1686 @end group
1687    ":"
1688    'default-directory
1689    "   "
1690    'global-mode-string
1691    "   %[("
1692    '(:eval (mode-line-mode-name))
1693    'mode-line-process
1694    'minor-mode-alist
1695    "%n"
1696    ")%]--"
1697 @group
1698    '(which-func-mode ("" which-func-format "--"))
1699    '(line-number-mode "L%l--")
1700    '(column-number-mode "C%c--")
1701    '(-3 "%p")
1702    "-%-"))
1703 @end group
1704 @end example
1706 @noindent
1707 (The variables @code{line-number-mode}, @code{column-number-mode}
1708 and @code{which-func-mode} enable particular minor modes; as usual,
1709 these variable names are also the minor mode command names.)
1711 @node Mode Line Variables
1712 @subsection Variables Used in the Mode Line
1714   This section describes variables incorporated by the
1715 standard value of @code{mode-line-format} into the text of the mode
1716 line.  There is nothing inherently special about these variables; any
1717 other variables could have the same effects on the mode line if
1718 @code{mode-line-format} were changed to use them.
1720 @defvar mode-line-mule-info
1721 This variable holds the value of the mode-line construct that displays
1722 information about the language environment, buffer coding system, and
1723 current input method.  @xref{Non-ASCII Characters}.
1724 @end defvar
1726 @defvar mode-line-modified
1727 This variable holds the value of the mode-line construct that displays
1728 whether the current buffer is modified.
1730 The default value of @code{mode-line-modified} is @code{("%1*%1+")}.
1731 This means that the mode line displays @samp{**} if the buffer is
1732 modified, @samp{--} if the buffer is not modified, @samp{%%} if the
1733 buffer is read only, and @samp{%*} if the buffer is read only and
1734 modified.
1736 Changing this variable does not force an update of the mode line.
1737 @end defvar
1739 @defvar mode-line-frame-identification
1740 This variable identifies the current frame.  The default value is
1741 @code{"  "} if you are using a window system which can show multiple
1742 frames, or @code{"-%F  "} on an ordinary terminal which shows only one
1743 frame at a time.
1744 @end defvar
1746 @defvar mode-line-buffer-identification
1747 This variable identifies the buffer being displayed in the window.  Its
1748 default value is @code{("%12b")}, which displays the buffer name, padded
1749 with spaces to at least 12 columns.
1750 @end defvar
1752 @defvar mode-line-position
1753 This variable indicates the position in the buffer.  Here is a
1754 simplified version of its default value.  The actual default value
1755 also specifies addition of the @code{help-echo} text property.
1757 @example
1758 @group
1759 ((-3 "%p")
1760  (size-indication-mode (8 " of %I"))
1761 @end group
1762 @group
1763  (line-number-mode
1764   ((column-number-mode
1765     (10 " (%l,%c)")
1766     (6 " L%l")))
1767   ((column-number-mode
1768     (5 " C%c")))))
1769 @end group
1770 @end example
1772 This means that @code{mode-line-position} displays at least the buffer
1773 percentage and possibly the buffer size, the line number and the column
1774 number.
1775 @end defvar
1777 @defvar vc-mode
1778 The variable @code{vc-mode}, buffer-local in each buffer, records
1779 whether the buffer's visited file is maintained with version control,
1780 and, if so, which kind.  Its value is a string that appears in the mode
1781 line, or @code{nil} for no version control.
1782 @end defvar
1784 @defvar mode-line-modes
1785 This variable displays the buffer's major and minor modes.  Here is a
1786 simplified version of its default value.  The real default value also
1787 specifies addition of text properties.
1789 @example
1790 @group
1791 ("%[(" mode-name
1792  mode-line-process minor-mode-alist
1793  "%n" ")%]--")
1794 @end group
1795 @end example
1797 So @code{mode-line-modes} normally also displays the recursive editing
1798 level, information on the process status and whether narrowing is in
1799 effect.
1800 @end defvar
1802   The following three variables are used in @code{mode-line-modes}:
1804 @defvar mode-name
1805 This buffer-local variable holds the ``pretty'' name of the current
1806 buffer's major mode.  Each major mode should set this variable so that the
1807 mode name will appear in the mode line.
1808 @end defvar
1810 @defvar mode-line-process
1811 This buffer-local variable contains the mode-line information on process
1812 status in modes used for communicating with subprocesses.  It is
1813 displayed immediately following the major mode name, with no intervening
1814 space.  For example, its value in the @samp{*shell*} buffer is
1815 @code{(":%s")}, which allows the shell to display its status along
1816 with the major mode as: @samp{(Shell:run)}.  Normally this variable
1817 is @code{nil}.
1818 @end defvar
1820 @defvar minor-mode-alist
1821 This variable holds an association list whose elements specify how the
1822 mode line should indicate that a minor mode is active.  Each element of
1823 the @code{minor-mode-alist} should be a two-element list:
1825 @example
1826 (@var{minor-mode-variable} @var{mode-line-string})
1827 @end example
1829 More generally, @var{mode-line-string} can be any mode-line spec.  It
1830 appears in the mode line when the value of @var{minor-mode-variable}
1831 is non-@code{nil}, and not otherwise.  These strings should begin with
1832 spaces so that they don't run together.  Conventionally, the
1833 @var{minor-mode-variable} for a specific mode is set to a
1834 non-@code{nil} value when that minor mode is activated.
1836 @code{minor-mode-alist} itself is not buffer-local.  Each variable
1837 mentioned in the alist should be buffer-local if its minor mode can be
1838 enabled separately in each buffer.
1839 @end defvar
1841 @defvar global-mode-string
1842 This variable holds a mode-line spec that, by default, appears in the
1843 mode line just after the @code{which-func-mode} minor mode if set,
1844 else after @code{mode-line-modes}.  The command @code{display-time}
1845 sets @code{global-mode-string} to refer to the variable
1846 @code{display-time-string}, which holds a string containing the time
1847 and load information.
1849 The @samp{%M} construct substitutes the value of
1850 @code{global-mode-string}, but that is obsolete, since the variable is
1851 included in the mode line from @code{mode-line-format}.
1852 @end defvar
1854   The variable @code{default-mode-line-format} is where
1855 @code{mode-line-format} usually gets its value:
1857 @defvar default-mode-line-format
1858 This variable holds the default @code{mode-line-format} for buffers
1859 that do not override it.  This is the same as @code{(default-value
1860 'mode-line-format)}.
1862 Here is a simplified version of the default value of
1863 @code{default-mode-line-format}.  The real default value also
1864 specifies addition of text properties.
1866 @example
1867 @group
1868 ("-"
1869  mode-line-mule-info
1870  mode-line-modified
1871  mode-line-frame-identification
1872  mode-line-buffer-identification
1873 @end group
1874  "   "
1875  mode-line-position
1876  (vc-mode vc-mode)
1877  "   "
1878 @group
1879  mode-line-modes
1880  (which-func-mode ("" which-func-format "--"))
1881  (global-mode-string ("--" global-mode-string))
1882  "-%-")
1883 @end group
1884 @end example
1885 @end defvar
1887 @node %-Constructs
1888 @subsection @code{%}-Constructs in the Mode Line
1890   The following table lists the recognized @code{%}-constructs and what
1891 they mean.  In any construct except @samp{%%}, you can add a decimal
1892 integer after the @samp{%} to specify how many characters to display.
1894 @table @code
1895 @item %b
1896 The current buffer name, obtained with the @code{buffer-name} function.
1897 @xref{Buffer Names}.
1899 @item %c
1900 The current column number of point.
1902 @item %f
1903 The visited file name, obtained with the @code{buffer-file-name}
1904 function.  @xref{Buffer File Name}.
1906 @item %F
1907 The title (only on a window system) or the name of the selected frame.
1908 @xref{Window Frame Parameters}.
1910 @item %i
1911 The size of the accessible part of the current buffer; basically
1912 @code{(- (point-max) (point-min))}.
1914 @item %I
1915 Like @samp{%i}, but the size is printed in a more readable way by using
1916 @samp{k} for 10^3, @samp{M} for 10^6, @samp{G} for 10^9, etc., to
1917 abbreviate.
1919 @item %l
1920 The current line number of point, counting within the accessible portion
1921 of the buffer.
1923 @item %n
1924 @samp{Narrow} when narrowing is in effect; nothing otherwise (see
1925 @code{narrow-to-region} in @ref{Narrowing}).
1927 @item %p
1928 The percentage of the buffer text above the @strong{top} of window, or
1929 @samp{Top}, @samp{Bottom} or @samp{All}.  Note that the default
1930 mode-line specification truncates this to three characters.
1932 @item %P
1933 The percentage of the buffer text that is above the @strong{bottom} of
1934 the window (which includes the text visible in the window, as well as
1935 the text above the top), plus @samp{Top} if the top of the buffer is
1936 visible on screen; or @samp{Bottom} or @samp{All}.
1938 @item %s
1939 The status of the subprocess belonging to the current buffer, obtained with
1940 @code{process-status}.  @xref{Process Information}.
1942 @item %t
1943 Whether the visited file is a text file or a binary file.  This is a
1944 meaningful distinction only on certain operating systems (@pxref{MS-DOS
1945 File Types}).
1947 @item %*
1948 @samp{%} if the buffer is read only (see @code{buffer-read-only}); @*
1949 @samp{*} if the buffer is modified (see @code{buffer-modified-p}); @*
1950 @samp{-} otherwise.  @xref{Buffer Modification}.
1952 @item %+
1953 @samp{*} if the buffer is modified (see @code{buffer-modified-p}); @*
1954 @samp{%} if the buffer is read only (see @code{buffer-read-only}); @*
1955 @samp{-} otherwise.  This differs from @samp{%*} only for a modified
1956 read-only buffer.  @xref{Buffer Modification}.
1958 @item %&
1959 @samp{*} if the buffer is modified, and @samp{-} otherwise.
1961 @item %[
1962 An indication of the depth of recursive editing levels (not counting
1963 minibuffer levels): one @samp{[} for each editing level.
1964 @xref{Recursive Editing}.
1966 @item %]
1967 One @samp{]} for each recursive editing level (not counting minibuffer
1968 levels).
1970 @item %-
1971 Dashes sufficient to fill the remainder of the mode line.
1973 @item %%
1974 The character @samp{%}---this is how to include a literal @samp{%} in a
1975 string in which @code{%}-constructs are allowed.
1976 @end table
1978 The following two @code{%}-constructs are still supported, but they are
1979 obsolete, since you can get the same results with the variables
1980 @code{mode-name} and @code{global-mode-string}.
1982 @table @code
1983 @item %m
1984 The value of @code{mode-name}.
1986 @item %M
1987 The value of @code{global-mode-string}.  Currently, only
1988 @code{display-time} modifies the value of @code{global-mode-string}.
1989 @end table
1991 @node Properties in Mode
1992 @subsection Properties in the Mode Line
1993 @cindex text properties in the mode line
1995   Certain text properties are meaningful in the
1996 mode line.  The @code{face} property affects the appearance of text; the
1997 @code{help-echo} property associate help strings with the text, and
1998 @code{local-map} can make the text mouse-sensitive.
2000   There are four ways to specify text properties for text in the mode
2001 line:
2003 @enumerate
2004 @item
2005 Put a string with a text property directly into the mode-line data
2006 structure.
2008 @item
2009 Put a text property on a mode-line %-construct such as @samp{%12b}; then
2010 the expansion of the %-construct will have that same text property.
2012 @item
2013 Use a @code{(:propertize @var{elt} @var{props}@dots{})} construct to
2014 give @var{elt} a text property specified by @var{props}.
2016 @item
2017 Use a list containing @code{:eval @var{form}} in the mode-line data
2018 structure, and make @var{form} evaluate to a string that has a text
2019 property.
2020 @end enumerate
2022   You use the @code{local-map} property to specify a keymap.  Like any
2023 keymap, it can bind character keys and function keys; but that has no
2024 effect, since it is impossible to move point into the mode line.  This
2025 keymap can only take real effect for mouse clicks.
2027   When the mode line refers to a variable which does not have a
2028 non-@code{nil} @code{risky-local-variable} property, any text
2029 properties given or specified within that variable's values are
2030 ignored.  This is because such properties could otherwise specify
2031 functions to be called, and those functions could come from file
2032 local variables.
2034 @node Header Lines
2035 @subsection Window Header Lines
2036 @cindex header line (of a window)
2037 @cindex window header line
2039   A window can have a @dfn{header line} at the
2040 top, just as it can have a mode line at the bottom.  The header line
2041 feature works just like the mode-line feature, except that it's
2042 controlled by different variables.
2044 @tindex header-line-format
2045 @defvar header-line-format
2046 This variable, local in every buffer, specifies how to display the
2047 header line, for windows displaying the buffer.  The format of the value
2048 is the same as for @code{mode-line-format} (@pxref{Mode Line Data}).
2049 @end defvar
2051 @tindex default-header-line-format
2052 @defvar default-header-line-format
2053 This variable holds the default @code{header-line-format} for buffers
2054 that do not override it.  This is the same as @code{(default-value
2055 'header-line-format)}.
2057 It is normally @code{nil}, so that ordinary buffers have no header line.
2058 @end defvar
2060 @node Emulating Mode Line
2061 @subsection Emulating Mode-Line Formatting
2063   You can use the function @code{format-mode-line} to compute
2064 the text that would appear in a mode line or header line
2065 based on certain mode-line specification.
2067 @defun format-mode-line format &optional face window buffer
2068 This function formats a line of text according to @var{format} as if
2069 it were generating the mode line for @var{window}, but instead of
2070 displaying the text in the mode line or the header line, it returns
2071 the text as a string.  The argument @var{window} defaults to the
2072 selected window.  If @var{buffer} is non-@code{nil}, all the
2073 information used is taken from @var{buffer}; by default, it comes from
2074 @var{window}'s buffer.
2076 The value string normally has text properties that correspond to the
2077 faces, keymaps, etc., that the mode line would have.  And any character
2078 for which no @code{face} property is specified gets a default
2079 value which is usually @var{face}.  (If @var{face} is @code{t},
2080 that stands for either @code{mode-line} if @var{window} is selected,
2081 otherwise @code{mode-line-inactive}.)
2083 However, if @var{face} is an integer, the value has no text properties.
2085 For example, @code{(format-mode-line header-line-format)} returns the
2086 text that would appear in the selected window's header line (@code{""}
2087 if it has no header line).  @code{(format-mode-line header-line-format
2088 'header-line)} returns the same text, with each character
2089 carrying the face that it will have in the header line itself.
2090 @end defun
2092 @node Imenu
2093 @section Imenu
2095 @cindex Imenu
2096   @dfn{Imenu} is a feature that lets users select a definition or
2097 section in the buffer, from a menu which lists all of them, to go
2098 directly to that location in the buffer.  Imenu works by constructing
2099 a buffer index which lists the names and buffer positions of the
2100 definitions, or other named portions of the buffer; then the user can
2101 choose one of them and move point to it.  Major modes can add a menu
2102 bar item to use Imenu using @code{imenu-add-to-menubar}.
2104 @defun imenu-add-to-menubar name
2105 This function defines a local menu bar item named @var{name}
2106 to run Imenu.
2107 @end defun
2109   The user-level commands for using Imenu are described in the Emacs
2110 Manual (@pxref{Imenu,, Imenu, emacs, the Emacs Manual}).  This section
2111 explains how to customize Imenu's method of finding definitions or
2112 buffer portions for a particular major mode.
2114   The usual and simplest way is to set the variable
2115 @code{imenu-generic-expression}:
2117 @defvar imenu-generic-expression
2118 This variable, if non-@code{nil}, is a list that specifies regular
2119 expressions for finding definitions for Imenu.  Simple elements of
2120 @code{imenu-generic-expression} look like this:
2122 @example
2123 (@var{menu-title} @var{regexp} @var{index})
2124 @end example
2126 Here, if @var{menu-title} is non-@code{nil}, it says that the matches
2127 for this element should go in a submenu of the buffer index;
2128 @var{menu-title} itself specifies the name for the submenu.  If
2129 @var{menu-title} is @code{nil}, the matches for this element go directly
2130 in the top level of the buffer index.
2132 The second item in the list, @var{regexp}, is a regular expression
2133 (@pxref{Regular Expressions}); anything in the buffer that it matches
2134 is considered a definition, something to mention in the buffer index.
2135 The third item, @var{index}, is a non-negative integer that indicates
2136 which subexpression in @var{regexp} matches the definition's name.
2138 An element can also look like this:
2140 @example
2141 (@var{menu-title} @var{regexp} @var{index} @var{function} @var{arguments}@dots{})
2142 @end example
2144 Like in the previous case, each match for this element creates an
2145 index item.  However, if this index item is selected by the user, it
2146 calls @var{function} with arguments consisting of the item name, the
2147 buffer position, and @var{arguments}.
2149 For Emacs Lisp mode, @code{imenu-generic-expression} could look like
2150 this:
2152 @c should probably use imenu-syntax-alist and \\sw rather than [-A-Za-z0-9+]
2153 @example
2154 @group
2155 ((nil "^\\s-*(def\\(un\\|subst\\|macro\\|advice\\)\
2156 \\s-+\\([-A-Za-z0-9+]+\\)" 2)
2157 @end group
2158 @group
2159  ("*Vars*" "^\\s-*(def\\(var\\|const\\)\
2160 \\s-+\\([-A-Za-z0-9+]+\\)" 2)
2161 @end group
2162 @group
2163  ("*Types*"
2164   "^\\s-*\
2165 (def\\(type\\|struct\\|class\\|ine-condition\\)\
2166 \\s-+\\([-A-Za-z0-9+]+\\)" 2))
2167 @end group
2168 @end example
2170 Setting this variable makes it buffer-local in the current buffer.
2171 @end defvar
2173 @defvar imenu-case-fold-search
2174 This variable controls whether matching against the regular
2175 expressions in the value of @code{imenu-generic-expression} is
2176 case-sensitive: @code{t}, the default, means matching should ignore
2177 case.
2179 Setting this variable makes it buffer-local in the current buffer.
2180 @end defvar
2182 @defvar imenu-syntax-alist
2183 This variable is an alist of syntax table modifiers to use while
2184 processing @code{imenu-generic-expression}, to override the syntax table
2185 of the current buffer.  Each element should have this form:
2187 @example
2188 (@var{characters} . @var{syntax-description})
2189 @end example
2191 The @sc{car}, @var{characters}, can be either a character or a string.
2192 The element says to give that character or characters the syntax
2193 specified by @var{syntax-description}, which is passed to
2194 @code{modify-syntax-entry} (@pxref{Syntax Table Functions}).
2196 This feature is typically used to give word syntax to characters which
2197 normally have symbol syntax, and thus to simplify
2198 @code{imenu-generic-expression} and speed up matching.
2199 For example, Fortran mode uses it this way:
2201 @example
2202 (setq imenu-syntax-alist '(("_$" . "w")))
2203 @end example
2205 The @code{imenu-generic-expression} regular expressions can then use
2206 @samp{\\sw+} instead of @samp{\\(\\sw\\|\\s_\\)+}.  Note that this
2207 technique may be inconvenient when the mode needs to limit the initial
2208 character of a name to a smaller set of characters than are allowed in
2209 the rest of a name.
2211 Setting this variable makes it buffer-local in the current buffer.
2212 @end defvar
2214   Another way to customize Imenu for a major mode is to set the
2215 variables @code{imenu-prev-index-position-function} and
2216 @code{imenu-extract-index-name-function}:
2218 @defvar imenu-prev-index-position-function
2219 If this variable is non-@code{nil}, its value should be a function that
2220 finds the next ``definition'' to put in the buffer index, scanning
2221 backward in the buffer from point.  It should return @code{nil} if it
2222 doesn't find another ``definition'' before point.  Otherwise it should
2223 leave point at the place it finds a ``definition,'' and return any
2224 non-@code{nil} value.
2226 Setting this variable makes it buffer-local in the current buffer.
2227 @end defvar
2229 @defvar imenu-extract-index-name-function
2230 If this variable is non-@code{nil}, its value should be a function to
2231 return the name for a definition, assuming point is in that definition
2232 as the @code{imenu-prev-index-position-function} function would leave
2235 Setting this variable makes it buffer-local in the current buffer.
2236 @end defvar
2238   The last way to customize Imenu for a major mode is to set the
2239 variable @code{imenu-create-index-function}:
2241 @defvar imenu-create-index-function
2242 This variable specifies the function to use for creating a buffer
2243 index.  The function should take no arguments, and return an index
2244 alist for the current buffer.  It is called within
2245 @code{save-excursion}, so where it leaves point makes no difference.
2247 The index alist can have three types of elements.  Simple elements
2248 look like this:
2250 @example
2251 (@var{index-name} . @var{index-position})
2252 @end example
2254 Selecting a simple element has the effect of moving to position
2255 @var{index-position} in the buffer.  Special elements look like this:
2257 @example
2258 (@var{index-name} @var{index-position} @var{function} @var{arguments}@dots{})
2259 @end example
2261 Selecting a special element performs:
2263 @example
2264 (funcall @var{function}
2265          @var{index-name} @var{index-position} @var{arguments}@dots{})
2266 @end example
2268 A nested sub-alist element looks like this:
2270 @example
2271 (@var{menu-title} @var{sub-alist})
2272 @end example
2274 It creates the submenu @var{menu-title} specified by @var{sub-alist}.
2276 The default value of @code{imenu-create-index-function} is
2277 @code{imenu-default-create-index-function}.  This function uses
2278 @code{imenu-prev-index-position-function} and
2279 @code{imenu-extract-index-name-function} to produce the index alist.
2280 However, if either of these two variables is @code{nil}, the default
2281 function uses @code{imenu-generic-expression} instead.
2283 Setting this variable makes it buffer-local in the current buffer.
2284 @end defvar
2286 @node Font Lock Mode
2287 @section Font Lock Mode
2288 @cindex Font Lock Mode
2290   @dfn{Font Lock mode} is a feature that automatically attaches
2291 @code{face} properties to certain parts of the buffer based on their
2292 syntactic role.  How it parses the buffer depends on the major mode;
2293 most major modes define syntactic criteria for which faces to use in
2294 which contexts.  This section explains how to customize Font Lock for a
2295 particular major mode.
2297   Font Lock mode finds text to highlight in two ways: through
2298 syntactic parsing based on the syntax table, and through searching
2299 (usually for regular expressions).  Syntactic fontification happens
2300 first; it finds comments and string constants and highlights them.
2301 Search-based fontification happens second.
2303 @menu
2304 * Font Lock Basics::            Overview of customizing Font Lock.
2305 * Search-based Fontification::  Fontification based on regexps.
2306 * Other Font Lock Variables::   Additional customization facilities.
2307 * Levels of Font Lock::         Each mode can define alternative levels
2308                                   so that the user can select more or less.
2309 * Precalculated Fontification:: How Lisp programs that produce the buffer
2310                                   contents can also specify how to fontify it.
2311 * Faces for Font Lock::         Special faces specifically for Font Lock.
2312 * Syntactic Font Lock::         Fontification based on syntax tables.
2313 * Setting Syntax Properties::   Defining character syntax based on context
2314                                   using the Font Lock mechanism.
2315 @end menu
2317 @node Font Lock Basics
2318 @subsection Font Lock Basics
2320   There are several variables that control how Font Lock mode highlights
2321 text.  But major modes should not set any of these variables directly.
2322 Instead, they should set @code{font-lock-defaults} as a buffer-local
2323 variable.  The value assigned to this variable is used, if and when Font
2324 Lock mode is enabled, to set all the other variables.
2326 @defvar font-lock-defaults
2327 This variable is set by major modes, as a buffer-local variable, to
2328 specify how to fontify text in that mode.  It automatically becomes
2329 buffer-local when you set it.  The value should look like this:
2331 @example
2332 (@var{keywords} [@var{keywords-only} [@var{case-fold}
2333  [@var{syntax-alist} [@var{syntax-begin} @var{other-vars}@dots{}]]]])
2334 @end example
2336 The first element, @var{keywords}, indirectly specifies the value of
2337 @code{font-lock-keywords} which directs search-based fontification.
2338 It can be a symbol, a variable or a function whose value is the list
2339 to use for @code{font-lock-keywords}.  It can also be a list of
2340 several such symbols, one for each possible level of fontification.
2341 The first symbol specifies how to do level 1 fontification, the second
2342 symbol how to do level 2, and so on.  @xref{Levels of Font Lock}.
2344 The second element, @var{keywords-only}, specifies the value of the
2345 variable @code{font-lock-keywords-only}.  If this is non-@code{nil},
2346 syntactic fontification (of strings and comments) is not performed.
2347 @xref{Syntactic Font Lock}.
2349 The third element, @var{case-fold}, specifies the value of
2350 @code{font-lock-keywords-case-fold-search}.  If it is non-@code{nil},
2351 Font Lock mode ignores case when searching as directed by
2352 @code{font-lock-keywords}.
2354 If the fourth element, @var{syntax-alist}, is non-@code{nil}, it
2355 should be a list of cons cells of the form @code{(@var{char-or-string}
2356 . @var{string})}.  These are used to set up a syntax table for
2357 syntactic fontification (@pxref{Syntax Table Functions}).  The
2358 resulting syntax table is stored in @code{font-lock-syntax-table}.
2360 The fifth element, @var{syntax-begin}, specifies the value of
2361 @code{font-lock-beginning-of-syntax-function}.
2363 All the remaining elements (if any) are collectively called
2364 @var{other-vars}.  Each of these elements should have the form
2365 @code{(@var{variable} . @var{value})}---which means, make
2366 @var{variable} buffer-local and then set it to @var{value}.  You can
2367 use these @var{other-vars} to set other variables that affect
2368 fontification, aside from those you can control with the first five
2369 elements.  @xref{Other Font Lock Variables}.
2370 @end defvar
2372 @node Search-based Fontification
2373 @subsection Search-based Fontification
2375   The most important variable for customizing Font Lock mode is
2376 @code{font-lock-keywords}.  It specifies the search criteria for
2377 search-based fontification.  You should specify the value of this
2378 variable with @var{keywords} in @code{font-lock-defaults}.
2380 @defvar font-lock-keywords
2381 This variable's value is a list of the keywords to highlight.  Be
2382 careful when composing regular expressions for this list; a poorly
2383 written pattern can dramatically slow things down!
2384 @end defvar
2386   Each element of @code{font-lock-keywords} specifies how to find
2387 certain cases of text, and how to highlight those cases.  Font Lock mode
2388 processes the elements of @code{font-lock-keywords} one by one, and for
2389 each element, it finds and handles all matches.  Ordinarily, once
2390 part of the text has been fontified already, this cannot be overridden
2391 by a subsequent match in the same text; but you can specify different
2392 behavior using the @var{override} element of a @var{subexp-highlighter}.
2394   Each element of @code{font-lock-keywords} should have one of these
2395 forms:
2397 @table @code
2398 @item @var{regexp}
2399 Highlight all matches for @var{regexp} using
2400 @code{font-lock-keyword-face}.  For example,
2402 @example
2403 ;; @r{Highlight occurrences of the word @samp{foo}}
2404 ;; @r{using @code{font-lock-keyword-face}.}
2405 "\\<foo\\>"
2406 @end example
2408 The function @code{regexp-opt} (@pxref{Regexp Functions}) is useful
2409 for calculating optimal regular expressions to match a number of
2410 different keywords.
2412 @item @var{function}
2413 Find text by calling @var{function}, and highlight the matches
2414 it finds using @code{font-lock-keyword-face}.
2416 When @var{function} is called, it receives one argument, the limit of
2417 the search; it should begin searching at point, and not search beyond the
2418 limit.  It should return non-@code{nil} if it succeeds, and set the
2419 match data to describe the match that was found.  Returning @code{nil}
2420 indicates failure of the search.
2422 Fontification will call @var{function} repeatedly with the same limit,
2423 and with point where the previous invocation left it, until
2424 @var{function} fails.  On failure, @var{function} need not reset point
2425 in any particular way.
2427 @item (@var{matcher} . @var{subexp})
2428 In this kind of element, @var{matcher} is either a regular
2429 expression or a function, as described above.  The @sc{cdr},
2430 @var{subexp}, specifies which subexpression of @var{matcher} should be
2431 highlighted (instead of the entire text that @var{matcher} matched).
2433 @example
2434 ;; @r{Highlight the @samp{bar} in each occurrence of @samp{fubar},}
2435 ;; @r{using @code{font-lock-keyword-face}.}
2436 ("fu\\(bar\\)" . 1)
2437 @end example
2439 If you use @code{regexp-opt} to produce the regular expression
2440 @var{matcher}, then you can use @code{regexp-opt-depth} (@pxref{Regexp
2441 Functions}) to calculate the value for @var{subexp}.
2443 @item (@var{matcher} . @var{facespec})
2444 In this kind of element, @var{facespec} is an expression whose value
2445 specifies the face to use for highlighting.  In the simplest case,
2446 @var{facespec} is a Lisp variable (a symbol) whose value is a face
2447 name.
2449 @example
2450 ;; @r{Highlight occurrences of @samp{fubar},}
2451 ;; @r{using the face which is the value of @code{fubar-face}.}
2452 ("fubar" . fubar-face)
2453 @end example
2455 However, @var{facespec} can also evaluate to a list of this form:
2457 @example
2458 (face @var{face} @var{prop1} @var{val1} @var{prop2} @var{val2}@dots{})
2459 @end example
2461 @noindent
2462 to specify the face @var{face} and various additional text properties
2463 to put on the text that matches.  If you do this, be sure to add the
2464 other text property names that you set in this way to the value of
2465 @code{font-lock-extra-managed-props} so that the properties will also
2466 be cleared out when they are no longer appropriate.  Alternatively,
2467 you can set the variable @code{font-lock-unfontify-region-function} to
2468 a function that clears these properties.  @xref{Other Font Lock
2469 Variables}.
2471 @item (@var{matcher} . @var{subexp-highlighter})
2472 In this kind of element, @var{subexp-highlighter} is a list
2473 which specifies how to highlight matches found by @var{matcher}.
2474 It has the form:
2476 @example
2477 (@var{subexp} @var{facespec} [[@var{override} [@var{laxmatch}]])
2478 @end example
2480 The @sc{car}, @var{subexp}, is an integer specifying which subexpression
2481 of the match to fontify (0 means the entire matching text).  The second
2482 subelement, @var{facespec}, is an expression whose value specifies the
2483 face, as described above.
2485 The last two values in @var{subexp-highlighter}, @var{override} and
2486 @var{laxmatch}, are optional flags.  If @var{override} is @code{t},
2487 this element can override existing fontification made by previous
2488 elements of @code{font-lock-keywords}.  If it is @code{keep}, then
2489 each character is fontified if it has not been fontified already by
2490 some other element.  If it is @code{prepend}, the face specified by
2491 @var{facespec} is added to the beginning of the @code{font-lock-face}
2492 property.  If it is @code{append}, the face is added to the end of the
2493 @code{font-lock-face} property.
2495 If @var{laxmatch} is non-@code{nil}, it means there should be no error
2496 if there is no subexpression numbered @var{subexp} in @var{matcher}.
2497 Obviously, fontification of the subexpression numbered @var{subexp} will
2498 not occur.  However, fontification of other subexpressions (and other
2499 regexps) will continue.  If @var{laxmatch} is @code{nil}, and the
2500 specified subexpression is missing, then an error is signaled which
2501 terminates search-based fontification.
2503 Here are some examples of elements of this kind, and what they do:
2505 @smallexample
2506 ;; @r{Highlight occurrences of either @samp{foo} or @samp{bar}, using}
2507 ;; @r{@code{foo-bar-face}, even if they have already been highlighted.}
2508 ;; @r{@code{foo-bar-face} should be a variable whose value is a face.}
2509 ("foo\\|bar" 0 foo-bar-face t)
2511 ;; @r{Highlight the first subexpression within each occurrence}
2512 ;; @r{that the function @code{fubar-match} finds,}
2513 ;; @r{using the face which is the value of @code{fubar-face}.}
2514 (fubar-match 1 fubar-face)
2515 @end smallexample
2517 @item (@var{matcher} . @var{anchored-highlighter})
2518 In this kind of element, @var{anchored-highlighter} specifies how to
2519 highlight text that follows a match found by @var{matcher}.  So a
2520 match found by @var{matcher} acts as the anchor for further searches
2521 specified by @var{anchored-highlighter}.  @var{anchored-highlighter}
2522 is a list of the following form:
2524 @example
2525 (@var{anchored-matcher} @var{pre-form} @var{post-form}
2526                         @var{subexp-highlighters}@dots{})
2527 @end example
2529 Here, @var{anchored-matcher}, like @var{matcher}, is either a regular
2530 expression or a function.  After a match of @var{matcher} is found,
2531 point is at the end of the match.  Now, Font Lock evaluates the form
2532 @var{pre-form}.  Then it searches for matches of
2533 @var{anchored-matcher} and uses @var{subexp-highlighters} to highlight
2534 these.  A @var{subexp-highlighter} is as described above.  Finally,
2535 Font Lock evaluates @var{post-form}.
2537 The forms @var{pre-form} and @var{post-form} can be used to initialize
2538 before, and cleanup after, @var{anchored-matcher} is used.  Typically,
2539 @var{pre-form} is used to move point to some position relative to the
2540 match of @var{matcher}, before starting with @var{anchored-matcher}.
2541 @var{post-form} might be used to move back, before resuming with
2542 @var{matcher}.
2544 After Font Lock evaluates @var{pre-form}, it does not search for
2545 @var{anchored-matcher} beyond the end of the line.  However, if
2546 @var{pre-form} returns a buffer position that is greater than the
2547 position of point after @var{pre-form} is evaluated, then the position
2548 returned by @var{pre-form} is used as the limit of the search instead.
2549 It is generally a bad idea to return a position greater than the end
2550 of the line; in other words, the @var{anchored-matcher} search should
2551 not span lines.
2553 For example,
2555 @smallexample
2556 ;; @r{Highlight occurrences of the word @samp{item} following}
2557 ;; @r{an occurrence of the word @samp{anchor} (on the same line)}
2558 ;; @r{in the value of @code{item-face}.}
2559 ("\\<anchor\\>" "\\<item\\>" nil nil (0 item-face))
2560 @end smallexample
2562 Here, @var{pre-form} and @var{post-form} are @code{nil}.  Therefore
2563 searching for @samp{item} starts at the end of the match of
2564 @samp{anchor}, and searching for subsequent instances of @samp{anchor}
2565 resumes from where searching for @samp{item} concluded.
2567 @item (@var{matcher} @var{highlighters}@dots{})
2568 This sort of element specifies several @var{highlighter} lists for a
2569 single @var{matcher}.  A @var{highlighter} list can be of the type
2570 @var{subexp-highlighter} or @var{anchored-highlighter} as described
2571 above.
2573 For example,
2575 @smallexample
2576 ;; @r{Highlight occurrences of the word @samp{anchor} in the value}
2577 ;; @r{of @code{anchor-face}, and subsequent occurrences of the word}
2578 ;; @r{@samp{item} (on the same line) in the value of @code{item-face}.}
2579 ("\\<anchor\\>" (0 anchor-face)
2580                 ("\\<item\\>" nil nil (0 item-face)))
2581 @end smallexample
2583 @item (eval . @var{form})
2584 Here @var{form} is an expression to be evaluated the first time
2585 this value of @code{font-lock-keywords} is used in a buffer.
2586 Its value should have one of the forms described in this table.
2587 @end table
2589 @vindex font-lock-multiline
2590 @strong{Warning:} Do not design an element of @code{font-lock-keywords}
2591 to match text which spans lines; this does not work reliably.  While
2592 @code{font-lock-fontify-buffer} handles multi-line patterns correctly,
2593 updating when you edit the buffer does not, since it considers text one
2594 line at a time.  If you have patterns that typically only span one
2595 line but can occasionally span two or three, such as
2596 @samp{<title>...</title>}, you can ask Font Lock to be more careful by
2597 setting @code{font-lock-multiline} to @code{t}.  But it still will not
2598 work in all cases.
2600 You can use @var{case-fold} in @code{font-lock-defaults} to specify
2601 the value of @code{font-lock-keywords-case-fold-search} which says
2602 whether search-based fontification should be case-insensitive.
2604 @defvar font-lock-keywords-case-fold-search
2605 Non-@code{nil} means that regular expression matching for the sake of
2606 @code{font-lock-keywords} should be case-insensitive.
2607 @end defvar
2609 You can use @code{font-lock-add-keywords} to add additional
2610 search-based fontification rules to a major mode, and
2611 @code{font-lock-remove-keywords} to removes rules.
2613 @defun font-lock-add-keywords mode keywords &optional append
2614 This function adds highlighting @var{keywords} for @var{mode}.  The
2615 argument @var{keywords} should be a list with the same format as the
2616 variable @code{font-lock-keywords}.  @var{mode} should be a symbol,
2617 the major mode command name, such as @code{c-mode}.  When Font Lock
2618 mode is turned on in @var{mode}, it adds @var{keywords} to
2619 @code{font-lock-keywords}.  @var{mode} can also be @code{nil}; the
2620 highlighting @var{keywords} are immediately added to
2621 @code{font-lock-keywords} in the current buffer in that case.
2623 By default, @var{keywords} are added at the beginning of
2624 @code{font-lock-keywords}.  If the optional argument @var{append} is
2625 @code{set}, they are used to replace the value of
2626 @code{font-lock-keywords}.  If @var{append} is any other
2627 non-@code{nil} value, they are added at the end of
2628 @code{font-lock-keywords}.
2630 For example:
2632 @smallexample
2633 (font-lock-add-keywords 'c-mode
2634  '(("\\<\\(FIXME\\):" 1 font-lock-warning-face prepend)
2635    ("\\<\\(and\\|or\\|not\\)\\>" . font-lock-keyword-face)))
2636 @end smallexample
2638 adds two fontification patterns for C mode: one to fontify the word
2639 @samp{FIXME}, even in comments, and another to fontify the words
2640 @samp{and}, @samp{or} and @samp{not} as keywords.
2642 Some modes have specialized support for additional patterns.  See the
2643 variables @code{c-font-lock-extra-types},
2644 @code{c++-font-lock-extra-types}, @code{objc-font-lock-extra-types}
2645 and @code{java-font-lock-extra-types}, for example.
2646 @end defun
2648 @defun font-lock-remove-keywords mode keywords
2649 This function removes highlighting @var{keywords} for @var{mode}.  As
2650 in @code{font-lock-add-keywords}, @var{mode} should be a major mode
2651 command name or @code{nil}.  If @code{nil}, the highlighting
2652 @var{keywords} are immediately removed in the current buffer.
2653 @end defun
2655 @strong{Warning:} Only use a non-@code{nil} @var{mode} argument when
2656 you use @code{font-lock-add-keywords} or
2657 @code{font-lock-remove-keywords} in your @file{.emacs} file.  When you
2658 use these functions from a Lisp program (such as a minor mode), we
2659 recommend that you use @code{nil} for @var{mode} (and place the call
2660 on a hook) to avoid subtle problems due to the details of the
2661 implementation.
2663 @node Other Font Lock Variables
2664 @subsection Other Font Lock Variables
2666   This section describes additional variables that a major mode can
2667 set by means of @var{other-vars} in @code{font-lock-defaults}
2668 (@pxref{Font Lock Basics}).
2670 @defvar font-lock-mark-block-function
2671 If this variable is non-@code{nil}, it should be a function that is
2672 called with no arguments, to choose an enclosing range of text for
2673 refontification for the command @kbd{M-o M-o}
2674 (@code{font-lock-fontify-block}).
2676 The function should report its choice by placing the region around it.
2677 A good choice is a range of text large enough to give proper results,
2678 but not too large so that refontification becomes slow.  Typical values
2679 are @code{mark-defun} for programming modes or @code{mark-paragraph} for
2680 textual modes.
2681 @end defvar
2683 @defvar font-lock-extra-managed-props
2684 This variable specifies additional properties (other than
2685 @code{font-lock-face}) that are being managed by Font Lock mode.  It
2686 is used by @code{font-lock-default-unfontify-region}, which normally
2687 only manages the @code{font-lock-face} property.  If you want Font
2688 Lock to manage other properties as well, you must specify them in a
2689 @var{facespec} in @code{font-lock-keywords} as well as add them to
2690 this list.  @xref{Search-based Fontification}.
2691 @end defvar
2693 @defvar font-lock-fontify-buffer-function
2694 Function to use for fontifying the buffer.  The default value is
2695 @code{font-lock-default-fontify-buffer}.
2696 @end defvar
2698 @defvar font-lock-unfontify-buffer-function
2699 Function to use for unfontifying the buffer.  This is used when
2700 turning off Font Lock mode.  The default value is
2701 @code{font-lock-default-unfontify-buffer}.
2702 @end defvar
2704 @defvar font-lock-fontify-region-function
2705 Function to use for fontifying a region.  It should take two
2706 arguments, the beginning and end of the region, and an optional third
2707 argument @var{verbose}.  If @var{verbose} is non-@code{nil}, the
2708 function should print status messages.  The default value is
2709 @code{font-lock-default-fontify-region}.
2710 @end defvar
2712 @defvar font-lock-unfontify-region-function
2713 Function to use for unfontifying a region.  It should take two
2714 arguments, the beginning and end of the region.  The default value is
2715 @code{font-lock-default-unfontify-region}.
2716 @end defvar
2718 @defvar font-lock-lines-before
2719 This variable specifies the number of extra lines to consider when
2720 refontifying the buffer after each text change.  Font lock begins
2721 refontifying from that number of lines before the changed region.  The
2722 default is 1, but using a larger value can be useful for coping with
2723 multi-line patterns.
2724 @end defvar
2726 @ignore
2727 @defvar font-lock-inhibit-thing-lock
2728 List of Font Lock mode related modes that should not be turned on.
2729 Currently, valid mode names are @code{fast-lock-mode},
2730 @code{jit-lock-mode} and @code{lazy-lock-mode}.
2731 @end defvar
2732 @end ignore
2734 @node Levels of Font Lock
2735 @subsection Levels of Font Lock
2737   Many major modes offer three different levels of fontification.  You
2738 can define multiple levels by using a list of symbols for @var{keywords}
2739 in @code{font-lock-defaults}.  Each symbol specifies one level of
2740 fontification; it is up to the user to choose one of these levels.  The
2741 chosen level's symbol value is used to initialize
2742 @code{font-lock-keywords}.
2744   Here are the conventions for how to define the levels of
2745 fontification:
2747 @itemize @bullet
2748 @item
2749 Level 1: highlight function declarations, file directives (such as include or
2750 import directives), strings and comments.  The idea is speed, so only
2751 the most important and top-level components are fontified.
2753 @item
2754 Level 2: in addition to level 1, highlight all language keywords,
2755 including type names that act like keywords, as well as named constant
2756 values.  The idea is that all keywords (either syntactic or semantic)
2757 should be fontified appropriately.
2759 @item
2760 Level 3: in addition to level 2, highlight the symbols being defined in
2761 function and variable declarations, and all builtin function names,
2762 wherever they appear.
2763 @end itemize
2765 @node Precalculated Fontification
2766 @subsection Precalculated Fontification
2768   In addition to using @code{font-lock-defaults} for search-based
2769 fontification, you may use the special character property
2770 @code{font-lock-face} (@pxref{Special Properties}).  This property
2771 acts just like the explicit @code{face} property, but its activation
2772 is toggled when the user calls @kbd{M-x font-lock-mode}.  Using
2773 @code{font-lock-face} is especially convenient for special modes
2774 which construct their text programmatically, such as
2775 @code{list-buffers} and @code{occur}.
2777 If your mode does not use any of the other machinery of Font Lock
2778 (i.e. it only uses the @code{font-lock-face} property), it should not
2779 set the variable @code{font-lock-defaults}.  That way, it will not
2780 cause loading of the @file{font-lock} library.
2782 @node Faces for Font Lock
2783 @subsection Faces for Font Lock
2785   You can make Font Lock mode use any face, but several faces are
2786 defined specifically for Font Lock mode.  Each of these symbols is both
2787 a face name, and a variable whose default value is the symbol itself.
2788 Thus, the default value of @code{font-lock-comment-face} is
2789 @code{font-lock-comment-face}.  This means you can write
2790 @code{font-lock-comment-face} in a context such as
2791 @code{font-lock-keywords} where a face-name-valued expression is used.
2793 @table @code
2794 @item font-lock-comment-face
2795 @vindex font-lock-comment-face
2796 Used (typically) for comments.
2798 @item font-lock-comment-delimiter-face
2799 @vindex font-lock-comment-delimiter-face
2800 Used (typically) for comments delimiters.
2802 @item font-lock-doc-face
2803 @vindex font-lock-doc-face
2804 Used (typically) for documentation strings in the code.
2806 @item font-lock-string-face
2807 @vindex font-lock-string-face
2808 Used (typically) for string constants.
2810 @item font-lock-keyword-face
2811 @vindex font-lock-keyword-face
2812 Used (typically) for keywords---names that have special syntactic
2813 significance, like @code{for} and @code{if} in C.
2815 @item font-lock-builtin-face
2816 @vindex font-lock-builtin-face
2817 Used (typically) for built-in function names.
2819 @item font-lock-function-name-face
2820 @vindex font-lock-function-name-face
2821 Used (typically) for the name of a function being defined or declared,
2822 in a function definition or declaration.
2824 @item font-lock-variable-name-face
2825 @vindex font-lock-variable-name-face
2826 Used (typically) for the name of a variable being defined or declared,
2827 in a variable definition or declaration.
2829 @item font-lock-type-face
2830 @vindex font-lock-type-face
2831 Used (typically) for names of user-defined data types,
2832 where they are defined and where they are used.
2834 @item font-lock-constant-face
2835 @vindex font-lock-constant-face
2836 Used (typically) for constant names.
2838 @item font-lock-preprocessor-face
2839 @vindex font-lock-preprocessor-face
2840 Used (typically) for preprocessor commands.
2842 @item font-lock-warning-face
2843 @vindex font-lock-warning-face
2844 Used (typically) for constructs that are peculiar, or that greatly
2845 change the meaning of other text.  For example, this is used for
2846 @samp{;;;###autoload} cookies in Emacs Lisp, and for @code{#error}
2847 directives in C.
2848 @end table
2850 @node Syntactic Font Lock
2851 @subsection Syntactic Font Lock
2853 Syntactic fontification uses the syntax table to find comments and
2854 string constants (@pxref{Syntax Tables}).  It highlights them using
2855 @code{font-lock-comment-face} and @code{font-lock-string-face}
2856 (@pxref{Faces for Font Lock}).  There are several variables that
2857 affect syntactic fontification; you should set them by means of
2858 @code{font-lock-defaults} (@pxref{Font Lock Basics}).
2860 @defvar font-lock-keywords-only
2861 Non-@code{nil} means Font Lock should not do syntactic fontification;
2862 it should only fontify based on @code{font-lock-keywords}.  The normal
2863 way for a mode to set this variable to @code{t} is with
2864 @var{keywords-only} in @code{font-lock-defaults}.
2865 @end defvar
2867 @defvar font-lock-syntax-table
2868 This variable holds the syntax table to use for fontification of
2869 comments and strings.  Specify it using @var{syntax-alist} in
2870 @code{font-lock-defaults}.
2871 @end defvar
2873 @c ???
2874 @c The docstring says that font-lock-syntax-table is semi-obsolete.
2875 @c How the alternative should be used is not clear.  --lute
2877 @defvar font-lock-beginning-of-syntax-function
2878 If this variable is non-@code{nil}, it should be a function to move
2879 point back to a position that is syntactically at ``top level'' and
2880 outside of strings or comments.  Font Lock uses this when necessary
2881 to get the right results for syntactic fontification.
2883 This function is called with no arguments.  It should leave point at
2884 the beginning of any enclosing syntactic block.  Typical values are
2885 @code{beginning-of-line} (used when the start of the line is known to
2886 be outside a syntactic block), or @code{beginning-of-defun} for
2887 programming modes, or @code{backward-paragraph} for textual modes.
2889 If the value is @code{nil}, the beginning of the buffer is used as a
2890 position outside of a syntactic block.  This cannot be wrong, but it
2891 can be slow.
2893 Specify this variable using @var{syntax-begin} in
2894 @code{font-lock-defaults}.
2895 @end defvar
2897 @defvar font-lock-syntactic-face-function
2898 A function to determine which face to use for a given syntactic
2899 element (a string or a comment).  The function is called with one
2900 argument, the parse state at point returned by
2901 @code{parse-partial-sexp}, and should return a face.  The default
2902 value returns @code{font-lock-comment-face} for comments and
2903 @code{font-lock-string-face} for strings.
2905 This can be used to highlighting different kinds of strings or
2906 comments differently.  It is also sometimes abused together with
2907 @code{font-lock-syntactic-keywords} to highlight elements that span
2908 multiple lines, but this is too obscure to document in this manual.
2910 Specify this variable using @var{other-vars} in
2911 @code{font-lock-defaults}.
2912 @end defvar
2914 @node Setting Syntax Properties
2915 @subsection Setting Syntax Properties
2917   Font Lock mode can be used to update @code{syntax-table} properties
2918 automatically (@pxref{Syntax Properties}).  This is useful in
2919 languages for which a single syntax table by itself is not sufficient.
2921 @defvar font-lock-syntactic-keywords
2922 This variable enables and controls updating @code{syntax-table}
2923 properties by Font Lock.  Its value should be a list of elements of
2924 this form:
2926 @example
2927 (@var{matcher} @var{subexp} @var{syntax} @var{override} @var{laxmatch})
2928 @end example
2930 The parts of this element have the same meanings as in the corresponding
2931 sort of element of @code{font-lock-keywords},
2933 @example
2934 (@var{matcher} @var{subexp} @var{facespec} @var{override} @var{laxmatch})
2935 @end example
2937 However, instead of specifying the value @var{facespec} to use for the
2938 @code{face} property, it specifies the value @var{syntax} to use for
2939 the @code{syntax-table} property.  Here, @var{syntax} can be a string
2940 (as taken by @code{modify-syntax-entry}), a syntax table, a cons cell
2941 (as returned by @code{string-to-syntax}), or an expression whose value
2942 is one of those two types.  @var{override} cannot be @code{prepend} or
2943 @code{append}.
2945 For example, an element of the form:
2947 @example
2948 ("\\$\\(#\\)" 1 ".")
2949 @end example
2951 highlights syntactically a hash character when following a dollar
2952 character, with a SYNTAX of @code{"."} (meaning punctuation syntax).
2953 Assuming that the buffer syntax table specifies hash characters to
2954 have comment start syntax, the element will only highlight hash
2955 characters that do not follow dollar characters as comments
2956 syntactically.
2958 An element of the form:
2960 @example
2961  ("\\('\\).\\('\\)"
2962   (1 "\"")
2963   (2 "\""))
2964 @end example
2966 highlights syntactically both single quotes which surround a single
2967 character, with a SYNTAX of @code{"\""} (meaning string quote syntax).
2968 Assuming that the buffer syntax table does not specify single quotes
2969 to have quote syntax, the element will only highlight single quotes of
2970 the form @samp{'@var{c}'} as strings syntactically.  Other forms, such
2971 as @samp{foo'bar} or @samp{'fubar'}, will not be highlighted as
2972 strings.
2974 Major modes normally set this variable with @var{other-vars} in
2975 @code{font-lock-defaults}.
2976 @end defvar
2978 @node Desktop Save Mode
2979 @section Desktop Save Mode
2980 @cindex desktop save mode
2982 @dfn{Desktop Save Mode} is a feature to save the state of Emacs from
2983 one session to another.  The user-level commands for using Desktop
2984 Save Mode are described in the GNU Emacs Manual (@pxref{Saving Emacs
2985 Sessions,,, emacs, the GNU Emacs Manual}).  Modes whose buffers visit
2986 a file, don't have to do anything to use this feature.
2988 For buffers not visiting a file to have their state saved, the major
2989 mode must bind the buffer local variable @code{desktop-save-buffer} to
2990 a non-@code{nil} value.
2992 @defvar desktop-save-buffer
2993 If this buffer-local variable is non-@code{nil}, the buffer will have
2994 its state saved in the desktop file at desktop save.  If the value is
2995 a function, it is called at desktop save with argument
2996 @var{desktop-dirname}, and its value is saved in the desktop file along
2997 with the state of the buffer for which it was called.  When file names
2998 are returned as part of the auxiliary information, they should be
2999 formatted using the call
3001 @example
3002 (desktop-file-name @var{file-name} @var{desktop-dirname})
3003 @end example
3005 @end defvar
3007 For buffers not visiting a file to be restored, the major mode must
3008 define a function to do the job, and that function must be listed in
3009 the alist @code{desktop-buffer-mode-handlers}.
3011 @defvar desktop-buffer-mode-handlers
3012 Alist with elements
3014 @example
3015 (@var{major-mode} . @var{restore-buffer-function})
3016 @end example
3018 The function @var{restore-buffer-function} will be called with
3019 argument list
3021 @example
3022 (@var{buffer-file-name} @var{buffer-name} @var{desktop-buffer-misc})
3023 @end example
3025 and it should return the restored buffer.
3026 Here @var{desktop-buffer-misc} is the value returned by the function
3027 optionally bound to @code{desktop-save-buffer}.
3028 @end defvar
3030 @ignore
3031    arch-tag: 4c7bff41-36e6-4da6-9e7f-9b9289e27c8e
3032 @end ignore