Go to the first, previous, next, last section, table of contents.


Texinfo mode

texinfo-mode is used to edit Texinfo source files, it is automatically selected for files ending in `.texi' or `.texinfo'. It provides a few basic key bindings to take some of the tedium out of editing these files.

Paragraphs are separated by the regexp `^@node', i.e. each node is a separate paragraph.

The special commands are,

TAB
Inserts as many spaces as are needed to move the cursor to the next tab position. The reason tab characters aren't used is that TeX doesn't agree with them.
Ctrl-c Ctrl-c c
Insert the string `@code{}', positioning the cursor between the braces.
Ctrl-c Ctrl-c d
Insert the string `@dfn{}', positioning the cursor between the braces.
Ctrl-c Ctrl-c e
Inserts the string `@end'.
Ctrl-c Ctrl-c f
Inserts the string `@file{}', the cursor is put between the braces.
Ctrl-c Ctrl-c i
Inserts the string `@item'.
Ctrl-c Ctrl-c l
Inserts the string `@lisp\n'.
Ctrl-c Ctrl-c m
Inserts the string `@menu\n'.
Ctrl-c Ctrl-c Ctrl-m
Prompts for the name of a node and makes a menu-item for it.
Ctrl-c Ctrl-c n
Prompts for each part of a node definition (name, next, prev, up) and inserts the `@node ...' string needed.
Ctrl-c Ctrl-c s
Inserts the string `@samp{}' and puts the cursor between the braces.
Ctrl-c Ctrl-c v
Inserts the string `@var{}', the cursor is put between the braces.
Ctrl-c Ctrl-c {
Inserts a pair of braces with the cursor between them.
Ctrl-c Ctrl-c }
Ctrl-c Ctrl-c ]
Moves the cursor to the character after the next closing brace.

Command: texinfo-mode
Major mode for editing Texinfo source files.

Hook: texinfo-mode-hook
Evaluated when texinfo-mode is invoked. The hook text-mode-hook is evaluated first.


Go to the first, previous, next, last section, table of contents.