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