]> code.delx.au - gnu-emacs/blob - lisp/textmodes/texinfo.el
Convert several major modes to setq-local.
[gnu-emacs] / lisp / textmodes / texinfo.el
1 ;;; texinfo.el --- major mode for editing Texinfo files -*- coding: utf-8 -*-
2
3 ;; Copyright (C) 1985, 1988-1993, 1996-1997, 2000-2012
4 ;; Free Software Foundation, Inc.
5
6 ;; Author: Robert J. Chassell
7 ;; Date: [See date below for texinfo-version]
8 ;; Maintainer: FSF
9 ;; Keywords: maint, tex, docs
10
11 ;; This file is part of GNU Emacs.
12
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
17
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25
26 ;;; Todo:
27
28 ;; - facemenu support.
29 ;; - command completion.
30
31 ;;; Commentary:
32
33 ;;; Code:
34
35 (eval-when-compile (require 'tex-mode))
36 (declare-function tex-buffer "tex-mode" ())
37 (declare-function tex-region "tex-mode" (beg end))
38 (declare-function tex-send-command "tex-mode")
39 (declare-function tex-recenter-output-buffer "tex-mode" (linenum))
40 (declare-function tex-print "tex-mode" (&optional alt))
41 (declare-function tex-view "tex-mode" ())
42 (declare-function tex-shell-running "tex-mode" ())
43 (declare-function tex-kill-job "tex-mode" ())
44
45 (defvar outline-heading-alist)
46
47 (defgroup texinfo nil
48 "Texinfo Mode."
49 :link '(custom-group-link :tag "Font Lock Faces group" font-lock-faces)
50 :group 'docs)
51
52 ;;;###autoload
53 (defcustom texinfo-open-quote (purecopy "``")
54 "String inserted by typing \\[texinfo-insert-quote] to open a quotation."
55 :type 'string
56 :group 'texinfo)
57
58 ;;;###autoload
59 (defcustom texinfo-close-quote (purecopy "''")
60 "String inserted by typing \\[texinfo-insert-quote] to close a quotation."
61 :type 'string
62 :group 'texinfo)
63
64 (defcustom texinfo-mode-hook nil
65 "Normal hook run when entering Texinfo mode."
66 :type 'hook
67 :options '(turn-on-auto-fill flyspell-mode)
68 :group 'texinfo)
69
70 \f
71 ;;; Autoloads:
72
73 (autoload 'makeinfo-region
74 "makeinfo"
75 "Make Info file from region of current Texinfo file, and switch to it.
76
77 This command does not offer the `next-error' feature since it would
78 apply to a temporary file, not the original; use the `makeinfo-buffer'
79 command to gain use of `next-error'."
80 t nil)
81
82 (autoload 'makeinfo-buffer
83 "makeinfo"
84 "Make Info file from current buffer.
85
86 Use the \\[next-error] command to move to the next error
87 \(if there are errors\)."
88 t nil)
89
90 (autoload 'kill-compilation
91 "compile"
92 "Kill the process made by the \\[compile] command."
93 t nil)
94
95 (autoload 'makeinfo-recenter-compilation-buffer
96 "makeinfo"
97 "Redisplay `*compilation*' buffer so most recent output can be seen.
98 The last line of the buffer is displayed on
99 line LINE of the window, or centered if LINE is nil."
100 t nil)
101
102 (autoload 'texinfo-update-node
103 "texnfo-upd"
104 "Without any prefix argument, update the node in which point is located.
105 Non-nil argument (prefix, if interactive) means update the nodes in the
106 marked region.
107
108 The functions for creating or updating nodes and menus, and their
109 keybindings, are:
110
111 `texinfo-update-node' (&optional region-p) \\[texinfo-update-node]
112 `texinfo-every-node-update' () \\[texinfo-every-node-update]
113 `texinfo-sequential-node-update' (&optional region-p)
114
115 `texinfo-make-menu' (&optional region-p) \\[texinfo-make-menu]
116 `texinfo-all-menus-update' () \\[texinfo-all-menus-update]
117 `texinfo-master-menu' ()
118
119 `texinfo-indent-menu-description' (column &optional region-p)
120
121 The `texinfo-column-for-description' variable specifies the column to
122 which menu descriptions are indented. Its default value is 32."
123 t nil)
124
125 (autoload 'texinfo-every-node-update
126 "texnfo-upd"
127 "Update every node in a Texinfo file."
128 t nil)
129
130 (autoload 'texinfo-sequential-node-update
131 "texnfo-upd"
132 "Update one node (or many) in a Texinfo file with sequential pointers.
133
134 This function causes the `Next' or `Previous' pointer to point to the
135 immediately preceding or following node, even if it is at a higher or
136 lower hierarchical level in the document. Continually pressing `n' or
137 `p' takes you straight through the file.
138
139 Without any prefix argument, update the node in which point is located.
140 Non-nil argument (prefix, if interactive) means update the nodes in the
141 marked region.
142
143 This command makes it awkward to navigate among sections and
144 subsections; it should be used only for those documents that are meant
145 to be read like a novel rather than a reference, and for which the
146 Info `g*' command is inadequate."
147 t nil)
148
149 (autoload 'texinfo-make-menu
150 "texnfo-upd"
151 "Without any prefix argument, make or update a menu.
152 Make the menu for the section enclosing the node found following point.
153
154 Non-nil argument (prefix, if interactive) means make or update menus
155 for nodes within or part of the marked region.
156
157 Whenever a menu exists, and is being updated, the descriptions that
158 are associated with node names in the pre-existing menu are
159 incorporated into the new menu. Otherwise, the nodes' section titles
160 are inserted as descriptions."
161 t nil)
162
163 (autoload 'texinfo-all-menus-update
164 "texnfo-upd"
165 "Update every regular menu in a Texinfo file.
166 Remove pre-existing master menu, if there is one.
167
168 If called with a non-nil argument, this function first updates all the
169 nodes in the buffer before updating the menus."
170 t nil)
171
172 (autoload 'texinfo-master-menu
173 "texnfo-upd"
174 "Make a master menu for a whole Texinfo file.
175 Non-nil argument (prefix, if interactive) means first update all
176 existing nodes and menus. Remove pre-existing master menu, if there is one.
177
178 This function creates a master menu that follows the top node. The
179 master menu includes every entry from all the other menus. It
180 replaces any existing ordinary menu that follows the top node.
181
182 If called with a non-nil argument, this function first updates all the
183 menus in the buffer (incorporating descriptions from pre-existing
184 menus) before it constructs the master menu.
185
186 The function removes the detailed part of an already existing master
187 menu. This action depends on the pre-existing master menu using the
188 standard `texinfo-master-menu-header'.
189
190 The master menu has the following format, which is adapted from the
191 recommendation in the Texinfo Manual:
192
193 * The first part contains the major nodes in the Texinfo file: the
194 nodes for the chapters, chapter-like sections, and the major
195 appendices. This includes the indices, so long as they are in
196 chapter-like sections, such as unnumbered sections.
197
198 * The second and subsequent parts contain a listing of the other,
199 lower level menus, in order. This way, an inquirer can go
200 directly to a particular node if he or she is searching for
201 specific information.
202
203 Each of the menus in the detailed node listing is introduced by the
204 title of the section containing the menu."
205 t nil)
206
207 (autoload 'texinfo-indent-menu-description
208 "texnfo-upd"
209 "Indent every description in menu following point to COLUMN.
210 Non-nil argument (prefix, if interactive) means indent every
211 description in every menu in the region. Does not indent second and
212 subsequent lines of a multi-line description."
213 t nil)
214
215 (autoload 'texinfo-insert-node-lines
216 "texnfo-upd"
217 "Insert missing `@node' lines in region of Texinfo file.
218 Non-nil argument (prefix, if interactive) means also to insert the
219 section titles as node names; and also to insert the section titles as
220 node names in pre-existing @node lines that lack names."
221 t nil)
222
223 (autoload 'texinfo-start-menu-description
224 "texnfo-upd"
225 "In this menu entry, insert the node's section title as a description.
226 Position point at beginning of description ready for editing.
227 Do not insert a title if the line contains an existing description.
228
229 You will need to edit the inserted text since a useful description
230 complements the node name rather than repeats it as a title does."
231 t nil)
232
233 (autoload 'texinfo-multiple-files-update
234 "texnfo-upd"
235 "Update first node pointers in each file included in OUTER-FILE;
236 create or update main menu in the outer file that refers to such nodes.
237 This does not create or update menus or pointers within the included files.
238
239 With optional MAKE-MASTER-MENU argument (prefix arg, if interactive),
240 insert a master menu in OUTER-FILE. This does not create or update
241 menus or pointers within the included files.
242
243 With optional UPDATE-EVERYTHING argument (numeric prefix arg, if
244 interactive), update all the menus and all the `Next', `Previous', and
245 `Up' pointers of all the files included in OUTER-FILE before inserting
246 a master menu in OUTER-FILE.
247
248 The command also updates the `Top' level node pointers of OUTER-FILE.
249
250 Notes:
251
252 * this command does NOT save any files--you must save the
253 outer file and any modified, included files.
254
255 * except for the `Top' node, this command does NOT handle any
256 pre-existing nodes in the outer file; hence, indices must be
257 enclosed in an included file.
258
259 Requirements:
260
261 * each of the included files must contain exactly one highest
262 hierarchical level node,
263 * this highest node must be the first node in the included file,
264 * each highest hierarchical level node must be of the same type.
265
266 Thus, normally, each included file contains one, and only one,
267 chapter."
268 t nil)
269
270 \f
271 ;;; Code:
272
273 ;;; Don't you dare insert any `require' calls at top level in this file--rms.
274
275 (defvar texinfo-section-list
276 '(("top" 1)
277 ("chapter" 2)
278 ("section" 3)
279 ("subsection" 4)
280 ("subsubsection" 5)
281 ("unnumbered" 2)
282 ("unnumberedsec" 3)
283 ("unnumberedsubsec" 4)
284 ("unnumberedsubsubsec" 5)
285 ("appendix" 2)
286 ("appendixsec" 3)
287 ("appendixsection" 3)
288 ("appendixsubsec" 4)
289 ("appendixsubsubsec" 5)
290 ("majorheading" 2)
291 ("chapheading" 2)
292 ("heading" 3)
293 ("subheading" 4)
294 ("subsubheading" 5))
295 "Alist of sectioning commands and their relative level.")
296
297 ;;; Syntax table
298
299 (defvar texinfo-mode-syntax-table
300 (let ((st (make-syntax-table)))
301 (modify-syntax-entry ?\" "." st)
302 (modify-syntax-entry ?\\ "." st)
303 (modify-syntax-entry ?@ "\\" st)
304 (modify-syntax-entry ?\^q "\\" st)
305 (modify-syntax-entry ?\[ "(]" st)
306 (modify-syntax-entry ?\] ")[" st)
307 (modify-syntax-entry ?{ "(}" st)
308 (modify-syntax-entry ?} "){" st)
309 (modify-syntax-entry ?\n ">" st)
310 (modify-syntax-entry ?\' "w" st)
311 st))
312
313 ;; Written by Wolfgang Bangerth <zcg51122@rpool1.rus.uni-stuttgart.de>
314 ;; To override this example, set either `imenu-generic-expression'
315 ;; or `imenu-create-index-function'.
316 (defvar texinfo-imenu-generic-expression
317 '((nil "^@\\(node\\|anchor\\)[ \t]+\\([^,\n]*\\)" 2)
318 ("Chapters" "^@chapter[ \t]+\\(.*\\)$" 1))
319 "Imenu generic expression for Texinfo mode. See `imenu-generic-expression'.")
320
321 (defconst texinfo-syntax-propertize-function
322 (syntax-propertize-rules
323 ("\\(@\\)c\\(omment\\)?\\>" (1 "<"))
324 ("^\\(@\\)ignore\\>" (1 "< b"))
325 ("^@end ignore\\(\n\\)" (1 "> b")))
326 "Syntactic keywords to catch comment delimiters in `texinfo-mode'.")
327
328 (defconst texinfo-environments
329 '("cartouche" "copying" "defcv" "deffn" "defivar" "defmac"
330 "defmethod" "defop" "defopt" "defspec" "deftp" "deftypecv"
331 "deftypefn" "deftypefun" "deftypeivar" "deftypemethod"
332 "deftypeop" "deftypevar" "deftypevr" "defun" "defvar"
333 "defvr" "description" "detailmenu" "direntry" "display"
334 "documentdescription" "enumerate" "example" "flushleft"
335 "flushright" "format" "ftable" "group" "html" "ifclear" "ifset"
336 "ifhtml" "ifinfo" "ifnothtml" "ifnotinfo" "ifnotplaintext"
337 "ifnottex" "ifplaintext" "iftex" "ignore" "itemize" "lisp"
338 "macro" "menu" "multitable" "quotation" "smalldisplay"
339 "smallexample" "smallformat" "smalllisp" "table" "tex"
340 "titlepage" "verbatim" "vtable")
341 "List of Texinfo environments.")
342
343 (defconst texinfo-environment-regexp
344 (concat "^@" (regexp-opt (cons "end" texinfo-environments) t) "\\>")
345 "Regexp for environment-like Texinfo list commands.
346 Subexpression 1 is what goes into the corresponding `@end' statement.")
347
348 (defface texinfo-heading
349 '((t (:inherit font-lock-function-name-face)))
350 "Face used for section headings in `texinfo-mode'."
351 :group 'texinfo)
352 (define-obsolete-face-alias 'texinfo-heading-face 'texinfo-heading "22.1")
353 (defvar texinfo-heading-face 'texinfo-heading)
354
355 (defvar texinfo-font-lock-keywords
356 `(;; All but the first had an OVERRIDE of t.
357 ;; It didn't seem to be any better, and it's slower--simon.
358 ;; Robert J. Chassell <bob@gnu.org> says remove this line.
359 ;;("\\$\\([^$]*\\)\\$" 1 font-lock-string-face t)
360 ("@\\([a-zA-Z]+\\|[^ \t\n]\\)" 1 font-lock-keyword-face) ;commands
361 ("^\\*\\([^\n:]*\\)" 1 font-lock-function-name-face t) ;menu items
362 ("@\\(emph\\|i\\|sc\\){\\([^}]+\\)" 2 'italic)
363 ("@\\(strong\\|b\\){\\([^}]+\\)" 2 'bold)
364 ("@\\(kbd\\|key\\|url\\|uref\\){\\([^}]+\\)" 2 font-lock-string-face)
365 ;; The following two groups have an OVERRIDE of `keep' because
366 ;; their arguments frequently include a @@, and we don't want that
367 ;; to overwrite the normal fontification of the argument.
368 ("@\\(file\\|email\\){\\([^}]+\\)" 2 font-lock-string-face keep)
369 ("@\\(samp\\|code\\|var\\|math\\|env\\|command\\|option\\){\\([^}]+\\)"
370 2 font-lock-variable-name-face keep)
371 ("@\\(cite\\|x?ref\\|pxref\\|dfn\\|inforef\\){\\([^}]+\\)"
372 2 font-lock-constant-face)
373 ("@\\(anchor\\){\\([^}]+\\)" 2 font-lock-type-face)
374 ("@\\(dmn\\|acronym\\|value\\){\\([^}]+\\)" 2 font-lock-builtin-face)
375 ("@\\(end\\|itemx?\\) +\\(.+\\)" 2 font-lock-keyword-face keep)
376 ;; (,texinfo-environment-regexp
377 ;; 1 (texinfo-clone-environment (match-beginning 1) (match-end 1)) keep)
378 (,(concat "^@" (regexp-opt (mapcar 'car texinfo-section-list) t)
379 ".*\n") 0 texinfo-heading-face t))
380 "Additional expressions to highlight in Texinfo mode.")
381
382 (defun texinfo-clone-environment (start end)
383 (let ((endp nil))
384 (save-excursion
385 (ignore-errors
386 (goto-char start)
387 (when (looking-at "end\\Sw+\\(\\sw+\\)")
388 (setq endp t start (match-beginning 1) end (match-end 1)))
389 (unless (get-char-property start 'text-clones)
390 (if endp
391 (texinfo-last-unended-begin)
392 (forward-word 1)
393 (texinfo-next-unmatched-end))
394 (skip-syntax-forward "^w")
395 (when (looking-at
396 (concat (regexp-quote (buffer-substring start end)) "\\>"))
397 (text-clone-create start end 'spread "\\w*")))))))
398
399 \f
400 ;;; Keybindings
401
402 ;;; Keys common both to Texinfo mode and to TeX shell.
403
404 (defun texinfo-define-common-keys (keymap)
405 "Define the keys both in Texinfo mode and in the texinfo-tex-shell."
406 (define-key keymap "\C-c\C-t\C-k" 'tex-kill-job)
407 (define-key keymap "\C-c\C-t\C-x" 'texinfo-quit-job)
408 (define-key keymap "\C-c\C-t\C-l" 'tex-recenter-output-buffer)
409 (define-key keymap "\C-c\C-t\C-d" 'texinfo-delete-from-print-queue)
410 (define-key keymap "\C-c\C-t\C-q" 'tex-show-print-queue)
411 (define-key keymap "\C-c\C-t\C-p" 'texinfo-tex-print)
412 (define-key keymap "\C-c\C-t\C-v" 'texinfo-tex-view)
413 (define-key keymap "\C-c\C-t\C-i" 'texinfo-texindex)
414
415 (define-key keymap "\C-c\C-t\C-r" 'texinfo-tex-region)
416 (define-key keymap "\C-c\C-t\C-b" 'texinfo-tex-buffer))
417
418 ;; Mode documentation displays commands in reverse order
419 ;; from how they are listed in the texinfo-mode-map.
420
421 (defvar texinfo-mode-map
422 (let ((map (make-sparse-keymap)))
423
424 ;; bindings for `texnfo-tex.el'
425 (texinfo-define-common-keys map)
426
427 (define-key map "\"" 'texinfo-insert-quote)
428
429 ;; bindings for `makeinfo.el'
430 (define-key map "\C-c\C-m\C-k" 'kill-compilation)
431 (define-key map "\C-c\C-m\C-l"
432 'makeinfo-recenter-compilation-buffer)
433 (define-key map "\C-c\C-m\C-r" 'makeinfo-region)
434 (define-key map "\C-c\C-m\C-b" 'makeinfo-buffer)
435
436 ;; bindings for `texinfmt.el'
437 (define-key map "\C-c\C-e\C-r" 'texinfo-format-region)
438 (define-key map "\C-c\C-e\C-b" 'texinfo-format-buffer)
439
440 ;; AUCTeX-like bindings
441 (define-key map "\e\r" 'texinfo-insert-@item)
442
443 ;; bindings for updating nodes and menus
444
445 (define-key map "\C-c\C-um" 'texinfo-master-menu)
446
447 (define-key map "\C-c\C-u\C-m" 'texinfo-make-menu)
448 (define-key map "\C-c\C-u\C-n" 'texinfo-update-node)
449 (define-key map "\C-c\C-u\C-e" 'texinfo-every-node-update)
450 (define-key map "\C-c\C-u\C-a" 'texinfo-all-menus-update)
451
452 (define-key map "\C-c\C-s" 'texinfo-show-structure)
453
454 (define-key map "\C-c}" 'up-list)
455 ;; FIXME: This is often used for "close block" aka texinfo-insert-@end.
456 (define-key map "\C-c]" 'up-list)
457 (define-key map "\C-c/" 'texinfo-insert-@end)
458 (define-key map "\C-c{" 'texinfo-insert-braces)
459
460 ;; bindings for inserting strings
461 (define-key map "\C-c\C-o" 'texinfo-insert-block)
462 (define-key map "\C-c\C-c\C-d" 'texinfo-start-menu-description)
463 (define-key map "\C-c\C-c\C-s" 'texinfo-insert-@strong)
464 (define-key map "\C-c\C-c\C-e" 'texinfo-insert-@emph)
465
466 (define-key map "\C-c\C-cv" 'texinfo-insert-@var)
467 (define-key map "\C-c\C-cu" 'texinfo-insert-@uref)
468 (define-key map "\C-c\C-ct" 'texinfo-insert-@table)
469 (define-key map "\C-c\C-cs" 'texinfo-insert-@samp)
470 (define-key map "\C-c\C-cq" 'texinfo-insert-@quotation)
471 (define-key map "\C-c\C-co" 'texinfo-insert-@noindent)
472 (define-key map "\C-c\C-cn" 'texinfo-insert-@node)
473 (define-key map "\C-c\C-cm" 'texinfo-insert-@email)
474 (define-key map "\C-c\C-ck" 'texinfo-insert-@kbd)
475 (define-key map "\C-c\C-ci" 'texinfo-insert-@item)
476 (define-key map "\C-c\C-cf" 'texinfo-insert-@file)
477 (define-key map "\C-c\C-cx" 'texinfo-insert-@example)
478 (define-key map "\C-c\C-ce" 'texinfo-insert-@end)
479 (define-key map "\C-c\C-cd" 'texinfo-insert-@dfn)
480 (define-key map "\C-c\C-cc" 'texinfo-insert-@code)
481 map))
482
483 (easy-menu-define texinfo-mode-menu
484 texinfo-mode-map
485 "Menu used for `texinfo-mode'."
486 '("Texinfo"
487 ["Insert block" texinfo-insert-block t]
488 ;; ["Insert node" texinfo-insert-@node t]
489 "----"
490 ["Update All" (lambda () (interactive) (texinfo-master-menu t))
491 :keys "\\[universal-argument] \\[texinfo-master-menu]"]
492 ["Update every node" texinfo-every-node-update t]
493 ["Update node" texinfo-update-node t]
494 ["Make Master menu" texinfo-master-menu t]
495 ["Make menu" texinfo-make-menu t]
496 ["Update all menus" texinfo-all-menus-update t]
497 "----"
498 ["Show structure" texinfo-show-structure t]
499 ["Format region" texinfo-format-region t]
500 ["Format buffer" texinfo-format-buffer t]
501 ["Makeinfo region" makeinfo-region t]
502 ["Makeinfo buffer" makeinfo-buffer t]))
503
504 \f
505 (defun texinfo-filter (section list)
506 (let (res)
507 (dolist (x list) (if (eq section (cadr x)) (push (car x) res)))
508 res))
509
510 (defvar texinfo-chapter-level-regexp
511 (regexp-opt (texinfo-filter 2 texinfo-section-list))
512 "Regular expression matching just the Texinfo chapter level headings.")
513
514 ;;; Texinfo mode
515
516 ;;;###autoload
517 (define-derived-mode texinfo-mode text-mode "Texinfo"
518 "Major mode for editing Texinfo files.
519
520 It has these extra commands:
521 \\{texinfo-mode-map}
522
523 These are files that are used as input for TeX to make printed manuals
524 and also to be turned into Info files with \\[makeinfo-buffer] or
525 the `makeinfo' program. These files must be written in a very restricted and
526 modified version of TeX input format.
527
528 Editing commands are like text-mode except that the syntax table is
529 set up so expression commands skip Texinfo bracket groups. To see
530 what the Info version of a region of the Texinfo file will look like,
531 use \\[makeinfo-region], which runs `makeinfo' on the current region.
532
533 You can show the structure of a Texinfo file with \\[texinfo-show-structure].
534 This command shows the structure of a Texinfo file by listing the
535 lines with the @-sign commands for @chapter, @section, and the like.
536 These lines are displayed in another window called the *Occur* window.
537 In that window, you can position the cursor over one of the lines and
538 use \\[occur-mode-goto-occurrence], to jump to the corresponding spot
539 in the Texinfo file.
540
541 In addition, Texinfo mode provides commands that insert various
542 frequently used @-sign commands into the buffer. You can use these
543 commands to save keystrokes. And you can insert balanced braces with
544 \\[texinfo-insert-braces] and later use the command \\[up-list] to
545 move forward past the closing brace.
546
547 Also, Texinfo mode provides functions for automatically creating or
548 updating menus and node pointers. These functions
549
550 * insert the `Next', `Previous' and `Up' pointers of a node,
551 * insert or update the menu for a section, and
552 * create a master menu for a Texinfo source file.
553
554 Here are the functions:
555
556 texinfo-update-node \\[texinfo-update-node]
557 texinfo-every-node-update \\[texinfo-every-node-update]
558 texinfo-sequential-node-update
559
560 texinfo-make-menu \\[texinfo-make-menu]
561 texinfo-all-menus-update \\[texinfo-all-menus-update]
562 texinfo-master-menu
563
564 texinfo-indent-menu-description (column &optional region-p)
565
566 The `texinfo-column-for-description' variable specifies the column to
567 which menu descriptions are indented.
568
569 Passed an argument (a prefix argument, if interactive), the
570 `texinfo-update-node' and `texinfo-make-menu' functions do their jobs
571 in the region.
572
573 To use the updating commands, you must structure your Texinfo file
574 hierarchically, such that each `@node' line, with the exception of the
575 Top node, is accompanied by some kind of section line, such as an
576 `@chapter' or `@section' line.
577
578 If the file has a `top' node, it must be called `top' or `Top' and
579 be the first node in the file.
580
581 Entering Texinfo mode calls the value of `text-mode-hook', and then the
582 value of `texinfo-mode-hook'."
583 (setq-local page-delimiter
584 (concat "^@node [ \t]*[Tt]op\\|^@\\("
585 texinfo-chapter-level-regexp
586 "\\)\\>"))
587 (setq-local require-final-newline mode-require-final-newline)
588 (setq-local indent-tabs-mode nil)
589 (setq-local paragraph-separate
590 (concat "\b\\|@[a-zA-Z]*[ \n]\\|" paragraph-separate))
591 (setq-local paragraph-start (concat "\b\\|@[a-zA-Z]*[ \n]\\|" paragraph-start))
592 (setq-local sentence-end-base "\\(@\\(end\\)?dots{}\\|[.?!]\\)[]\"'”)}]*")
593 (setq-local fill-column 70)
594 (setq-local comment-start "@c ")
595 (setq-local comment-start-skip "@c +\\|@comment +")
596 (setq-local words-include-escapes t)
597 (setq-local imenu-generic-expression texinfo-imenu-generic-expression)
598 (setq imenu-case-fold-search nil)
599 (setq font-lock-defaults
600 '(texinfo-font-lock-keywords nil nil nil backward-paragraph))
601 (setq-local syntax-propertize-function texinfo-syntax-propertize-function)
602 (setq-local parse-sexp-lookup-properties t)
603
604 ;; Outline settings.
605 (setq-local outline-heading-alist
606 ;; We should merge `outline-heading-alist' and
607 ;; `texinfo-section-list'. But in the mean time, let's
608 ;; just generate one from the other.
609 (mapcar (lambda (x) (cons (concat "@" (car x)) (cadr x)))
610 texinfo-section-list))
611 (setq-local outline-regexp
612 (concat (regexp-opt (mapcar 'car outline-heading-alist) t)
613 "\\>"))
614
615 (setq-local tex-start-of-header "%\\*\\*start")
616 (setq-local tex-end-of-header "%\\*\\*end")
617 (setq-local tex-first-line-header-regexp "^\\\\input")
618 (setq-local tex-trailer "@bye\n")
619
620 ;; Prevent filling certain lines, in addition to ones specified by
621 ;; the user.
622 (setq-local auto-fill-inhibit-regexp
623 (let ((prevent-filling "^@\\(def\\|multitable\\)"))
624 (if (null auto-fill-inhibit-regexp)
625 prevent-filling
626 (concat auto-fill-inhibit-regexp "\\|" prevent-filling)))))
627
628
629 \f
630 ;;; Insert string commands
631
632 (defvar texinfo-block-default "example")
633
634 (define-skeleton texinfo-insert-block
635 "Create a matching pair @<cmd> .. @end <cmd> at point.
636 Puts point on a blank line between them."
637 (setq texinfo-block-default
638 (completing-read (format "Block name [%s]: " texinfo-block-default)
639 texinfo-environments
640 nil nil nil nil texinfo-block-default))
641 \n "@" str
642 ;; Blocks that take parameters: all the def* blocks take parameters,
643 ;; plus a few others.
644 (if (or (string-match "\\`def" str)
645 (member str '("table" "ftable" "vtable")))
646 '(nil " " -))
647 \n _ \n "@end " str \n)
648
649 (defun texinfo-inside-macro-p (macro &optional bound)
650 "Non-nil if inside a macro matching the regexp MACRO."
651 (condition-case nil
652 (save-excursion
653 (save-restriction
654 (narrow-to-region bound (point))
655 (while (progn
656 (up-list -1)
657 (not (condition-case nil
658 (save-excursion
659 (backward-sexp 1)
660 (looking-at macro))
661 (scan-error nil)))))
662 t))
663 (scan-error nil)))
664
665 (defun texinfo-inside-env-p (env &optional bound)
666 "Non-nil if inside an environment matching the regexp @ENV."
667 (save-excursion
668 (and (re-search-backward (concat "@\\(end\\s +\\)?" env) bound t)
669 (not (match-end 1)))))
670
671 (defvar texinfo-enable-quote-macros "@\\(code\\|samp\\|kbd\\)\\>")
672 (defvar texinfo-enable-quote-envs '("example\\>" "lisp\\>"))
673 (defun texinfo-insert-quote (&optional arg)
674 "Insert the appropriate quote mark for Texinfo.
675 Usually inserts the value of `texinfo-open-quote' (normally ``) or
676 `texinfo-close-quote' (normally ''), depending on the context.
677 With prefix argument or inside @code or @example, inserts a plain \"."
678 (interactive "*P")
679 (let ((top (or (save-excursion (re-search-backward "@node\\>" nil t))
680 (point-min))))
681 (if (or arg
682 (= (preceding-char) ?\\)
683 (save-excursion
684 ;; Might be near the start of a (narrowed) buffer.
685 (ignore-errors (backward-char (length texinfo-open-quote)))
686 (when (or (looking-at texinfo-open-quote)
687 (looking-at texinfo-close-quote))
688 (delete-char (length texinfo-open-quote))
689 t))
690 (texinfo-inside-macro-p texinfo-enable-quote-macros top)
691 (let ((in-env nil))
692 (dolist (env texinfo-enable-quote-envs in-env)
693 (if (texinfo-inside-env-p env top)
694 (setq in-env t)))))
695 (self-insert-command (prefix-numeric-value arg))
696 (insert
697 (if (or (bobp)
698 (memq (char-syntax (preceding-char)) '(?\( ?> ?\s)))
699 texinfo-open-quote
700 texinfo-close-quote)))))
701
702 ;; The following texinfo-insert-@end command not only inserts a SPC
703 ;; after the @end, but tries to find out what belongs there. It is
704 ;; not very smart: it does not understand nested lists.
705
706 (defun texinfo-last-unended-begin ()
707 (while (and (re-search-backward texinfo-environment-regexp)
708 (looking-at "@end"))
709 (texinfo-last-unended-begin)))
710
711 (defun texinfo-next-unmatched-end ()
712 (while (and (re-search-forward texinfo-environment-regexp)
713 (save-excursion
714 (goto-char (match-beginning 0))
715 (not (looking-at "@end"))))
716 (texinfo-next-unmatched-end)))
717
718 (define-skeleton texinfo-insert-@end
719 "Insert the matching `@end' for the last Texinfo command that needs one."
720 (ignore-errors
721 (save-excursion
722 (backward-word 1)
723 (texinfo-last-unended-begin)
724 (or (match-string 1) '-)))
725 \n "@end " str \n)
726
727 (define-skeleton texinfo-insert-braces
728 "Make a pair of braces and be poised to type inside of them.
729 Use \\[up-list] to move forward out of the braces."
730 nil
731 "{" _ "}")
732
733 (define-skeleton texinfo-insert-@code
734 "Insert a `@code{...}' command in a Texinfo buffer.
735 A numeric argument says how many words the braces should surround.
736 The default is not to surround any existing words with the braces."
737 nil
738 "@code{" _ "}")
739
740 (define-skeleton texinfo-insert-@dfn
741 "Insert a `@dfn{...}' command in a Texinfo buffer.
742 A numeric argument says how many words the braces should surround.
743 The default is not to surround any existing words with the braces."
744 nil
745 "@dfn{" _ "}")
746
747 (define-skeleton texinfo-insert-@email
748 "Insert a `@email{...}' command in a Texinfo buffer.
749 A numeric argument says how many words the braces should surround.
750 The default is not to surround any existing words with the braces."
751 nil
752 "@email{" _ "}")
753
754 (define-skeleton texinfo-insert-@emph
755 "Insert a `@emph{...}' command in a Texinfo buffer.
756 A numeric argument says how many words the braces should surround.
757 The default is not to surround any existing words with the braces."
758 nil
759 "@emph{" _ "}")
760
761 (define-skeleton texinfo-insert-@example
762 "Insert the string `@example' in a Texinfo buffer."
763 nil
764 \n "@example" \n)
765
766 (define-skeleton texinfo-insert-@file
767 "Insert a `@file{...}' command in a Texinfo buffer.
768 A numeric argument says how many words the braces should surround.
769 The default is not to surround any existing words with the braces."
770 nil
771 "@file{" _ "}")
772
773 (define-skeleton texinfo-insert-@item
774 "Insert the string `@item' in a Texinfo buffer.
775 If in a table defined by @table, follow said string with a space.
776 Otherwise, follow with a newline."
777 nil
778 \n "@item"
779 (if (equal (ignore-errors
780 (save-excursion
781 (texinfo-last-unended-begin)
782 (match-string 1)))
783 "table")
784 " " '\n)
785 _ \n)
786
787 (define-skeleton texinfo-insert-@kbd
788 "Insert a `@kbd{...}' command in a Texinfo buffer.
789 A numeric argument says how many words the braces should surround.
790 The default is not to surround any existing words with the braces."
791 nil
792 "@kbd{" _ "}")
793
794 (define-skeleton texinfo-insert-@node
795 "Insert the string `@node' in a Texinfo buffer.
796 Insert a comment on the following line indicating the order of
797 arguments to @node. Insert a carriage return after the comment line.
798 Leave point after `@node'."
799 nil
800 \n "@node " _ \n)
801
802 (define-skeleton texinfo-insert-@noindent
803 "Insert the string `@noindent' in a Texinfo buffer."
804 nil
805 \n "@noindent" \n)
806
807 (define-skeleton texinfo-insert-@quotation
808 "Insert the string `@quotation' in a Texinfo buffer."
809 \n "@quotation" \n)
810
811 (define-skeleton texinfo-insert-@samp
812 "Insert a `@samp{...}' command in a Texinfo buffer.
813 A numeric argument says how many words the braces should surround.
814 The default is not to surround any existing words with the braces."
815 nil
816 "@samp{" _ "}")
817
818 (define-skeleton texinfo-insert-@strong
819 "Insert a `@strong{...}' command in a Texinfo buffer.
820 A numeric argument says how many words the braces should surround.
821 The default is not to surround any existing words with the braces."
822 nil
823 "@strong{" _ "}")
824
825 (define-skeleton texinfo-insert-@table
826 "Insert the string `@table' in a Texinfo buffer."
827 nil
828 \n "@table " _ \n)
829
830 (define-skeleton texinfo-insert-@var
831 "Insert a `@var{}' command in a Texinfo buffer.
832 A numeric argument says how many words the braces should surround.
833 The default is not to surround any existing words with the braces."
834 nil
835 "@var{" _ "}")
836
837 (define-skeleton texinfo-insert-@uref
838 "Insert a `@uref{}' command in a Texinfo buffer.
839 A numeric argument says how many words the braces should surround.
840 The default is not to surround any existing words with the braces."
841 nil
842 "@uref{" _ "}")
843 (defalias 'texinfo-insert-@url 'texinfo-insert-@uref)
844 \f
845 ;;; Texinfo file structure
846
847 (defun texinfo-show-structure (&optional nodes-too)
848 "Show the structure of a Texinfo file.
849 List the lines in the file that begin with the @-sign commands for
850 @chapter, @section, and the like.
851
852 With optional argument (prefix if interactive), list both the lines
853 with @-sign commands for @chapter, @section, and the like, and list
854 @node lines.
855
856 Lines with structuring commands beginning in them are displayed in
857 another buffer named `*Occur*'. In that buffer, you can move point to
858 one of those lines and then use
859 \\<occur-mode-map>\\[occur-mode-goto-occurrence],
860 to jump to the corresponding spot in the Texinfo source file."
861
862 (interactive "P")
863 ;; First, remember current location
864 (let (current-location)
865 (save-excursion
866 (end-of-line) ; so as to find section on current line
867 (if (re-search-backward
868 ;; do not require `texinfo-section-types-regexp' in texnfo-upd.el
869 "^@\\(chapter \\|sect\\|subs\\|subh\\|unnum\\|major\\|chapheading \\|heading \\|appendix\\)"
870 nil t)
871 (setq current-location
872 (progn
873 (beginning-of-line)
874 (buffer-substring (point) (progn (end-of-line) (point)))))
875 ;; else point is located before any section command.
876 (setq current-location "tex")))
877 ;; Second, create and format an *Occur* buffer
878 (save-excursion
879 (goto-char (point-min))
880 (occur (concat "^\\(?:" (if nodes-too "@node\\>\\|")
881 outline-regexp "\\)")))
882 (pop-to-buffer "*Occur*")
883 (goto-char (point-min))
884 (let ((inhibit-read-only t))
885 (flush-lines "-----")
886 ;; Now format the "*Occur*" buffer to show the structure.
887 ;; Thanks to ceder@signum.se (Per Cederqvist)
888 (goto-char (point-max))
889 (let (level)
890 (while (re-search-backward "^ *[0-9]*:@\\(\\sw+\\)" nil 0)
891 (goto-char (1- (match-beginning 1)))
892 (setq level
893 (or (cadr (assoc (match-string 1) texinfo-section-list)) 2))
894 (indent-to-column (+ (current-column) (* 4 (- level 2))))
895 (beginning-of-line))))
896 ;; Third, go to line corresponding to location in source file
897 ;; potential bug: two exactly similar `current-location' lines ...
898 (goto-char (point-min))
899 (re-search-forward current-location nil t)
900 (beginning-of-line)
901 ))
902
903 \f
904 ;;; The tex and print function definitions:
905
906 (defcustom texinfo-texi2dvi-command "texi2dvi"
907 "Command used by `texinfo-tex-buffer' to run TeX and texindex on a buffer."
908 :type 'string
909 :group 'texinfo)
910
911 (defcustom texinfo-tex-command "tex"
912 "Command used by `texinfo-tex-region' to run TeX on a region."
913 :type 'string
914 :group 'texinfo)
915
916 (defcustom texinfo-texindex-command "texindex"
917 "Command used by `texinfo-texindex' to sort unsorted index files."
918 :type 'string
919 :group 'texinfo)
920
921 (defcustom texinfo-delete-from-print-queue-command "lprm"
922 "Command string used to delete a job from the line printer queue.
923 Command is used by \\[texinfo-delete-from-print-queue] based on
924 number provided by a previous \\[tex-show-print-queue]
925 command."
926 :type 'string
927 :group 'texinfo)
928
929 (defvar texinfo-tex-trailer "@bye"
930 "String appended after a region sent to TeX by `texinfo-tex-region'.")
931
932 (defun texinfo-tex-region (beg end)
933 "Run TeX on the current region.
934 This works by writing a temporary file (`tex-zap-file') in the directory
935 that is the value of `tex-directory', then running TeX on that file.
936
937 The first line of the buffer is copied to the
938 temporary file; and if the buffer has a header, it is written to the
939 temporary file before the region itself. The buffer's header is all lines
940 between the strings defined by `tex-start-of-header' and `tex-end-of-header'
941 inclusive. The header must start in the first 100 lines.
942
943 The value of `texinfo-tex-trailer' is appended to the temporary file after the region."
944 (interactive "r")
945 (require 'tex-mode)
946 (let ((tex-command texinfo-tex-command)
947 (tex-trailer texinfo-tex-trailer))
948 (tex-region beg end)))
949
950 (defun texinfo-tex-buffer ()
951 "Run TeX on visited file, once or twice, to make a correct `.dvi' file."
952 (interactive)
953 (require 'tex-mode)
954 (let ((tex-command texinfo-texi2dvi-command)
955 ;; Disable tex-start-options-string. texi2dvi would not
956 ;; understand anything specified here.
957 (tex-start-options-string ""))
958 (tex-buffer)))
959
960 (defun texinfo-texindex ()
961 "Run `texindex' on unsorted index files.
962 The index files are made by \\[texinfo-tex-region] or \\[texinfo-tex-buffer].
963 This runs the shell command defined by `texinfo-texindex-command'."
964 (interactive)
965 (require 'tex-mode)
966 (tex-send-command texinfo-texindex-command (concat tex-zap-file ".??"))
967 ;; alternatively
968 ;; (send-string "tex-shell"
969 ;; (concat texinfo-texindex-command
970 ;; " " tex-zap-file ".??" "\n"))
971 (tex-recenter-output-buffer nil))
972
973 (defun texinfo-tex-print ()
974 "Print `.dvi' file made by \\[texinfo-tex-region] or \\[texinfo-tex-buffer].
975 This runs the shell command defined by `tex-dvi-print-command'."
976 (interactive)
977 (require 'tex-mode)
978 (tex-print))
979
980 (defun texinfo-tex-view ()
981 "View `.dvi' file made by \\[texinfo-tex-region] or \\[texinfo-tex-buffer].
982 This runs the shell command defined by `tex-dvi-view-command'."
983 (interactive)
984 (require 'tex-mode)
985 (tex-view))
986
987 (defun texinfo-quit-job ()
988 "Quit currently running TeX job, by sending an `x' to it."
989 (interactive)
990 (if (not (get-process "tex-shell"))
991 (error "No TeX shell running"))
992 (tex-send-command "x"))
993 ;; alternatively:
994 ;; save-excursion
995 ;; (set-buffer (get-buffer "*tex-shell*"))
996 ;; (goto-char (point-max))
997 ;; (insert "x")
998 ;; (comint-send-input)
999
1000 (defun texinfo-delete-from-print-queue (job-number)
1001 "Delete job from the line printer spooling queue.
1002 You are prompted for the job number (use a number shown by a previous
1003 \\[tex-show-print-queue] command)."
1004 (interactive "nPrinter job number for deletion: ")
1005 (require 'tex-mode)
1006 (if (tex-shell-running)
1007 (tex-kill-job)
1008 (tex-start-shell))
1009 (tex-send-command texinfo-delete-from-print-queue-command job-number)
1010 ;; alternatively
1011 ;; (send-string "tex-shell"
1012 ;; (concat
1013 ;; texinfo-delete-from-print-queue-command
1014 ;; " "
1015 ;; job-number"\n"))
1016 (tex-recenter-output-buffer nil))
1017
1018 (provide 'texinfo)
1019
1020 ;;; texinfo.el ends here