Update docstrings and comments to use "init file" terminology.
[emacs.git] / lisp / textmodes / reftex.el
blob8584c496a97e7b853956b39300cc8180207d5ba8
1 ;;; reftex.el --- minor mode for doing \label, \ref, \cite, \index in LaTeX
2 ;; Copyright (C) 1997-2000, 2003-2012 Free Software Foundation, Inc.
4 ;; Author: Carsten Dominik <dominik@science.uva.nl>
5 ;; Maintainer: auctex-devel@gnu.org
6 ;; Version: 4.31
7 ;; Keywords: tex
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;---------------------------------------------------------------------------
26 ;;; Commentary:
28 ;; RefTeX is a minor mode with distinct support for \ref, \label, \cite,
29 ;; and \index commands in (multi-file) LaTeX documents.
30 ;; - A table of contents provides easy access to any part of a document.
31 ;; - Labels are created semi-automatically.
32 ;; - Definition context of labels is provided when creating a reference.
33 ;; - Citations are simplified with efficient database lookup.
34 ;; - Text phrases can be collected in a file, for later global indexing.
35 ;; - The index preview buffer helps to check and edit index entries.
38 ;; INSTALLATION
39 ;; ------------
41 ;; - If this file is part of an X/Emacs distribution, it is installed.
42 ;; - For XEmacs 21.x, you need to install the RefTeX plug-in package
43 ;; available from the XEmacs distribution sites.
44 ;; - If you have downloaded this file from the maintainers webpage, follow
45 ;; the instructions in the INSTALL file of the distribution.
47 ;; To turn RefTeX Mode on and off in a buffer, use `M-x reftex-mode'.
49 ;; To turn on RefTeX Mode for all LaTeX files, add the following lines
50 ;; to your init file:
52 ;; (add-hook 'LaTeX-mode-hook 'turn-on-reftex) ; AUCTeX LaTeX mode
53 ;; (add-hook 'latex-mode-hook 'turn-on-reftex) ; Emacs latex mode
56 ;; DOCUMENTATION
57 ;; -------------
59 ;; See below for a short summary of how to use RefTeX.
61 ;; There is an extensive texinfo document describing RefTeX in detail.
62 ;; One way to view this documentation is `M-x reftex-info RET'.
64 ;; The documentation in various formats is also available at
66 ;; http://zon.astro.uva.nl/~dominik/Tools/
68 ;;---------------------------------------------------------------------------
70 ;; Introduction
71 ;; ************
73 ;; RefTeX is a specialized package for support of labels, references,
74 ;; citations, and the index in LaTeX. RefTeX wraps itself round 4 LaTeX
75 ;; macros: `\label', `\ref', `\cite', and `\index'. Using these macros
76 ;; usually requires looking up different parts of the document and
77 ;; searching through BibTeX database files. RefTeX automates these
78 ;; time-consuming tasks almost entirely. It also provides functions to
79 ;; display the structure of a document and to move around in this
80 ;; structure quickly.
82 ;; *Note Imprint::, for information about who to contact for help, bug
83 ;; reports or suggestions.
85 ;; Environment
86 ;; ===========
88 ;; RefTeX needs to access all files which are part of a multifile
89 ;; document, and the BibTeX database files requested by the
90 ;; `\bibliography' command. To find these files, RefTeX will require a
91 ;; search path, i.e. a list of directories to check. Normally this list
92 ;; is stored in the environment variables `TEXINPUTS' and `BIBINPUTS'
93 ;; which are also used by RefTeX. However, on some systems these
94 ;; variables do not contain the full search path. If RefTeX does not work
95 ;; for you because it cannot find some files, read *Note Finding Files::.
97 ;; Entering RefTeX Mode
98 ;; ====================
100 ;; To turn RefTeX Mode on and off in a particular buffer, use `M-x
101 ;; reftex-mode'. To turn on RefTeX Mode for all LaTeX files, add the
102 ;; following lines to your init file:
104 ;; (add-hook 'LaTeX-mode-hook 'turn-on-reftex) ; with AUCTeX LaTeX mode
105 ;; (add-hook 'latex-mode-hook 'turn-on-reftex) ; with Emacs latex mode
107 ;; RefTeX in a Nutshell
108 ;; ====================
110 ;; 1. Table of Contents
111 ;; Typing `C-c =' (`reftex-toc') will show a table of contents of the
112 ;; document. This buffer can display sections, labels and index
113 ;; entries defined in the document. From the buffer, you can jump
114 ;; quickly to every part of your document. Press `?' to get help.
116 ;; 2. Labels and References
117 ;; RefTeX helps to create unique labels and to find the correct key
118 ;; for references quickly. It distinguishes labels for different
119 ;; environments, knows about all standard environments (and many
120 ;; others), and can be configured to recognize any additional labeled
121 ;; environments you have defined yourself (variable
122 ;; `reftex-label-alist').
124 ;; * Creating Labels
125 ;; Type `C-c (' (`reftex-label') to insert a label at point.
126 ;; RefTeX will either
127 ;; - derive a label from context (default for section labels)
128 ;; - prompt for a label string (default for figures and
129 ;; tables) or
130 ;; - insert a simple label made of a prefix and a number (all
131 ;; other environments)
133 ;; Which labels are created how is configurable with the variable
134 ;; `reftex-insert-label-flags'.
136 ;; * Referencing Labels
137 ;; To make a reference, type `C-c )' (`reftex-reference'). This
138 ;; shows an outline of the document with all labels of a certain
139 ;; type (figure, equation,...) and some label context.
140 ;; Selecting a label inserts a `\ref{LABEL}' macro into the
141 ;; original buffer.
143 ;; 3. Citations
144 ;; Typing `C-c [' (`reftex-citation') will let you specify a regular
145 ;; expression to search in current BibTeX database files (as
146 ;; specified in the `\bibliography' command) and pull out a list of
147 ;; matches for you to choose from. The list is _formatted_ and
148 ;; sorted. The selected article is referenced as `\cite{KEY}' (see
149 ;; the variable `reftex-cite-format' if you want to insert different
150 ;; macros).
152 ;; 4. Index Support
153 ;; RefTeX helps to enter index entries. It also compiles all entries
154 ;; into an alphabetically sorted `*Index*' buffer which you can use
155 ;; to check and edit the entries. RefTeX knows about the standard
156 ;; index macros and can be configured to recognize any additional
157 ;; macros you have defined (`reftex-index-macros'). Multiple indices
158 ;; are supported.
160 ;; * Creating Index Entries
161 ;; To index the current selection or the word at point, type
162 ;; `C-c /' (`reftex-index-selection-or-word'). The default macro
163 ;; `reftex-index-default-macro' will be used. For a more
164 ;; complex entry type `C-c <' (`reftex-index'), select any of
165 ;; the index macros and enter the arguments with completion.
167 ;; * The Index Phrases File (Delayed Indexing)
168 ;; Type `C-c \' (`reftex-index-phrase-selection-or-word') to add
169 ;; the current word or selection to a special _index phrase
170 ;; file_. RefTeX can later search the document for occurrences
171 ;; of these phrases and let you interactively index the matches.
173 ;; * Displaying and Editing the Index
174 ;; To display the compiled index in a special buffer, type `C-c
175 ;; >' (`reftex-display-index'). From that buffer you can check
176 ;; and edit all entries.
178 ;; 5. Viewing Cross-References
179 ;; When point is on the KEY argument of a cross-referencing macro
180 ;; (`\label', `\ref', `\cite', `\bibitem', `\index', and variations)
181 ;; or inside a BibTeX database entry, you can press `C-c &'
182 ;; (`reftex-view-crossref') to display corresponding locations in the
183 ;; document and associated BibTeX database files.
184 ;; When the enclosing macro is `\cite' or `\ref' and no other message
185 ;; occupies the echo area, information about the citation or label
186 ;; will automatically be displayed in the echo area.
188 ;; 6. Multifile Documents
189 ;; Multifile Documents are fully supported. The included files must
190 ;; have a file variable `TeX-master' or `tex-main-file' pointing to
191 ;; the master file. RefTeX provides cross-referencing information
192 ;; from all parts of the document, and across document borders
193 ;; (`xr.sty').
195 ;; 7. Document Parsing
196 ;; RefTeX needs to parse the document in order to find labels and
197 ;; other information. It does it automatically once and updates its
198 ;; list internally when `reftex-label' and `reftex-index' are used.
199 ;; To enforce reparsing, call any of the commands described above
200 ;; with a raw `C-u' prefix, or press the `r' key in the label
201 ;; selection buffer, the table of contents buffer, or the index
202 ;; buffer.
204 ;; 8. AUCTeX
205 ;; If your major LaTeX mode is AUCTeX, RefTeX can cooperate with it
206 ;; (see variable `reftex-plug-into-AUCTeX'). AUCTeX contains style
207 ;; files which trigger appropriate settings in RefTeX, so that for
208 ;; many of the popular LaTeX packages no additional customizations
209 ;; will be necessary.
211 ;; 9. Useful Settings
212 ;; To make RefTeX faster for large documents, try these:
213 ;; (setq reftex-enable-partial-scans t)
214 ;; (setq reftex-save-parse-info t)
215 ;; (setq reftex-use-multiple-selection-buffers t)
217 ;; To integrate with AUCTeX, use
218 ;; (setq reftex-plug-into-AUCTeX t)
220 ;; To make your own LaTeX macro definitions known to RefTeX,
221 ;; customize the variables
222 ;; `reftex-label-alist' (for label macros/environments)
223 ;; `reftex-section-levels' (for sectioning commands)
224 ;; `reftex-cite-format' (for `\cite'-like macros)
225 ;; `reftex-index-macros' (for `\index'-like macros)
226 ;; `reftex-index-default-macro' (to set the default macro)
227 ;; If you have a large number of macros defined, you may want to write
228 ;; an AUCTeX style file to support them with both AUCTeX and RefTeX.
230 ;; 10. Where Next?
231 ;; Go ahead and use RefTeX. Use its menus until you have picked up
232 ;; the key bindings. For an overview of what you can do in each of
233 ;; the different special buffers, press `?'. Read the manual if you
234 ;; get stuck, of if you are curious what else might be available.
235 ;; The first part of the manual explains in a tutorial way how to use
236 ;; and customize RefTeX. The second part is a command and variable
237 ;; reference.
239 ;;---------------------------------------------------------------------------
241 ;; AUTHOR
242 ;; ======
244 ;; Carsten Dominik <dominik@science.uva.nl>
246 ;; with contributions from Stephen Eglen
248 ;; RefTeX is bundled with Emacs and available as a plug-in package for
249 ;; XEmacs 21.x. If you need to install it yourself, you can find a
250 ;; distribution at
252 ;; http://zon.astro.uva.nl/~dominik/Tools/
254 ;; THANKS TO:
255 ;; ---------
256 ;; Thanks to the people on the Net who have used RefTeX and helped
257 ;; developing it with their reports. In particular thanks to
259 ;; Fran Burstall, Alastair Burt, Soren Dayton, Stephen Eglen,
260 ;; Karl Eichwalder, Peter Galbraith, Dieter Kraft, Kai Grossjohann,
261 ;; Frank Harrell, Adrian Lanz, Rory Molinari, Stefan Monnier,
262 ;; Laurent Mugnier, Sudeep Kumar Palat, Daniel Polani, Robin Socha,
263 ;; Richard Stanton, Allan Strand, Jan Vroonhof, Christoph Wedler,
264 ;; Alan Williams.
266 ;; Finally thanks to Uwe Bolick who first got me (some years ago) into
267 ;; supporting LaTeX labels and references with an editor (which was
268 ;; MicroEmacs at the time).
270 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
272 ;;;;;;
274 ;;; Code:
276 (eval-when-compile (require 'cl))
278 ;; Stuff that needs to be there when we use defcustom
279 (require 'custom)
281 (require 'easymenu)
283 (defvar reftex-tables-dirty t
284 "Flag showing if tables need to be re-computed.")
286 (eval-and-compile
287 (defun reftex-set-dirty (symbol value)
288 (setq reftex-tables-dirty t)
289 (set symbol value)))
292 ;;; =========================================================================
294 ;;; Configuration variables
296 (require 'reftex-vars)
299 ;;; =========================================================================
301 ;;; Define the formal stuff for a minor mode named RefTeX.
304 (defconst reftex-version "RefTeX version 4.31"
305 "Version string for RefTeX.")
307 (defvar reftex-mode-map (make-sparse-keymap)
308 "Keymap for RefTeX mode.")
310 (defvar reftex-mode-menu nil)
311 (defvar reftex-syntax-table nil)
312 (defvar reftex-syntax-table-for-bib nil)
314 (unless reftex-syntax-table
315 (setq reftex-syntax-table (copy-syntax-table))
316 (modify-syntax-entry ?\( "." reftex-syntax-table)
317 (modify-syntax-entry ?\) "." reftex-syntax-table))
319 (unless reftex-syntax-table-for-bib
320 (setq reftex-syntax-table-for-bib
321 (copy-syntax-table reftex-syntax-table))
322 (modify-syntax-entry ?\' "." reftex-syntax-table-for-bib)
323 (modify-syntax-entry ?\" "." reftex-syntax-table-for-bib)
324 (modify-syntax-entry ?\[ "." reftex-syntax-table-for-bib)
325 (modify-syntax-entry ?\] "." reftex-syntax-table-for-bib))
327 ;; The following definitions are out of place, but I need them here
328 ;; to make the compilation of reftex-mode not complain.
329 (defvar reftex-auto-view-crossref-timer nil
330 "The timer used for auto-view-crossref.")
331 (defvar reftex-toc-auto-recenter-timer nil
332 "The idle timer used to recenter the toc window.")
334 ;;; =========================================================================
336 ;;; Parser functions
338 (autoload 'reftex-parse-one "reftex-parse"
339 "Re-parse this file." t)
340 (autoload 'reftex-parse-all "reftex-parse"
341 "Re-parse entire document." t)
342 (autoload 'reftex-do-parse "reftex-parse")
343 (autoload 'reftex-where-am-I "reftex-parse")
344 (autoload 'reftex-init-section-numbers "reftex-parse")
345 (autoload 'reftex-section-info "reftex-parse")
346 (autoload 'reftex-section-number "reftex-parse")
347 (autoload 'reftex-what-macro "reftex-parse")
348 (autoload 'reftex-what-macro-safe "reftex-parse")
349 (autoload 'reftex-index-info "reftex-parse")
350 (autoload 'reftex-index-info-safe "reftex-parse")
351 (autoload 'reftex-short-context "reftex-parse")
352 (autoload 'reftex-what-environment "reftex-parse")
353 (autoload 'reftex-what-special-env "reftex-parse")
354 (autoload 'reftex-move-over-touching-args "reftex-parse")
355 (autoload 'reftex-notice-new "reftex-parse")
356 (autoload 'reftex-nth-arg "reftex-parse")
357 (autoload 'reftex-locate-bibliography-files "reftex-parse")
358 (autoload 'reftex-ensure-index-support "reftex-parse")
359 (autoload 'reftex-everything-regexp "reftex-parse")
362 ;;; =========================================================================
364 ;;; Labels and References
366 (autoload 'reftex-label-location "reftex-ref")
367 (autoload 'reftex-label-info-update "reftex-ref")
368 (autoload 'reftex-label-info "reftex-ref")
369 (autoload 'reftex-label "reftex-ref"
370 "Insert a unique label." t)
371 (autoload 'reftex-reference "reftex-ref"
372 "Make a LaTeX reference." t)
373 (autoload 'reftex-varioref-vref "reftex-ref"
374 "Make a varioref reference." t)
375 (autoload 'reftex-fancyref-fref "reftex-ref"
376 "Make a fancyref \\fref reference." t)
377 (autoload 'reftex-fancyref-Fref "reftex-ref"
378 "Make a fancyref \\Fref reference." t)
379 (autoload 'reftex-show-label-location "reftex-ref")
380 (autoload 'reftex-query-label-type "reftex-ref")
381 (autoload 'reftex-goto-label "reftex-ref"
382 "Prompt for label name and go to that location." t)
384 ;;; =========================================================================
386 ;;; Table of contents
388 (autoload 'reftex-toc "reftex-toc"
389 "Show the table of contents for the current document." t)
390 (autoload 'reftex-toc-recenter "reftex-toc"
391 "Display the TOC window and highlight line corresponding to current position." t)
392 (autoload 'reftex-toggle-auto-toc-recenter "reftex-toc"
393 "Toggle automatic recentering of TOC window." t)
395 ;;; =========================================================================
397 ;;; BibTeX citations.
399 (autoload 'reftex-citep "reftex-cite")
400 (autoload 'reftex-citet "reftex-cite")
401 (autoload 'reftex-make-cite-echo-string "reftex-cite")
402 (autoload 'reftex-get-bibfile-list "reftex-cite")
403 (autoload 'reftex-pop-to-bibtex-entry "reftex-cite")
404 (autoload 'reftex-end-of-bib-entry "reftex-cite")
405 (autoload 'reftex-parse-bibtex-entry "reftex-cite")
406 (autoload 'reftex-citation "reftex-cite"
407 "Make a citation using BibTeX database files." t)
408 (autoload 'reftex-default-bibliography "reftex-cite")
409 (autoload 'reftex-bib-or-thebib "reftex-cite")
410 (autoload 'reftex-create-bibtex-file "reftex-cite")
412 ;;; =========================================================================
414 ;;; Selection
416 (autoload 'reftex-select-label-mode "reftex-sel")
417 (autoload 'reftex-select-bib-mode "reftex-sel")
418 (autoload 'reftex-find-start-point "reftex-sel")
419 (autoload 'reftex-insert-docstruct "reftex-sel")
420 (autoload 'reftex-get-offset "reftex-sel")
421 (autoload 'reftex-select-item "reftex-sel")
424 ;;; =========================================================================
426 ;;; Index support
428 (autoload 'reftex-index "reftex-index"
429 "Query for an index macro and insert it along with its arguments." t)
430 (autoload 'reftex-index-selection-or-word "reftex-index"
431 "Put selection or the word near point into the default index macro." t)
432 (autoload 'reftex-index-phrase-selection-or-word "reftex-index"
433 "Put selection or the word near point into Index Phrases File." t)
434 (autoload 'reftex-display-index "reftex-index"
435 "Display a buffer with an index compiled from the current document." t)
436 (autoload 'reftex-index-visit-phrases-buffer "reftex-index"
437 "Visit the Index Phrases File." t)
438 (autoload 'reftex-index-phrases-mode "reftex-index"
439 "Major mode for managing the Index phrases of a LaTeX document." t)
440 (autoload 'reftex-index-complete-tag "reftex-index")
441 (autoload 'reftex-index-complete-key "reftex-index")
442 (autoload 'reftex-index-show-entry "reftex-index")
443 (autoload 'reftex-index-select-tag "reftex-index")
446 ;;; =========================================================================
448 ;;; View cross references
450 (autoload 'reftex-view-crossref "reftex-dcr"
451 "View cross reference of \\ref or \\cite macro at point." t)
452 (autoload 'reftex-mouse-view-crossref "reftex-dcr"
453 "View cross reference of \\ref or \\cite macro where you click." t)
454 (autoload 'reftex-toggle-auto-view-crossref "reftex-dcr")
455 (autoload 'reftex-view-crossref-from-bibtex "reftex-dcr"
456 "View location in a LaTeX document which cites the BibTeX entry at point." t)
459 ;;; =========================================================================
461 ;;; Operations on entire Multifile documents
463 (autoload 'reftex-create-tags-file "reftex-global"
464 "Create TAGS file by running `etags' on the current document." t)
465 (autoload 'reftex-grep-document "reftex-global"
466 "Run grep query through all files related to this document." t)
467 (autoload 'reftex-search-document "reftex-global"
468 "Regexp search through all files of the current TeX document." t)
469 (autoload 'reftex-query-replace-document "reftex-global"
470 "Run a query-replace-regexp of FROM with TO over the entire TeX document." t)
471 (autoload 'reftex-find-duplicate-labels "reftex-global"
472 "Produce a list of all duplicate labels in the document." t)
473 (autoload 'reftex-change-label "reftex-global"
474 "Query replace FROM with TO in all \\label and \\ref commands." t)
475 (autoload 'reftex-renumber-simple-labels "reftex-global"
476 "Renumber all simple labels in the document to make them sequentially." t)
477 (autoload 'reftex-save-all-document-buffers "reftex-global"
478 "Save all documents associated with the current document." t)
481 ;;; =========================================================================
483 ;;; AUCTeX Interface
485 (autoload 'reftex-arg-label "reftex-auc")
486 (autoload 'reftex-arg-cite "reftex-auc")
487 (autoload 'reftex-arg-index-tag "reftex-auc")
488 (autoload 'reftex-arg-index "reftex-auc")
489 (autoload 'reftex-plug-into-AUCTeX "reftex-auc")
490 (autoload 'reftex-toggle-plug-into-AUCTeX "reftex-auc"
491 "Toggle Interface between AUCTeX and RefTeX on and off." t)
492 (autoload 'reftex-add-label-environments "reftex-auc")
493 (autoload 'reftex-add-to-label-alist "reftex-auc")
494 (autoload 'reftex-add-section-levels "reftex-auc")
495 (autoload 'reftex-notice-new-section "reftex-auc")
497 ;;;###autoload
498 (defun turn-on-reftex ()
499 "Turn on RefTeX mode."
500 (reftex-mode t))
502 (put 'reftex-mode :included '(memq major-mode '(latex-mode tex-mode)))
503 (put 'reftex-mode :menu-tag "RefTeX Mode")
504 ;;;###autoload
505 (define-minor-mode reftex-mode
506 "Toggle RefTeX mode.
507 With a prefix argument ARG, enable RefTeX mode if ARG is
508 positive, and disable it otherwise. If called from Lisp, enable
509 the mode if ARG is omitted or nil.
511 RefTeX mode is a buffer-local minor mode with distinct support
512 for \\label, \\ref and \\cite in LaTeX.
514 \\<reftex-mode-map>A Table of Contents of the entire (multifile) document with browsing
515 capabilities is available with `\\[reftex-toc]'.
517 Labels can be created with `\\[reftex-label]' and referenced with `\\[reftex-reference]'.
518 When referencing, you get a menu with all labels of a given type and
519 context of the label definition. The selected label is inserted as a
520 \\ref macro.
522 Citations can be made with `\\[reftex-citation]' which will use a regular expression
523 to pull out a *formatted* list of articles from your BibTeX
524 database. The selected citation is inserted as a \\cite macro.
526 Index entries can be made with `\\[reftex-index-selection-or-word]' which indexes the word at point
527 or the current selection. More general index entries are created with
528 `\\[reftex-index]'. `\\[reftex-display-index]' displays the compiled index.
530 Most command have help available on the fly. This help is accessed by
531 pressing `?' to any prompt mentioning this feature.
533 Extensive documentation about RefTeX is available in Info format.
534 You can view this information with `\\[reftex-info]'.
536 \\{reftex-mode-map}
537 Under X, these and other functions will also be available as `Ref' menu
538 on the menu bar.
540 ------------------------------------------------------------------------------"
541 :lighter " Ref" :keymap reftex-mode-map
542 (if reftex-mode
543 (progn
544 ;; Mode was turned on
545 (easy-menu-add reftex-mode-menu)
546 (and reftex-plug-into-AUCTeX
547 (reftex-plug-into-AUCTeX))
548 (unless (get 'reftex-auto-view-crossref 'initialized)
549 (and reftex-auto-view-crossref
550 (reftex-toggle-auto-view-crossref))
551 (put 'reftex-auto-view-crossref 'initialized t))
552 (unless (get 'reftex-auto-recenter-toc 'initialized)
553 (and (eq reftex-auto-recenter-toc t)
554 (reftex-toggle-auto-toc-recenter))
555 (put 'reftex-auto-recenter-toc 'initialized t))
557 ;; Prepare the special syntax tables.
558 (setq reftex-syntax-table (copy-syntax-table (syntax-table)))
559 (modify-syntax-entry ?\( "." reftex-syntax-table)
560 (modify-syntax-entry ?\) "." reftex-syntax-table)
562 (setq reftex-syntax-table-for-bib
563 (copy-syntax-table reftex-syntax-table))
564 (modify-syntax-entry ?\' "." reftex-syntax-table-for-bib)
565 (modify-syntax-entry ?\" "." reftex-syntax-table-for-bib)
566 (modify-syntax-entry ?\[ "." reftex-syntax-table-for-bib)
567 (modify-syntax-entry ?\] "." reftex-syntax-table-for-bib))
568 ;; Mode was turned off
569 (easy-menu-remove reftex-mode-menu)))
571 (defvar reftex-docstruct-symbol)
572 (defun reftex-kill-buffer-hook ()
573 "Save RefTeX's parse file for this buffer if the information has changed."
574 ;; Save the parsing information if it was modified.
575 ;; This function should be installed in `kill-buffer-hook'.
576 ;; We are careful to make sure nothing goes wrong in this function.
577 (when (and (boundp 'reftex-mode) reftex-mode
578 (boundp 'reftex-save-parse-info) reftex-save-parse-info
579 (boundp 'reftex-docstruct-symbol) reftex-docstruct-symbol
580 (symbol-value reftex-docstruct-symbol)
581 (get reftex-docstruct-symbol 'modified))
582 ;; Write the file.
583 (condition-case nil
584 (reftex-access-parse-file 'write)
585 (error nil))))
587 (defun reftex-kill-emacs-hook ()
588 "Call `reftex-kill-buffer-hook' on all buffers."
589 ;; This function should be installed in `kill-emacs-hook'.
590 (save-excursion
591 (mapcar (lambda (buf)
592 (set-buffer buf)
593 (reftex-kill-buffer-hook))
594 (buffer-list))))
596 ;;; =========================================================================
598 ;;; Silence warnings about variables in other packages.
599 (defvar TeX-master)
600 (defvar LaTeX-section-hook)
601 (defvar LaTeX-label-function)
602 (defvar tex-main-file)
603 (defvar outline-minor-mode)
604 (defvar font-lock-mode)
605 (defvar font-lock-keywords)
606 (defvar font-lock-fontify-region-function)
608 ;;; =========================================================================
610 ;;; Multibuffer Variables
612 ;; Technical notes: These work as follows: We keep just one list
613 ;; of labels for each master file - this can save a lot of memory.
614 ;; `reftex-master-index-list' is an alist which connects the true file name
615 ;; of each master file with the symbols holding the information on that
616 ;; document. Each buffer has local variables which point to these symbols.
618 ;; List of variables which handle the multifile stuff.
619 ;; This list is used to tie, untie, and reset these symbols.
620 (defconst reftex-multifile-symbols
621 '(reftex-docstruct-symbol))
623 ;; Alist connecting master file names with the corresponding lisp symbols.
624 (defvar reftex-master-index-list nil)
626 ;; Last index used for a master file.
627 (defvar reftex-multifile-index 0)
629 ;; Variable holding the symbol with the label list of the document.
630 (defvar reftex-docstruct-symbol nil)
631 (make-variable-buffer-local 'reftex-docstruct-symbol)
633 (defun reftex-next-multifile-index ()
634 ;; Return the next free index for multifile symbols.
635 (incf reftex-multifile-index))
637 (defun reftex-tie-multifile-symbols ()
638 ;; Tie the buffer-local symbols to globals connected with the master file.
639 ;; If the symbols for the current master file do not exist, they are created.
641 (let* ((master (file-truename (reftex-TeX-master-file)))
642 (index (assoc master reftex-master-index-list))
643 (symlist reftex-multifile-symbols)
644 symbol symname newflag)
645 ;; Find the correct index.
646 (if index
647 ;; symbols do exist
648 (setq index (cdr index))
649 ;; Get a new index and add info to the alist.
650 (setq index (reftex-next-multifile-index)
651 newflag t)
652 (push (cons master index) reftex-master-index-list))
654 ;; Get/create symbols and tie them.
655 (while symlist
656 (setq symbol (car symlist)
657 symlist (cdr symlist)
658 symname (symbol-name symbol))
659 (set symbol (intern (concat symname "-" (int-to-string index))))
660 (put (symbol-value symbol) :master-index index)
661 ;; Initialize if new symbols.
662 (when newflag
663 (set (symbol-value symbol) nil)
664 (put (symbol-value symbol) 'reftex-index-macros-style '(default))))
666 ;; Return t if the symbols did already exist, nil when we've made them.
667 (not newflag)))
669 (defun reftex-untie-multifile-symbols ()
670 ;; Remove ties from multifile symbols, so that next use makes new ones.
671 (let ((symlist reftex-multifile-symbols)
672 (symbol nil))
673 (while symlist
674 (setq symbol (car symlist)
675 symlist (cdr symlist))
676 (set symbol nil))))
678 (defun reftex-TeX-master-file ()
679 ;; Return the name of the master file associated with the current buffer.
680 ;; When AUCTeX is loaded, we will use it's more sophisticated method.
681 ;; We also support the default TeX and LaTeX modes by checking for a
682 ;; variable tex-main-file.
683 (let
684 ((master
685 (cond
686 ((fboundp 'TeX-master-file) ; AUCTeX is loaded. Use its mechanism.
687 (condition-case nil
688 (TeX-master-file t)
689 (error (buffer-file-name))))
690 ((fboundp 'tex-main-file) (tex-main-file)) ; Emacs LaTeX mode
691 ((boundp 'TeX-master) ; The variable is defined - let's use it.
692 (cond
693 ((eq TeX-master t)
694 (buffer-file-name))
695 ((eq TeX-master 'shared)
696 (setq TeX-master (read-file-name "Master file: "
697 nil nil t nil)))
698 (TeX-master)
700 (setq TeX-master (read-file-name "Master file: "
701 nil nil t nil)))))
702 ((boundp 'tex-main-file)
703 ;; This is the variable from the default TeX modes.
704 (cond
705 ((stringp tex-main-file)
706 ;; ok, this must be it
707 tex-main-file)
709 ;; In this case, the buffer is its own master.
710 (buffer-file-name))))
712 ;; Know nothing about master file. Assume this is a master file.
713 (buffer-file-name)))))
714 (cond
715 ((null master)
716 (error "Need a filename for this buffer, please save it first"))
717 ((or (file-exists-p (concat master ".tex"))
718 (reftex-get-buffer-visiting (concat master ".tex")))
719 ;; Ahh, an extra .tex was missing...
720 (setq master (concat master ".tex")))
721 ((or (file-exists-p master)
722 (reftex-get-buffer-visiting master))
723 ;; We either see the file, or have a buffer on it. OK.
726 ;; Use buffer file name.
727 (setq master (buffer-file-name))))
728 (expand-file-name master)))
730 (defun reftex-is-multi ()
731 ;; Tell if this is a multifile document. When not sure, say yes.
732 (let ((entry (assq 'is-multi (symbol-value reftex-docstruct-symbol))))
733 (if entry
734 (nth 1 entry)
735 t)))
737 (defun reftex-set-cite-format (value)
738 "Set the document-local value of `reftex-cite-format'.
739 When such a value exists, it overwrites the setting given with
740 `reftex-cite-format'. See the documentation of `reftex-cite-format'
741 for possible values. This function should be used from AUCTeX style files."
742 (unless reftex-docstruct-symbol
743 (reftex-tie-multifile-symbols))
744 (when (and reftex-docstruct-symbol
745 (symbolp reftex-docstruct-symbol))
746 (put reftex-docstruct-symbol 'reftex-cite-format value)))
748 (defun reftex-get-cite-format ()
749 ;; Return the current citation format. Either the document-local value in
750 ;; reftex-cite-format-symbol, or the global value in reftex-cite-format.
751 (if (and reftex-docstruct-symbol
752 (symbolp reftex-docstruct-symbol)
753 (get reftex-docstruct-symbol 'reftex-cite-format))
754 (get reftex-docstruct-symbol 'reftex-cite-format)
755 reftex-cite-format))
757 (defun reftex-add-index-macros (entry-list)
758 "Add index macro descriptions to `reftex-index-macros-style'.
759 The format of ENTRY-LIST is exactly like `reftex-index-macros'. See there
760 for details.
761 This function makes it possible to support RefTeX from AUCTeX style files.
762 The entries in ENTRY-LIST will be processed after the user settings in
763 `reftex-index-entries', and before the defaults. Any changes made to
764 `reftex-label-alist-style' will raise a flag to the effect that
765 the label information is recompiled on next use."
766 (unless reftex-docstruct-symbol
767 (reftex-tie-multifile-symbols))
768 (when (and reftex-docstruct-symbol
769 (symbolp reftex-docstruct-symbol))
770 (let ((list (get reftex-docstruct-symbol 'reftex-index-macros-style))
771 entry changed)
772 (while entry-list
773 (setq entry (pop entry-list))
774 ;; When it is a symbol, remove all other symbols
775 (and (symbolp entry)
776 (not (memq entry list))
777 (setq list (reftex-remove-symbols-from-list list)))
778 ;; Add to list unless already member
779 (unless (member entry list)
780 (setq reftex-tables-dirty t
781 changed t)
782 (push entry list)))
783 (when changed
784 (put reftex-docstruct-symbol 'reftex-index-macros-style list)))))
786 ;;; =========================================================================
788 ;;; Functions to compile the tables, reset the mode etc.
790 ;; The following constants are derived from `reftex-label-alist'.
792 ;; Prompt used for label type queries directed to the user.
793 (defvar reftex-type-query-prompt nil)
795 ;; Help string for label type queries.
796 (defvar reftex-type-query-help nil)
798 ;; Alist relating label type to reference format.
799 (defvar reftex-typekey-to-format-alist nil)
801 ;; Alist relating label type to label prefix.
802 (defvar reftex-typekey-to-prefix-alist nil)
804 ;; Alist relating environments or macros to label type and context regexp.
805 (defvar reftex-env-or-mac-alist nil)
807 ;; List of special environment parser functions
808 (defvar reftex-special-env-parsers nil)
810 ;; List of macros carrying a label.
811 (defvar reftex-label-mac-list nil)
813 ;; List of environments carrying a label.
814 (defvar reftex-label-env-list nil)
816 ;; List of all typekey letters in use.
817 (defvar reftex-typekey-list nil)
819 ;; Alist relating magic words to a label type.
820 (defvar reftex-words-to-typekey-alist nil)
821 ;; Alist relating label prefixes to a label type.
822 (defvar reftex-prefix-to-typekey-alist nil)
824 ;; The last list-of-labels entry used in a reference.
825 (defvar reftex-last-used-reference (list nil nil nil nil))
827 ;; Alist relating index macros to other info.
828 (defvar reftex-key-to-index-macro-alist nil)
829 ;; Prompt for index macro queries
830 (defvar reftex-query-index-macro-prompt nil)
831 ;; Help string for index macro queries
832 (defvar reftex-query-index-macro-help nil)
834 ;; The message when follow-mode is suspended
835 (defvar reftex-no-follow-message
836 "No follow-mode into unvisited file. Press SPC to visit it.")
837 (defvar reftex-no-info-message
838 "%s: info not available, use `\\[reftex-view-crossref]' to get it.")
840 ;; Global variables used for communication between functions.
841 (defvar reftex-default-context-position nil)
842 (defvar reftex-location-start nil)
843 (defvar reftex-call-back-to-this-buffer nil)
844 (defvar reftex-select-return-marker (make-marker))
845 (defvar reftex-active-toc nil)
846 (defvar reftex-tex-path nil)
847 (defvar reftex-bib-path nil)
848 (defvar reftex-select-marked nil)
849 (defvar reftex-last-follow-point nil)
850 (defvar reftex-latex-syntax-table nil)
851 (defvar reftex-prefix nil)
852 (defvar reftex-section-levels-all nil)
853 (defvar reftex-buffers-with-changed-invisibility nil)
854 (defvar reftex-callback-fwd t)
855 (defvar reftex-last-toc-master nil
856 "Stores the name of the tex file that `reftex-toc' was last run on.")
857 ;; Marker for return point from recursive edit
858 (defvar reftex-recursive-edit-marker (make-marker))
860 ;; List of buffers created temporarily for lookup, which should be killed.
861 (defvar reftex-buffers-to-kill nil)
863 ;; Regexp to find anything.
864 (defvar reftex-section-regexp nil)
865 (defvar reftex-section-or-include-regexp nil)
866 (defvar reftex-index-macro-regexp nil)
867 (defvar reftex-index-level-re nil)
868 (defvar reftex-index-key-end-re nil)
869 (defvar reftex-find-index-entry-regexp-format nil)
870 (defvar reftex-everything-regexp nil)
871 (defvar reftex-everything-regexp-no-index nil)
872 (defvar reftex-index-re nil)
873 (defvar reftex-find-citation-regexp-format
874 "\\\\\\([a-zA-Z]*cite[*a-zA-Z]*\\*?\\|bibentry\\)\\(\\[[^]]*\\]\\|{[^}]*}\\)*{\\([^}]*,\\)?\\(%s\\)[},]")
875 (defvar reftex-find-reference-format
876 "\\\\\\(ref[a-zA-Z]*\\|[a-zA-Z]*ref\\(range\\)?\\)\\*?\\(\\[[^]]*\\]\\|{[^}]*}\\)*{\\(%s\\)}")
877 (defvar reftex-macros-with-labels nil)
878 (defvar reftex-macros-with-index nil)
879 (defvar reftex-index-macro-alist nil)
880 (defvar reftex-find-label-regexp-format nil)
881 (defvar reftex-find-label-regexp-format2 nil)
883 (defvar reftex-memory nil
884 "Memorizes old variable values to indicate changes in these variables.")
886 ;; A list of all variables in the cache.
887 ;; The cache is used to save the compiled versions of some variables.
888 (defconst reftex-cache-variables
889 '(reftex-memory ;; This MUST ALWAYS be the first!
891 ;; Outline
892 reftex-section-levels-all
894 ;; Labels
895 reftex-env-or-mac-alist
896 reftex-special-env-parsers
897 reftex-macros-with-labels
898 reftex-label-mac-list
899 reftex-label-env-list
900 reftex-typekey-list
901 reftex-typekey-to-format-alist
902 reftex-typekey-to-prefix-alist
903 reftex-words-to-typekey-alist
904 reftex-prefix-to-typekey-alist
905 reftex-type-query-prompt
906 reftex-type-query-help
908 ;; Index
909 reftex-index-macro-alist
910 reftex-macros-with-index
911 reftex-query-index-macro-prompt
912 reftex-query-index-macro-help
913 reftex-key-to-index-macro-alist
915 ;; Regular expressions
916 reftex-section-regexp
917 reftex-section-or-include-regexp
918 reftex-index-re
919 reftex-everything-regexp
920 reftex-everything-regexp-no-index
921 reftex-find-label-regexp-format
922 reftex-find-label-regexp-format2
923 reftex-find-index-entry-regexp-format
926 (defun reftex-ensure-compiled-variables ()
927 ;; Recompile the label alist when necessary
928 (let* ((mem reftex-memory)
929 (cache (get reftex-docstruct-symbol 'reftex-cache))
930 (cmem (car cache))
931 (alist reftex-label-alist)
932 (levels (get reftex-docstruct-symbol 'reftex-section-levels))
933 (style (get reftex-docstruct-symbol 'reftex-label-alist-style))
934 (default reftex-default-label-alist-entries)
935 (index reftex-index-macros)
936 (istyle (get reftex-docstruct-symbol 'reftex-index-macros-style)))
937 (cond
938 (reftex-tables-dirty (reftex-compile-variables))
939 ((and (eq alist (nth 0 mem))
940 (eq levels (nth 1 mem))
941 (eq style (nth 2 mem))
942 (eq default (nth 3 mem))
943 (eq index (nth 4 mem))
944 (eq istyle (nth 5 mem)))) ;; everything is OK
945 ((and (eq alist (nth 0 cmem))
946 (eq levels (nth 1 cmem))
947 (eq style (nth 2 cmem))
948 (eq default (nth 2 cmem))
949 (eq index (nth 4 cmem))
950 (eq istyle (nth 5 cmem)))
951 ;; restore the cache
952 (message "Restoring cache")
953 (mapcar (lambda (sym) (set sym (pop cache))) reftex-cache-variables))
954 (t (reftex-compile-variables)))))
956 (defun reftex-reset-mode ()
957 "Reset RefTeX Mode.
958 This will re-compile the configuration information and remove all
959 current scanning information and the parse file to enforce a rescan
960 on next use."
961 (interactive)
963 ;; Reset the file search path variables
964 (loop for prop in '(status master-dir recursive-path rec-type) do
965 (put 'reftex-tex-path prop nil)
966 (put 'reftex-bib-path prop nil))
968 ;; Kill temporary buffers associated with RefTeX - just in case they
969 ;; were not cleaned up properly
970 (save-excursion
971 (let ((buffer-list '("*RefTeX Help*" "*RefTeX Select*"
972 "*Duplicate Labels*" "*toc*" " *RefTeX-scratch*"))
973 buf)
974 (while (setq buf (pop buffer-list))
975 (if (get-buffer buf)
976 (kill-buffer buf))))
977 (reftex-erase-all-selection-and-index-buffers))
979 ;; Make sure the current document will be rescanned soon.
980 (reftex-reset-scanning-information)
982 ;; Remove any parse info file
983 (reftex-access-parse-file 'kill)
985 ;; Plug functions into AUCTeX if the user option says so.
986 (and reftex-plug-into-AUCTeX
987 (reftex-plug-into-AUCTeX))
989 (reftex-compile-variables))
991 ;;;###autoload
992 (defun reftex-reset-scanning-information ()
993 "Reset the symbols containing information from buffer scanning.
994 This enforces rescanning the buffer on next use."
995 (if (string= reftex-last-toc-master (reftex-TeX-master-file))
996 (reftex-erase-buffer "*toc*"))
997 (let ((symlist reftex-multifile-symbols)
998 symbol)
999 (while symlist
1000 (setq symbol (car symlist)
1001 symlist (cdr symlist))
1002 (if (and (symbolp (symbol-value symbol))
1003 (not (null (symbol-value symbol))))
1004 (set (symbol-value symbol) nil)))))
1006 (defun reftex-erase-all-selection-and-index-buffers ()
1007 ;; Remove all selection buffers associated with current document.
1008 (mapc
1009 (lambda (type)
1010 (reftex-erase-buffer (reftex-make-selection-buffer-name type)))
1011 reftex-typekey-list)
1012 ;; Kill all index buffers
1013 (mapc
1014 (lambda (tag)
1015 (reftex-kill-buffer (reftex-make-index-buffer-name tag)))
1016 (cdr (assoc 'index-tags (symbol-value reftex-docstruct-symbol)))))
1018 (defun reftex-compile-variables ()
1019 ;; Compile the information in reftex-label-alist & Co.
1021 (message "Compiling label environment definitions...")
1023 ;; Update AUCTeX style information
1024 (when (and (featurep 'tex-site) (fboundp 'TeX-update-style))
1025 (condition-case nil (TeX-update-style) (error nil)))
1027 ;; Record that we have done this, and what we have used.
1028 (setq reftex-tables-dirty nil)
1029 (setq reftex-memory
1030 (list reftex-label-alist
1031 (get reftex-docstruct-symbol 'reftex-section-levels)
1032 (get reftex-docstruct-symbol 'reftex-label-alist-style)
1033 reftex-default-label-alist-entries
1034 reftex-index-macros
1035 (get reftex-docstruct-symbol 'reftex-index-macros-style)))
1037 ;; Compile information in reftex-label-alist
1038 (let ((all (reftex-uniquify-by-car
1039 (reftex-splice-symbols-into-list
1040 (append reftex-label-alist
1041 (get reftex-docstruct-symbol
1042 'reftex-label-alist-style)
1043 reftex-default-label-alist-entries)
1044 reftex-label-alist-builtin)
1045 '(nil)))
1046 (all-index (reftex-uniquify-by-car
1047 (reftex-splice-symbols-into-list
1048 (append reftex-index-macros
1049 (get reftex-docstruct-symbol
1050 'reftex-index-macros-style)
1051 '(default))
1052 reftex-index-macros-builtin)))
1053 entry env-or-mac typekeychar typekey prefix context word
1054 fmt reffmt labelfmt wordlist qh-list macros-with-labels
1055 nargs nlabel opt-args cell sum i
1056 macro verify repeat nindex tag key toc-level toc-levels)
1058 (setq reftex-words-to-typekey-alist nil
1059 reftex-prefix-to-typekey-alist
1060 '(("sec:" . "s") ("cha:" . "s") ("chap:" . "s"))
1061 reftex-typekey-list nil
1062 reftex-typekey-to-format-alist nil
1063 reftex-typekey-to-prefix-alist nil
1064 reftex-env-or-mac-alist nil
1065 reftex-label-env-list nil
1066 reftex-label-mac-list nil)
1067 (while all
1068 (catch 'next-entry
1069 (setq entry (car all)
1070 env-or-mac (car entry)
1071 entry (cdr entry)
1072 all (cdr all))
1073 (if (null env-or-mac)
1074 (setq env-or-mac ""))
1075 (if (stringp (car entry))
1076 ;; This is before version 2.00 - convert entry to new format
1077 ;; This is just to keep old users happy
1078 (setq entry (cons (string-to-char (car entry))
1079 (cons (concat (car entry) ":")
1080 (cdr entry)))))
1081 (setq typekeychar (nth 0 entry)
1082 typekey (if typekeychar (char-to-string typekeychar) nil)
1083 prefix (nth 1 entry)
1084 fmt (nth 2 entry)
1085 context (nth 3 entry)
1086 wordlist (nth 4 entry)
1087 toc-level (nth 5 entry))
1088 (if (stringp wordlist)
1089 ;; This is before version 2.04 - convert to new format
1090 (setq wordlist (nthcdr 4 entry)))
1092 (if (and (stringp fmt)
1093 (string-match "@" fmt))
1094 ;; Special syntax for specifying a label format
1095 (setq fmt (split-string fmt "@+"))
1096 (setq fmt (list "\\label{%s}" fmt)))
1097 (setq labelfmt (car fmt)
1098 reffmt (nth 1 fmt))
1099 ;; Note a new typekey
1100 (if typekey
1101 (add-to-list 'reftex-typekey-list typekey))
1102 (if (and typekey prefix
1103 (not (assoc prefix reftex-prefix-to-typekey-alist)))
1104 (add-to-list 'reftex-prefix-to-typekey-alist
1105 (cons prefix typekey)))
1106 (if (and typekey prefix
1107 (not (assoc typekey reftex-typekey-to-prefix-alist)))
1108 (add-to-list 'reftex-typekey-to-prefix-alist
1109 (cons typekey prefix)))
1110 ;; Check if this is a macro or environment
1111 (cond
1112 ((symbolp env-or-mac)
1113 ;; A special parser function
1114 (unless (fboundp env-or-mac)
1115 (message "Warning: %s does not seem to be a valid function"
1116 env-or-mac))
1117 (setq nargs nil nlabel nil opt-args nil)
1118 (add-to-list 'reftex-special-env-parsers env-or-mac)
1119 (setq env-or-mac (symbol-name env-or-mac)))
1120 ((string-match "\\`\\\\" env-or-mac)
1121 ;; It's a macro
1122 (let ((result (reftex-parse-args env-or-mac)))
1123 (setq env-or-mac (or (first result) env-or-mac)
1124 nargs (second result)
1125 nlabel (third result)
1126 opt-args (fourth result))
1127 (if nlabel (add-to-list 'macros-with-labels env-or-mac)))
1128 (if typekey (add-to-list 'reftex-label-mac-list env-or-mac)))
1130 ;; It's an environment
1131 (setq nargs nil nlabel nil opt-args nil)
1132 (cond ((string= env-or-mac "any"))
1133 ((string= env-or-mac ""))
1134 ((string= env-or-mac "section"))
1136 (add-to-list 'reftex-label-env-list env-or-mac)
1137 (if toc-level
1138 (let ((string (format "begin{%s}" env-or-mac)))
1139 (or (assoc string toc-levels)
1140 (push (cons string toc-level) toc-levels))))))))
1141 ;; Translate some special context cases
1142 (when (assq context reftex-default-context-regexps)
1143 (setq context
1144 (format
1145 (cdr (assq context reftex-default-context-regexps))
1146 (regexp-quote env-or-mac))))
1147 ;; See if this is the first format for this typekey
1148 (and reffmt
1149 (not (assoc typekey reftex-typekey-to-format-alist))
1150 (push (cons typekey reffmt) reftex-typekey-to-format-alist))
1151 ;; See if this is the first definition for this env-or-mac
1152 (and (not (string= env-or-mac "any"))
1153 (not (string= env-or-mac ""))
1154 (not (assoc env-or-mac reftex-env-or-mac-alist))
1155 (push (list env-or-mac typekey context labelfmt
1156 nargs nlabel opt-args)
1157 reftex-env-or-mac-alist))
1158 ;; Are the magic words regular expressions? Quote normal words.
1159 (if (eq (car wordlist) 'regexp)
1160 (setq wordlist (cdr wordlist))
1161 (setq wordlist (mapcar 'regexp-quote wordlist)))
1162 ;; Remember the first association of each word.
1163 (while (stringp (setq word (pop wordlist)))
1164 (or (assoc word reftex-words-to-typekey-alist)
1165 (push (cons word typekey) reftex-words-to-typekey-alist)))
1166 (cond
1167 ((string= "" env-or-mac) nil)
1168 ((setq cell (assoc typekey qh-list))
1169 (push env-or-mac (cdr cell)))
1170 (typekey
1171 (push (list typekey env-or-mac) qh-list)))))
1173 (setq reftex-typekey-to-prefix-alist
1174 (nreverse reftex-typekey-to-prefix-alist))
1176 ;; Prepare the typekey query prompt and help string.
1177 (setq qh-list
1178 (sort qh-list
1179 (lambda (x1 x2)
1180 (string< (downcase (car x1)) (downcase (car x2))))))
1181 (setq reftex-type-query-prompt
1182 (concat "Label type: ["
1183 (mapconcat (lambda(x) (format "%s" (car x)))
1184 qh-list "")
1185 "]"))
1186 ;; In the help string, we need to wrap lines...
1187 (setq reftex-type-query-help
1188 (concat
1189 "SELECT A LABEL TYPE:\n--------------------\n"
1190 (mapconcat
1191 (lambda(x)
1192 (setq sum 0)
1193 (format " [%s] %s"
1194 (car x)
1195 (mapconcat (lambda(env)
1196 (setq sum (+ sum (length env)))
1197 (if (< sum 60)
1199 (setq sum 0)
1200 (concat "\n " env)))
1201 (cdr x) " ")))
1202 qh-list "\n")))
1204 ;; Convert magic words to regular expressions. We make regular expressions
1205 ;; which allow for some chars from the ref format to be in the buffer.
1206 ;; These characters will be seen and removed.
1207 (setq reftex-words-to-typekey-alist
1208 (mapcar
1209 (lambda (x)
1210 (setq word (car x)
1211 typekey (cdr x)
1212 fmt (cdr (assoc typekey reftex-typekey-to-format-alist)))
1213 (setq word (concat "\\W\\(" word "[ \t\n\r]*\\)\\("))
1214 (setq i 0)
1215 (while (and (< i 10) ; maximum number of format chars allowed
1216 (< i (length fmt))
1217 (not (member (aref fmt i) '(?%))))
1218 (setq word (concat word "\\|" (regexp-quote
1219 (substring fmt 0 (1+ i)))))
1220 (incf i))
1221 (cons (concat word "\\)\\=") typekey))
1222 (nreverse reftex-words-to-typekey-alist)))
1224 ;; Parse the index macros
1225 (setq reftex-index-macro-alist nil
1226 reftex-key-to-index-macro-alist nil
1227 reftex-macros-with-index nil)
1228 (while all-index
1229 (setq entry (car all-index)
1230 macro (car entry)
1231 tag (nth 1 entry)
1232 key (nth 2 entry)
1233 prefix (or (nth 3 entry) "")
1234 verify (nth 4 entry)
1235 ;; For repeat, we need to be compatible with older code
1236 ;; This information used to be given only for the default macro,
1237 ;; but later we required to have it for *every* index macro
1238 repeat (cond ((> (length entry) 5) (nth 5 entry))
1239 ((and (eq key (car reftex-index-default-macro))
1240 (> (length reftex-index-default-macro) 2))
1241 ;; User has old setting - respect it
1242 (nth 2 reftex-index-default-macro))
1243 (t t))
1244 all-index (cdr all-index))
1245 (let ((result (reftex-parse-args macro)))
1246 (setq macro (or (first result) macro)
1247 nargs (second result)
1248 nindex (third result)
1249 opt-args (fourth result))
1250 (unless (member macro reftex-macros-with-index)
1251 ;; 0 1 2 3 4 5 6 7
1252 (push (list macro tag prefix verify nargs nindex opt-args repeat)
1253 reftex-index-macro-alist)
1254 (or (assoc key reftex-key-to-index-macro-alist)
1255 (push (list key macro) reftex-key-to-index-macro-alist))
1256 (push macro reftex-macros-with-index))))
1257 ;; Make the prompt and help string for index macros query
1258 (setq reftex-key-to-index-macro-alist
1259 (sort reftex-key-to-index-macro-alist
1260 (lambda (a b) (< (downcase (car a)) (downcase (car b))))))
1261 (setq reftex-query-index-macro-prompt
1262 (concat "Index macro: ["
1263 (mapconcat (lambda (x) (char-to-string (car x)))
1264 reftex-key-to-index-macro-alist "")
1265 "]"))
1266 (setq i 0
1267 reftex-query-index-macro-help
1268 (concat
1269 "SELECT A MACRO:\n---------------\n"
1270 (mapconcat
1271 (lambda(x)
1272 (format "[%c] %-20.20s%s" (car x) (nth 1 x)
1273 (if (= 0 (mod (incf i) 3)) "\n" "")))
1274 reftex-key-to-index-macro-alist "")))
1276 ;; Make the full list of section levels
1277 (setq reftex-section-levels-all
1278 (append toc-levels
1279 (get reftex-docstruct-symbol 'reftex-section-levels)
1280 reftex-section-levels))
1282 ;; Calculate the regular expressions
1283 (let* (
1284 ; (wbol "\\(\\`\\|[\n\r]\\)[ \t]*")
1285 (wbol "\\(^\\)[ \t]*") ; Need to keep the empty group because
1286 ;;; because match number are hard coded
1287 (label-re (concat "\\(?:"
1288 ;; Normal \label{...}
1289 "\\\\label{\\([^}]*\\)}"
1290 "\\|"
1291 ;; keyvals [..., label = {foo}, ...]
1292 ;; forms used by ctable, listings,
1293 ;; minted, ...
1294 "\\[[^]]*label[[:space:]]*=[[:space:]]*{?\\(?1:[^],}]+\\)}?"
1295 "\\)"))
1296 (include-re (concat wbol
1297 "\\\\\\("
1298 (mapconcat 'identity
1299 reftex-include-file-commands "\\|")
1300 "\\)[{ \t]+\\([^} \t\n\r]+\\)"))
1301 (section-re
1302 (concat wbol "\\\\\\("
1303 (mapconcat (lambda (x) (regexp-quote (car x)))
1304 reftex-section-levels-all "\\|")
1305 "\\)\\*?\\(\\[[^]]*\\]\\)?[[{ \t\r\n]"))
1306 (appendix-re (concat wbol "\\(\\\\appendix\\)"))
1307 (macro-re
1308 (if macros-with-labels
1309 (concat "\\("
1310 (mapconcat 'regexp-quote macros-with-labels "\\|")
1311 "\\)[[{]")
1312 ""))
1313 (index-re
1314 (concat "\\("
1315 (mapconcat 'regexp-quote reftex-macros-with-index "\\|")
1316 "\\)[[{]"))
1317 (find-index-re-format
1318 (concat "\\("
1319 (mapconcat 'regexp-quote reftex-macros-with-index "\\|")
1320 "\\)\\([[{][^]}]*[]}]\\)*[[{]\\(%s\\)[]}]"))
1321 (find-label-re-format
1322 (concat "\\("
1323 "label[[:space:]]*=[[:space:]]*"
1324 "\\|"
1325 (mapconcat 'regexp-quote (append '("\\label")
1326 macros-with-labels) "\\|")
1327 "\\)\\([[{][^]}]*[]}]\\)*[[{]\\(%s\\)[]}]"))
1328 (index-level-re
1329 (regexp-quote (nth 0 reftex-index-special-chars)))
1330 (index-key-end-re ;; ^]- not allowed
1331 (concat "[^" (nth 3 reftex-index-special-chars) "]"
1332 "[" (nth 1 reftex-index-special-chars)
1333 (nth 2 reftex-index-special-chars) "]"))
1335 (setq reftex-section-regexp section-re
1336 reftex-section-or-include-regexp
1337 (concat section-re "\\|" include-re)
1338 reftex-everything-regexp
1339 (concat label-re "\\|" section-re "\\|" include-re
1340 "\\|" appendix-re
1341 "\\|" index-re
1342 (if macros-with-labels "\\|" "") macro-re)
1343 reftex-everything-regexp-no-index
1344 (concat label-re "\\|" section-re "\\|" include-re
1345 "\\|" appendix-re
1346 "\\|" "\\(\\\\6\\\\3\\\\1\\)" ; This is unlikely to match
1347 (if macros-with-labels "\\|" "") macro-re)
1348 reftex-index-re index-re
1349 reftex-index-level-re index-level-re
1350 reftex-index-key-end-re index-key-end-re
1351 reftex-macros-with-labels macros-with-labels
1352 reftex-find-index-entry-regexp-format find-index-re-format
1353 reftex-find-label-regexp-format find-label-re-format
1354 reftex-find-label-regexp-format2
1355 "\\([]} \t\n\r]\\)\\([[{]\\)\\(%s\\)[]}]")
1356 (message "Compiling label environment definitions...done")))
1357 (put reftex-docstruct-symbol 'reftex-cache
1358 (mapcar 'symbol-value reftex-cache-variables)))
1360 (defun reftex-parse-args (macro)
1361 ;; Return a list of macro name, nargs, arg-nr which is label and a list of
1362 ;; optional argument indices.
1363 (if (string-match "[[{]\\*?[]}]" macro)
1364 (progn
1365 (let ((must-match (substring macro 0 (match-beginning 0)))
1366 (args (substring macro (match-beginning 0)))
1367 opt-list nlabel (cnt 0))
1368 (while (string-match "\\`[[{]\\(\\*\\)?[]}]" args)
1369 (incf cnt)
1370 (when (eq ?\[ (string-to-char args))
1371 (push cnt opt-list))
1372 (when (and (match-end 1)
1373 (not nlabel))
1374 (setq nlabel cnt))
1375 (setq args (substring args (match-end 0))))
1376 (list must-match cnt nlabel opt-list)))
1377 nil))
1379 ;;; =========================================================================
1381 ;;; Accessing the parse information
1383 (defun reftex-access-scan-info (&optional rescan file)
1384 "Ensure access to the scanning info for the current file."
1385 ;; When the multifile symbols are not yet tied,
1386 ;; tie them. When they are empty or RESCAN is non-nil, scan the document.
1387 ;; But, when RESCAN is -1, don't rescan even if docstruct is empty.
1388 ;; When FILE is non-nil, parse only from that file.
1390 ;; Error out in a buffer without a file.
1391 (if (and reftex-mode
1392 (not (buffer-file-name)))
1393 (error "RefTeX works only in buffers visiting a file"))
1395 ;; Make sure we have the symbols tied
1396 (if (eq reftex-docstruct-symbol nil)
1397 ;; Symbols are not yet tied: Tie them.
1398 (reftex-tie-multifile-symbols))
1400 (reftex-ensure-compiled-variables)
1402 (when (or (null (symbol-value reftex-docstruct-symbol))
1403 (member rescan '(t 1 (4) (16))))
1404 ;; The docstruct will change: Remove selection buffers.
1405 (save-excursion
1406 (reftex-erase-buffer "*toc*")
1407 (reftex-erase-all-selection-and-index-buffers)))
1409 (if (and (null (symbol-value reftex-docstruct-symbol))
1410 (not (member rescan '(t 1 (4) (16))))
1411 reftex-save-parse-info)
1412 ;; Try to read the stuff from a file
1413 (reftex-access-parse-file 'read))
1415 (cond
1416 ((equal rescan -1)) ;; We are not allowed to scan.
1417 ((not (symbol-value reftex-docstruct-symbol))
1418 ;; Scan the whole document
1419 (reftex-do-parse 1 file))
1420 ((member rescan '(t 1 (4) (16)))
1421 ;; Scan whatever was required by the caller.
1422 (reftex-do-parse rescan file))))
1424 (defun reftex-scanning-info-available-p ()
1425 "Is the scanning info about the current document available?"
1426 (unless reftex-docstruct-symbol
1427 (reftex-tie-multifile-symbols))
1428 (and (symbolp reftex-docstruct-symbol)
1429 (symbol-value reftex-docstruct-symbol)
1432 (defun reftex-silence-toc-markers (list n)
1433 ;; Set all toc markers in the first N entries in list to nil
1434 (while (and list (> (decf n) -1))
1435 (and (eq (car (car list)) 'toc)
1436 (markerp (nth 4 (car list)))
1437 (set-marker (nth 4 (car list)) nil))
1438 (pop list)))
1440 (defun reftex-access-parse-file (action)
1441 "Perform ACTION on the parse file (the .rel file).
1442 Valid actions are: readable, restore, read, kill, write."
1443 (let* ((list (symbol-value reftex-docstruct-symbol))
1444 (docstruct-symbol reftex-docstruct-symbol)
1445 (master (reftex-TeX-master-file))
1446 (enable-local-variables nil)
1447 (file (if (string-match "\\.[a-zA-Z]+\\'" master)
1448 (concat (substring master 0 (match-beginning 0))
1449 reftex-parse-file-extension)
1450 (concat master reftex-parse-file-extension))))
1451 (cond
1452 ((eq action 'readable)
1453 (file-readable-p file))
1454 ((eq action 'restore)
1455 (put reftex-docstruct-symbol 'modified nil)
1456 (if (eq reftex-docstruct-symbol nil)
1457 ;; Symbols are not yet tied: Tie them.
1458 (reftex-tie-multifile-symbols))
1459 (if (file-exists-p file)
1460 ;; load the file and return t for success
1461 (condition-case nil
1462 (progn (load-file file) t)
1463 (error (set reftex-docstruct-symbol nil)
1464 (error "Error while loading file %s" file)))
1465 ;; Throw an exception if the file does not exist
1466 (error "No restore file %s" file)))
1467 ((eq action 'read)
1468 (put reftex-docstruct-symbol 'modified nil)
1469 (if (file-exists-p file)
1470 ;; load the file and return t for success
1471 (condition-case nil
1472 (progn
1473 (load-file file)
1474 (reftex-check-parse-consistency)
1476 (error (message "Error while restoring file %s" file)
1477 (set reftex-docstruct-symbol nil)
1478 nil))
1479 ;; return nil for failure, but no exception
1480 nil))
1481 ((eq action 'kill)
1482 ;; Remove the file
1483 (when (and (file-exists-p file) (file-writable-p file))
1484 (message "Unlinking file %s" file)
1485 (delete-file file)))
1487 (put docstruct-symbol 'modified nil)
1488 (save-excursion
1489 (if (file-writable-p file)
1490 (with-temp-file file
1491 (message "Writing parse file %s" (abbreviate-file-name file))
1492 (insert (format ";; RefTeX parse info file\n"))
1493 (insert (format ";; File: %s\n" master))
1494 (insert (format ";; User: %s (%s)\n\n"
1495 (user-login-name) (user-full-name)))
1496 (insert "(set reftex-docstruct-symbol '(\n\n")
1497 (let ((standard-output (current-buffer)))
1498 (mapc
1499 (lambda (x)
1500 (cond ((eq (car x) 'toc)
1501 ;; A toc entry. Do not save the marker.
1502 ;; Save the markers position at position 8
1503 (print (list 'toc "toc" (nth 2 x) (nth 3 x)
1504 nil (nth 5 x) (nth 6 x) (nth 7 x)
1505 (or (and (markerp (nth 4 x))
1506 (marker-position (nth 4 x)))
1507 (nth 8 x)))))
1508 ((and (not (eq t reftex-support-index))
1509 (eq (car x) 'index))
1510 ;; Don't save index entries
1512 (t (print x))))
1513 list))
1514 (insert "))\n\n"))
1515 (error "Cannot write to file %s" file)))
1516 t))))
1518 (defun reftex-check-parse-consistency ()
1519 ;; Check if parse file is consistent, throw an error if not.
1521 ;; Check if the master is the same: when moving a document, this will see it.
1522 (let* ((real-master (reftex-TeX-master-file))
1523 (parsed-master
1524 (nth 1 (assq 'bof (symbol-value reftex-docstruct-symbol)))))
1525 (unless (string= (file-truename real-master) (file-truename parsed-master))
1526 (message "Master file name in load file is different: %s versus %s"
1527 parsed-master real-master)
1528 (error "Master file name error")))
1530 ;; Check for the existence of all document files
1531 ;;; (let* ((all (symbol-value reftex-docstruct-symbol)))
1532 ;;; (while all
1533 ;;; (when (and (eq (car (car all)) 'bof)
1534 ;;; (not (file-regular-p (nth 1 (car all)))))
1535 ;;; (message "File %s in saved parse info not available" (cdr (car all)))
1536 ;;; (error "File not found"))
1537 ;;; (setq all (cdr all))))
1540 (defun reftex-select-external-document (xr-alist xr-index)
1541 ;; Return index of an external document.
1542 (let* ((len (length xr-alist)) (highest (1- (+ ?0 len)))
1543 (prompt (format "[%c-%c] Select TAB: Read prefix with completion"
1544 ?0 highest))
1545 key prefix)
1546 (cond
1547 ((= len 1)
1548 (message "No external documents available")
1549 (ding) (sit-for 1) 0)
1550 ((= len 2)
1551 (- 1 xr-index))
1553 (save-excursion
1554 (let* ((length (apply 'max (mapcar
1555 (lambda(x) (length (car x))) xr-alist)))
1556 (fmt (format " [%%c] %%-%ds %%s\n" length))
1557 (n (1- ?0)))
1558 (setq key
1559 (reftex-select-with-char
1560 prompt
1561 (concat
1562 "SELECT EXTERNAL DOCUMENT\n------------------------\n"
1563 (mapconcat
1564 (lambda (x)
1565 (format fmt (incf n) (or (car x) "")
1566 (abbreviate-file-name (cdr x))))
1567 xr-alist ""))
1568 nil t))
1569 (cond
1570 ((and (>= key ?0) (<= key highest)) (- key ?0))
1571 ((= key ?\C-i)
1572 (setq prefix (completing-read "Prefix: " xr-alist nil t))
1573 (- len (length (memq (assoc prefix xr-alist) xr-alist))))
1574 (t (error "Invalid document selection [%c]" key)))))))))
1576 ;;; =========================================================================
1578 ;;; Finding files
1580 (defun reftex-locate-file (file type master-dir &optional die)
1581 "Find FILE of type TYPE in MASTER-DIR or on the path associated with TYPE.
1582 If the file does not have any of the valid extensions for TYPE,
1583 try first the default extension and only then the naked file name.
1584 When DIE is non-nil, throw an error if file not found."
1585 (let* ((rec-values (if reftex-search-unrecursed-path-first '(nil t) '(t)))
1586 (extensions (cdr (assoc type reftex-file-extensions)))
1587 (def-ext (car extensions))
1588 (ext-re (concat "\\("
1589 (mapconcat 'regexp-quote extensions "\\|")
1590 "\\)\\'"))
1591 (files (if (string-match ext-re file)
1592 (cons file nil)
1593 (if reftex-try-all-extensions
1594 (append (mapcar (lambda (x) (concat file x))
1595 extensions)
1596 (list file))
1597 (list (concat file def-ext) file))))
1598 path old-path file1 f fs)
1599 (cond
1600 ((file-name-absolute-p file)
1601 (while (setq f (pop files))
1602 (if (file-regular-p f)
1603 (setq file1 f files nil))))
1604 ((and reftex-use-external-file-finders
1605 (assoc type reftex-external-file-finders))
1606 (setq file1 (reftex-find-file-externally file type master-dir)))
1608 (while (and (null file1) rec-values)
1609 (setq path (reftex-access-search-path
1610 type (pop rec-values) master-dir file))
1611 (setq fs files)
1612 (while (and (null file1) (setq f (pop fs)))
1613 (when (or (null old-path)
1614 (not (eq old-path path)))
1615 (setq old-path path
1616 path (cons master-dir path))
1617 (setq file1 (reftex-find-file-on-path f path master-dir)))))))
1618 (cond (file1 file1)
1619 (die (error "No such file: %s" file) nil)
1620 (t (message "No such file: %s (ignored)" file) nil))))
1622 (defun reftex-find-file-externally (file type &optional master-dir)
1623 ;; Use external program to find FILE.
1624 ;; The program is taken from `reftex-external-file-finders'.
1625 ;; Interpret relative path definitions starting from MASTER-DIR.
1626 (let ((default-directory (or master-dir default-directory))
1627 (prg (cdr (assoc type reftex-external-file-finders)))
1628 out)
1629 (if (string-match "%f" prg)
1630 (setq prg (replace-match file t t prg)))
1631 (setq out (apply 'reftex-process-string (split-string prg)))
1632 (if (string-match "[ \t\n]+\\'" out) ; chomp
1633 (setq out (replace-match "" nil nil out)))
1634 (cond ((equal out "") nil)
1635 ((file-regular-p out) (expand-file-name out master-dir))
1636 (t nil))))
1638 (defun reftex-process-string (program &rest args)
1639 "Execute PROGRAM with arguments ARGS and return its STDOUT as a string."
1640 (let ((calling-dir default-directory)) ; remember default directory
1641 (with-output-to-string
1642 (with-current-buffer standard-output
1643 (let ((default-directory calling-dir)) ; set default directory
1644 (apply 'call-process program nil '(t nil) nil args))))))
1646 (defun reftex-access-search-path (type &optional recurse master-dir file)
1647 ;; Access path from environment variables. TYPE is either "tex" or "bib".
1648 ;; When RECURSE is t, expand path elements ending in `//' recursively.
1649 ;; Relative path elements are left as they are. However, relative recursive
1650 ;; elements are expanded with MASTER-DIR as default directory.
1651 ;; The expanded path is cached for the next search.
1652 ;; FILE is just for the progress message.
1653 ;; Returns the derived path.
1654 (let* ((pathvar (intern (concat "reftex-" type "-path"))))
1655 (when (null (get pathvar 'status))
1656 ;; Get basic path
1657 (set pathvar
1658 (reftex-uniquify
1659 (reftex-parse-colon-path
1660 (mapconcat
1661 (lambda(x)
1662 (if (string-match "^!" x)
1663 (apply 'reftex-process-string
1664 (split-string (substring x 1)))
1665 (or (getenv x) x)))
1666 ;; For consistency, the next line should look like this:
1667 ;; (cdr (assoc type reftex-path-environment))
1668 ;; However, historically we have separate options for the
1669 ;; environment variables, so we have to do this:
1670 (symbol-value (intern (concat "reftex-" type
1671 "path-environment-variables")))
1672 path-separator))))
1673 (put pathvar 'status 'split)
1674 ;; Check if we have recursive elements
1675 (let ((path (symbol-value pathvar)) dir rec)
1676 (while (setq dir (pop path))
1677 (when (string= (substring dir -2) "//")
1678 (if (file-name-absolute-p dir)
1679 (setq rec (or rec 'absolute))
1680 (setq rec 'relative))))
1681 (put pathvar 'rec-type rec)))
1683 (if recurse
1684 ;; Return the recursive expansion of the path
1685 (cond
1686 ((not (get pathvar 'rec-type))
1687 ;; Path does not contain recursive elements - use simple path
1688 (symbol-value pathvar))
1689 ((or (not (get pathvar 'recursive-path))
1690 (and (eq (get pathvar 'rec-type) 'relative)
1691 (not (equal master-dir (get pathvar 'master-dir)))))
1692 ;; Either: We don't have a recursive expansion yet.
1693 ;; or: Relative recursive path elements need to be expanded
1694 ;; relative to new default directory
1695 (message "Expanding search path to find %s file: %s ..." type file)
1696 (put pathvar 'recursive-path
1697 (reftex-expand-path (symbol-value pathvar) master-dir))
1698 (put pathvar 'master-dir master-dir)
1699 (get pathvar 'recursive-path))
1701 ;; Recursive path computed earlier is still OK.
1702 (get pathvar 'recursive-path)))
1703 ;; The simple path was requested
1704 (symbol-value pathvar))))
1706 (defun reftex-find-file-on-path (file path &optional def-dir)
1707 ;; Find FILE along the directory list PATH.
1708 ;; DEF-DIR is the default directory for expanding relative path elements.
1709 (catch 'exit
1710 (when (file-name-absolute-p file)
1711 (if (file-regular-p file)
1712 (throw 'exit file)
1713 (throw 'exit nil)))
1714 (let* ((thepath path) file1 dir)
1715 (while (setq dir (pop thepath))
1716 (when (string= (substring dir -2) "//")
1717 (setq dir (substring dir 0 -1)))
1718 (setq file1 (expand-file-name file (expand-file-name dir def-dir)))
1719 (if (file-regular-p file1)
1720 (throw 'exit file1)))
1721 ;; No such file
1722 nil)))
1724 (defun reftex-parse-colon-path (path)
1725 ;; Like parse-colon-parse, but // or /~ are left alone.
1726 ;; Trailing ! or !! will be converted into `//' (emTeX convention)
1727 (mapcar
1728 (lambda (dir)
1729 (if (string-match "\\(//+\\|/*!+\\)\\'" dir)
1730 (setq dir (replace-match "//" t t dir)))
1731 (file-name-as-directory dir))
1732 (delete "" (split-string path (concat path-separator "+")))))
1734 (defun reftex-expand-path (path &optional default-dir)
1735 ;; Expand parts of path ending in `//' recursively into directory list.
1736 ;; Relative recursive path elements are expanded relative to DEFAULT-DIR.
1737 (let (path1 dir recursive)
1738 (while (setq dir (pop path))
1739 (if (setq recursive (string= (substring dir -2) "//"))
1740 (setq dir (substring dir 0 -1)))
1741 (if (and recursive
1742 (not (file-name-absolute-p dir)))
1743 (setq dir (expand-file-name dir default-dir)))
1744 (if recursive
1745 ;; Expand recursively
1746 (setq path1 (append (reftex-recursive-directory-list dir) path1))
1747 ;; Keep unchanged
1748 (push dir path1)))
1749 (nreverse path1)))
1751 (defun reftex-recursive-directory-list (dir)
1752 ;; Return a list of all directories below DIR, including DIR itself
1753 (let ((path (list dir)) path1 file files)
1754 (while (setq dir (pop path))
1755 (when (file-directory-p dir)
1756 (setq files (nreverse (directory-files dir t "[^.]")))
1757 (while (setq file (pop files))
1758 (if (file-directory-p file)
1759 (push (file-name-as-directory file) path)))
1760 (push dir path1)))
1761 path1))
1763 ;;; =========================================================================
1765 ;;; Some generally useful functions
1767 (defun reftex-typekey-check (typekey conf-variable &optional n)
1768 ;; Check if CONF-VARIABLE is true or contains TYPEKEY
1769 (and n (setq conf-variable (nth n conf-variable)))
1770 (or (eq conf-variable t)
1771 (and (stringp conf-variable)
1772 (string-match (concat "[" conf-variable "]") typekey))))
1774 (defun reftex-check-recursive-edit ()
1775 ;; Check if we are already in a recursive edit. Abort with helpful
1776 ;; message if so.
1777 (if (marker-position reftex-recursive-edit-marker)
1778 (error
1779 (substitute-command-keys
1780 "In unfinished selection process. Finish, or abort with \\[abort-recursive-edit]"))))
1782 (defun reftex-in-comment ()
1783 (save-excursion
1784 (skip-chars-backward "^%\n\r")
1785 (eq (preceding-char) ?%)))
1787 (defun reftex-no-props (string)
1788 ;; Return STRING with all text properties removed
1789 (and (stringp string)
1790 (set-text-properties 0 (length string) nil string))
1791 string)
1793 (defun reftex-match-string (n)
1794 ;; Match string without properties
1795 (when (match-beginning n)
1796 (buffer-substring-no-properties (match-beginning n) (match-end n))))
1798 (defun reftex-region-active-p ()
1799 "Should we operate on an active region?"
1800 (if (fboundp 'use-region-p)
1801 (use-region-p)
1802 ;; For XEmacs.
1803 (region-active-p)))
1805 (defun reftex-kill-buffer (buffer)
1806 ;; Kill buffer if it exists.
1807 (and (setq buffer (get-buffer buffer))
1808 (kill-buffer buffer)))
1810 (defun reftex-erase-buffer (&optional buffer)
1811 ;; Erase BUFFER if it exists. BUFFER defaults to current buffer.
1812 ;; This even erases read-only buffers.
1813 (cond
1814 ((null buffer)
1815 ;; erase current buffer
1816 (let ((buffer-read-only nil)) (erase-buffer)))
1817 ((setq buffer (get-buffer buffer))
1818 ;; buffer exists
1819 (with-current-buffer buffer
1820 (let ((inhibit-read-only t)) (erase-buffer))))))
1822 (defun reftex-this-word (&optional class)
1823 ;; Grab the word around point.
1824 (setq class (or class "-a-zA-Z0-9:_/.*;|"))
1825 (save-excursion
1826 (buffer-substring-no-properties
1827 (progn (skip-chars-backward class) (point))
1828 (progn (skip-chars-forward class) (point)))))
1830 (defun reftex-number (n unit &optional ending)
1831 (if (and (integerp n) (stringp unit))
1832 (format "%d %s%s" n unit (if (= n 1) "" (or ending "s")))
1833 ""))
1835 (defun reftex-all-assq (key list)
1836 ;; Return a list of all associations of KEY in LIST. Comparison with eq.
1837 (let (rtn)
1838 (while (setq list (memq (assq key list) list))
1839 (push (car list) rtn)
1840 (pop list))
1841 (nreverse rtn)))
1843 (defun reftex-all-assoc-string (key list)
1844 ;; Return a list of all associations of KEY in LIST. Comparison with string=.
1845 (let (rtn)
1846 (while list
1847 (if (string= (car (car list)) key)
1848 (push (car list) rtn))
1849 (pop list))
1850 (nreverse rtn)))
1852 (defun reftex-last-assoc-before-elt (key elt list &optional exclusive)
1853 ;; Find the last association of KEY in LIST before or at ELT
1854 ;; ELT is found in LIST with equal, not eq.
1855 ;; Returns nil when either KEY or elt are not found in LIST.
1856 ;; When EXCLUSIVE is non-nil, ELT cannot be the return value.
1857 ;; On success, returns the association.
1858 (let* ((elt (car (member elt list))) (ex (not exclusive)) ass last-ass)
1859 (while (and (setq ass (assoc key list))
1860 (setq list (memq ass list))
1861 (or ex (not (eq elt (car list))))
1862 (memq elt list))
1863 (setq last-ass ass
1864 list (cdr list)))
1865 last-ass))
1867 (defun reftex-sublist-nth (list nth predicate &optional completion)
1868 ;; Make a list of the NTH elements of all members of LIST which
1869 ;; fulfill PREDICATE.
1870 ;; When COMPLETION is non-nil, make all elements of the resulting
1871 ;; list also a list, so that the result can be used for completion.
1872 (let (rtn)
1873 (while list
1874 (if (funcall predicate (car list))
1875 (push (if completion
1876 (list (nth nth (car list)))
1877 (nth nth (car list)))
1878 rtn))
1879 (setq list (cdr list)))
1880 (nreverse rtn)))
1882 (defun reftex-make-selection-buffer-name (type &optional index)
1883 ;; Make unique name for a selection buffer.
1884 (format " *RefTeX[%s][%d]*"
1885 type (or index (get reftex-docstruct-symbol :master-index) 0)))
1887 (defun reftex-make-index-buffer-name (tag &optional cnt)
1888 ;; Make unique name for an index buffer.
1889 (format "*Index[%s][%d]*"
1890 tag (or cnt (get reftex-docstruct-symbol :master-index) 0)))
1892 (defun reftex-truncate (string ncols &optional ellipses padding)
1893 ;; Truncate STRING to NCOLS characters.
1894 ;; When PADDING is non-nil, and string is shorter than NCOLS, fill with
1895 ;; white space to NCOLS characters. When ELLIPSES is non-nil and the
1896 ;; string needs to be truncated, replace last 3 characters by dots.
1897 (setq string
1898 (if (<= (length string) ncols)
1899 string
1900 (if ellipses
1901 (concat (substring string 0 (- ncols 3)) "...")
1902 (substring string 0 ncols))))
1903 (if padding
1904 (format (format "%%-%ds" ncols) string)
1905 string))
1907 (defun reftex-nearest-match (regexp &optional max-length)
1908 ;; Find the nearest match of REGEXP. Set the match data.
1909 ;; If POS is given, calculate distances relative to it.
1910 ;; Return nil if there is no match.
1911 (let ((pos (point))
1912 (dist (or max-length (length regexp)))
1913 match1 match2 match)
1914 (goto-char (min (+ pos dist) (point-max)))
1915 (when (re-search-backward regexp nil t)
1916 (setq match1 (match-data)))
1917 (goto-char (max (- pos dist) (point-min)))
1918 (when (re-search-forward regexp nil t)
1919 (setq match2 (match-data)))
1920 (goto-char pos)
1921 (setq match
1922 (cond
1923 ((not match1) match2)
1924 ((not match2) match1)
1925 ((< (abs (- pos (car match1))) (abs (- pos (car match2)))) match1)
1926 (t match2)))
1927 (if match (progn (set-match-data match) t) nil)))
1929 (defun reftex-auto-mode-alist ()
1930 ;; Return an `auto-mode-alist' with only the .gz (etc) thingies.
1931 ;; Stolen from gnus nnheader.
1932 (let ((alist auto-mode-alist)
1933 out)
1934 (while alist
1935 (when (listp (cdr (car alist)))
1936 (push (car alist) out))
1937 (pop alist))
1938 (nreverse out)))
1940 (defun reftex-window-height ()
1941 (if (fboundp 'window-displayed-height)
1942 (window-displayed-height)
1943 (window-height)))
1945 (defun reftex-enlarge-to-fit (buf2 &optional keep-current)
1946 ;; Enlarge other window displaying buffer to show whole buffer if possible.
1947 ;; If KEEP-CURRENT in non-nil, current buffer must remain visible.
1948 (let* ((win1 (selected-window))
1949 (buf1 (current-buffer))
1950 (win2 (get-buffer-window buf2))) ;; Only on current frame.
1951 (when win2
1952 (select-window win2)
1953 (unless (and (pos-visible-in-window-p (point-min))
1954 (pos-visible-in-window-p (point-max)))
1955 (enlarge-window (1+ (- (count-lines (point-min) (point-max))
1956 (reftex-window-height))))))
1957 (cond
1958 ((window-live-p win1) (select-window win1))
1959 (keep-current
1960 ;; we must have the old buffer!
1961 (switch-to-buffer-other-window buf1)
1962 (shrink-window (- (window-height) window-min-height))))))
1964 (defun reftex-select-with-char (prompt help-string &optional delay-time scroll)
1965 ;; Offer to select something with PROMPT and, after DELAY-TIME seconds,
1966 ;; also with HELP-STRING.
1967 ;; When SCROLL is non-nil, use SPC and DEL to scroll help window.
1968 (let ((char ?\?))
1969 (save-window-excursion
1970 (catch 'exit
1971 (message "%s (?=Help)" prompt)
1972 (when (or (sit-for (or delay-time 0))
1973 (= ?\? (setq char (read-char-exclusive))))
1974 (reftex-kill-buffer "*RefTeX Select*")
1975 (switch-to-buffer-other-window "*RefTeX Select*")
1976 (insert help-string)
1977 (goto-char 1)
1978 (unless (and (pos-visible-in-window-p (point-min))
1979 (pos-visible-in-window-p (point-max)))
1980 (enlarge-window (1+ (- (count-lines (point-min) (point-max))
1981 (reftex-window-height)))))
1982 (setq truncate-lines t))
1983 (if (and (pos-visible-in-window-p (point-min))
1984 (pos-visible-in-window-p (point-max)))
1986 (setq prompt (concat prompt (if scroll " (SPC/DEL=Scroll)" ""))))
1987 (message "%s" prompt)
1988 (and (equal char ?\?) (setq char (read-char-exclusive)))
1989 (while t
1990 (cond ((equal char ?\C-g) (keyboard-quit))
1991 ((equal char ?\?))
1992 ((and scroll (equal char ?\ ))
1993 (condition-case nil (scroll-up) (error nil))
1994 (message "%s" prompt))
1995 ((and scroll (equal char ?\C-? ))
1996 (condition-case nil (scroll-down) (error nil))
1997 (message "%s" prompt))
1998 (t (message "")
1999 (throw 'exit char)))
2000 (setq char (read-char-exclusive)))))))
2003 (defun reftex-make-regexp-allow-for-ctrl-m (string)
2004 ;; convert STRING into a regexp, allowing ^M for \n and vice versa
2005 (let ((start -2))
2006 (setq string (regexp-quote string))
2007 (while (setq start (string-match "[\n\r]" string (+ 3 start)))
2008 (setq string (replace-match "[\n\r]" nil t string)))
2009 string))
2011 (defun reftex-get-buffer-visiting (file)
2012 ;; return a buffer visiting FILE
2013 (cond
2014 ((boundp 'find-file-compare-truenames) ; XEmacs
2015 (let ((find-file-compare-truenames t))
2016 (get-file-buffer file)))
2017 ((fboundp 'find-buffer-visiting) ; Emacs
2018 (find-buffer-visiting file))
2019 (t (error "This should not happen (reftex-get-buffer-visiting)"))))
2021 ;; Define `current-message' for compatibility with XEmacs prior to 20.4
2022 (defvar message-stack)
2023 (if (and (featurep 'xemacs)
2024 (not (fboundp 'current-message)))
2025 (defun current-message (&optional frame)
2026 (cdr (car message-stack))))
2028 (defun reftex-visited-files (list)
2029 ;; Takes a list of filenames and returns the buffers of those already visited
2030 (delq nil (mapcar (lambda (x) (if (reftex-get-buffer-visiting x) x nil))
2031 list)))
2033 (defun reftex-get-file-buffer-force (file &optional mark-to-kill)
2034 ;; Return a buffer visiting file. Make one, if necessary.
2035 ;; If neither such a buffer nor the file exist, return nil.
2036 ;; If MARK-TO-KILL is t and there is no live buffer, visit the file with
2037 ;; initializations according to `reftex-initialize-temporary-buffers',
2038 ;; and mark the buffer to be killed after use.
2040 (let ((buf (reftex-get-buffer-visiting file)))
2042 (cond (buf
2043 ;; We have it already as a buffer - just return it
2044 buf)
2046 ((file-readable-p file)
2047 ;; At least there is such a file and we can read it.
2049 (if (or (not mark-to-kill)
2050 (eq t reftex-initialize-temporary-buffers))
2052 ;; Visit the file with full magic
2053 (setq buf (find-file-noselect file))
2055 ;; Else: Visit the file just briefly, without or
2056 ;; with limited Magic
2058 ;; The magic goes away
2059 (letf ((format-alist nil)
2060 (auto-mode-alist (reftex-auto-mode-alist))
2061 ((default-value 'major-mode) 'fundamental-mode)
2062 (enable-local-variables nil)
2063 (after-insert-file-functions nil))
2064 (setq buf (find-file-noselect file)))
2066 ;; Is there a hook to run?
2067 (when (listp reftex-initialize-temporary-buffers)
2068 (with-current-buffer buf
2069 (run-hooks 'reftex-initialize-temporary-buffers))))
2071 ;; Let's see if we got a license to kill :-|
2072 (and mark-to-kill
2073 (add-to-list 'reftex-buffers-to-kill buf))
2075 ;; Return the new buffer
2076 buf)
2078 ;; If no such file exists, return nil
2079 (t nil))))
2081 (defun reftex-kill-temporary-buffers (&optional buffer)
2082 ;; Kill all buffers in the list reftex-kill-temporary-buffers.
2083 (cond
2084 (buffer
2085 (when (member buffer reftex-buffers-to-kill)
2086 (kill-buffer buffer)
2087 (setq reftex-buffers-to-kill
2088 (delete buffer reftex-buffers-to-kill))))
2090 (while (setq buffer (pop reftex-buffers-to-kill))
2091 (when (bufferp buffer)
2092 (and (buffer-modified-p buffer)
2093 (y-or-n-p (format "Save file %s? "
2094 (buffer-file-name buffer)))
2095 (with-current-buffer buffer
2096 (save-buffer)))
2097 (kill-buffer buffer))
2098 (pop reftex-buffers-to-kill)))))
2100 (defun reftex-splice-symbols-into-list (list alist)
2101 ;; Splice the association in ALIST of any symbols in LIST into the list.
2102 ;; Return new list.
2103 (let (rtn tmp)
2104 (while list
2105 (while (and (not (null (car list))) ;; keep list elements nil
2106 (symbolp (car list)))
2107 (setq tmp (car list))
2108 (cond
2109 ((assoc tmp alist)
2110 (setq list (append (nth 2 (assoc tmp alist)) (cdr list))))
2112 (error "Cannot treat symbol %s in reftex-label-alist"
2113 (symbol-name tmp)))))
2114 (push (pop list) rtn))
2115 (nreverse rtn)))
2117 (defun reftex-remove-symbols-from-list (list)
2118 ;; Remove all symbols from list
2119 (let (rtn)
2120 (while list
2121 (unless (symbolp (car list))
2122 (push (car list) rtn))
2123 (setq list (cdr list)))
2124 (nreverse rtn)))
2126 (defun reftex-uniquify (list)
2127 ;; Return a list of all elements in LIST, but each only once, keeping order
2128 (let (new elm)
2129 (while list
2130 (setq elm (pop list))
2131 (unless (member elm new)
2132 (push elm new)))
2133 (nreverse new)))
2135 (defun reftex-uniquify-by-car (alist &optional keep-list)
2136 ;; Return a list of all elements in ALIST, but each car only once.
2137 ;; Elements of KEEP-LIST are not removed even if duplicate.
2138 (let (new elm)
2139 (while alist
2140 (setq elm (pop alist))
2141 (if (or (member (car elm) keep-list)
2142 (not (assoc (car elm) new)))
2143 (push elm new)))
2144 (nreverse new)))
2146 (defun reftex-abbreviate-title (string)
2147 (reftex-convert-string string "[-~ \t\n\r,;]" nil t t
2148 5 40 nil 1 " " (nth 5 reftex-derive-label-parameters)))
2150 (defun reftex-convert-string (string split-re invalid-re dot keep-fp
2151 nwords maxchar invalid abbrev sep
2152 ignore-words &optional downcase)
2153 "Convert a string (a sentence) to something shorter.
2154 SPLIT-RE is the regular expression used to split the string into words.
2155 INVALID-RE matches characters which are invalid in the final string.
2156 DOT t means add dots to abbreviated words.
2157 KEEP-FP t means to keep a final punctuation when applicable.
2158 NWORDS Number of words to use.
2159 MAXCHAR Maximum number of characters in the final string.
2160 INVALID nil: Throw away any words containing stuff matched with INVALID-RE.
2161 t: Throw away only the matched part, not the whole word.
2162 ABBREV nil: Never abbreviate words.
2163 t: Always abbreviate words (see `reftex-abbrev-parameters').
2164 not t and not nil: Abbreviate words if necessary to shorten
2165 string below MAXCHAR.
2166 SEP String separating different words in the output string.
2167 IGNORE-WORDS List of words which should be removed from the string."
2169 (let* ((words0 (split-string string (or split-re "[ \t\n\r]")))
2170 (reftex-label-illegal-re (or invalid-re "\000"))
2171 (abbrev-re (concat
2172 "\\`\\("
2173 (make-string (nth 0 reftex-abbrev-parameters) ?.)
2174 "[" (nth 2 reftex-abbrev-parameters) "]*"
2175 "\\)"
2176 "[" (nth 3 reftex-abbrev-parameters) "]"
2177 (make-string (1- (nth 1 reftex-abbrev-parameters)) ?.)))
2178 words word)
2180 ;; Remove words from the ignore list or with funny characters
2181 (while (setq word (pop words0))
2182 (if downcase (setq word (downcase word)))
2183 (cond
2184 ((member (downcase word) ignore-words))
2185 ((string-match reftex-label-illegal-re word)
2186 (when invalid
2187 (while (string-match reftex-label-illegal-re word)
2188 (setq word (replace-match "" nil nil word)))
2189 (push word words)))
2191 (push word words))))
2192 (setq words (nreverse words))
2194 ;; Restrict number of words
2195 (if (> (length words) nwords)
2196 (setcdr (nthcdr (1- nwords) words) nil))
2198 ;; First, try to use all words
2199 (setq string (mapconcat 'identity words sep))
2201 ;; Abbreviate words if enforced by user settings or string length
2202 (if (or (eq t abbrev)
2203 (and abbrev
2204 (> (length string) maxchar)))
2205 (setq words
2206 (mapcar
2207 (lambda (w) (if (string-match abbrev-re w)
2208 (if dot
2209 (concat (match-string 1 w) ".")
2210 (match-string 1 w))
2212 words)
2213 string (mapconcat 'identity words sep)))
2215 ;; Shorten if still to long
2216 (setq string
2217 (if (> (length string) maxchar)
2218 (substring string 0 maxchar)
2219 string))
2221 ;; Delete the final punctuation, if any
2222 (if (and (not keep-fp) (string-match "\\s.+\\'" string))
2223 (setq string (replace-match "" nil nil string)))
2224 string))
2226 (defun reftex-nicify-text (text)
2227 ;; Make TEXT nice for inclusion as context into label menu.
2228 ;; 1. remove line breaks and extra white space
2229 (while (string-match "[\n\r\t]\\|[ \t][ \t]+" text)
2230 (setq text (replace-match " " nil t text)))
2231 ;; 2. cut before the next `\end{' or `\item' or `\\'
2232 (if (string-match "\\(\\\\end{\\|\\\\item\\|\\\\\\\\\\).*" text)
2233 (setq text (replace-match "" nil t text)))
2234 ;; 3. kill the embedded label
2235 (if (string-match "\\\\label{[^}]*}" text)
2236 (setq text (replace-match "" nil t text)))
2237 ;; 4. remove leading garbage
2238 (if (string-match "\\`[ }]+" text)
2239 (setq text (replace-match "" nil t text)))
2240 ;; 5. limit length
2241 (cond
2242 ((> (length text) 100) (substring text 0 100))
2243 ((= (length text) 0) (make-string 1 ?\ ))
2244 (t text)))
2246 ;;; =========================================================================
2248 ;;; Fontification and Highlighting
2250 (defun reftex-use-fonts ()
2251 ;; Return t if we can and want to use fonts.
2252 (and ; window-system
2253 reftex-use-fonts
2254 (featurep 'font-lock)))
2256 (defun reftex-refontify ()
2257 ;; Return t if we need to refontify context
2258 (and (reftex-use-fonts)
2259 (or (eq t reftex-refontify-context)
2260 (and (eq 1 reftex-refontify-context)
2261 ;; Test of we use the font-lock version of x-symbol
2262 (and (featurep 'x-symbol-tex) (not (boundp 'x-symbol-mode)))))))
2264 (defvar font-lock-defaults-computed)
2265 (defun reftex-fontify-select-label-buffer (parent-buffer)
2266 ;; Fontify the `*RefTeX Select*' buffer. Buffer is temporarily renamed to
2267 ;; start with none-SPC char, because Font-Lock otherwise refuses operation.
2268 (run-hook-with-args 'reftex-pre-refontification-functions
2269 parent-buffer 'reftex-ref)
2270 (let* ((oldname (buffer-name))
2271 (newname (concat "Fontify-me-" oldname)))
2272 (unwind-protect
2273 (progn
2274 ;; Rename buffer temporarily to start w/o space (because of font-lock)
2275 (rename-buffer newname t)
2276 (cond
2277 ((fboundp 'font-lock-default-fontify-region)
2278 ;; Good: we have the indirection functions
2279 (set (make-local-variable 'font-lock-fontify-region-function)
2280 'reftex-select-font-lock-fontify-region)
2281 (let ((major-mode 'latex-mode))
2282 (font-lock-mode 1)))
2283 ((fboundp 'font-lock-set-defaults-1)
2284 ;; Looks like the XEmacs font-lock stuff.
2285 ;; FIXME: this is still kind of a hack, but it works.
2286 (set (make-local-variable 'font-lock-keywords) nil)
2287 (let ((major-mode 'latex-mode)
2288 (font-lock-defaults-computed nil))
2289 (font-lock-set-defaults-1)
2290 (reftex-select-font-lock-fontify-region (point-min) (point-max))))
2292 ;; Oops?
2293 (message "Sorry: cannot refontify RefTeX Select buffer."))))
2294 (rename-buffer oldname))))
2296 (defun reftex-select-font-lock-fontify-region (beg end &optional loudly)
2297 ;; Fontify a region, but only lines starting with a dot.
2298 (let ((func (if (fboundp 'font-lock-default-fontify-region)
2299 'font-lock-default-fontify-region
2300 'font-lock-fontify-region))
2301 beg1 end1)
2302 (goto-char beg)
2303 (while (re-search-forward "^\\." end t)
2304 (setq beg1 (point) end1 (progn (skip-chars-forward "^\n") (point)))
2305 (funcall func beg1 end1 nil)
2306 (goto-char end1))))
2308 (defun reftex-select-font-lock-unfontify (&rest ignore) t)
2310 (defun reftex-verified-face (&rest faces)
2311 ;; Return the first valid face in FACES, or nil if none is valid.
2312 ;; Also, when finding a nil element in FACES, return nil. This
2313 ;; function is just a safety net to catch name changes of builtin
2314 ;; fonts. Currently it is only used for reftex-label-face, which has
2315 ;; as default font-lock-reference-face, which was recently renamed
2316 ;; to font-lock-constant-face.
2317 (let (face)
2318 (catch 'exit
2319 (while (setq face (pop faces))
2320 (if (featurep 'xemacs)
2321 (if (find-face face) (throw 'exit face))
2322 (if (facep face) (throw 'exit face)))))))
2324 ;; Highlighting uses overlays. For XEmacs, we use extends.
2325 (defalias 'reftex-make-overlay
2326 (if (featurep 'xemacs) 'make-extent 'make-overlay))
2327 (defalias 'reftex-overlay-put
2328 (if (featurep 'xemacs) 'set-extent-property 'overlay-put))
2329 (defalias 'reftex-move-overlay
2330 (if (featurep 'xemacs) 'set-extent-endpoints 'move-overlay))
2331 (defalias 'reftex-delete-overlay
2332 (if (featurep 'xemacs) 'detach-extent 'delete-overlay))
2334 ;; We keep a vector with several different overlays to do our highlighting.
2335 (defvar reftex-highlight-overlays [nil nil nil])
2337 ;; Initialize the overlays
2338 (aset reftex-highlight-overlays 0 (reftex-make-overlay 1 1))
2339 (reftex-overlay-put (aref reftex-highlight-overlays 0)
2340 'face 'highlight)
2341 (aset reftex-highlight-overlays 1 (reftex-make-overlay 1 1))
2342 (reftex-overlay-put (aref reftex-highlight-overlays 1)
2343 'face reftex-cursor-selected-face)
2344 (aset reftex-highlight-overlays 2 (reftex-make-overlay 1 1))
2345 (reftex-overlay-put (aref reftex-highlight-overlays 2)
2346 'face reftex-cursor-selected-face)
2348 ;; Two functions for activating and deactivation highlight overlays
2349 (defun reftex-highlight (index begin end &optional buffer)
2350 "Highlight a region with overlay INDEX."
2351 (reftex-move-overlay (aref reftex-highlight-overlays index)
2352 begin end (or buffer (current-buffer))))
2353 (defun reftex-unhighlight (index)
2354 "Detach overlay INDEX."
2355 (reftex-delete-overlay (aref reftex-highlight-overlays index)))
2357 (defun reftex-highlight-shall-die ()
2358 ;; Function used in pre-command-hook to remove highlights.
2359 (remove-hook 'pre-command-hook 'reftex-highlight-shall-die)
2360 (reftex-unhighlight 0))
2362 ;;; =========================================================================
2364 ;;; Keybindings
2366 ;; The default bindings in the mode map.
2367 (loop for x in
2368 '(("\C-c=" . reftex-toc)
2369 ("\C-c-" . reftex-toc-recenter)
2370 ("\C-c(" . reftex-label)
2371 ("\C-c)" . reftex-reference)
2372 ("\C-c[" . reftex-citation)
2373 ("\C-c<" . reftex-index)
2374 ("\C-c>" . reftex-display-index)
2375 ("\C-c/" . reftex-index-selection-or-word)
2376 ("\C-c\\" . reftex-index-phrase-selection-or-word)
2377 ("\C-c|" . reftex-index-visit-phrases-buffer)
2378 ("\C-c&" . reftex-view-crossref))
2379 do (define-key reftex-mode-map (car x) (cdr x)))
2381 ;; Bind `reftex-mouse-view-crossref' only when the key is still free
2382 (if (featurep 'xemacs)
2383 (unless (key-binding [(shift button2)])
2384 (define-key reftex-mode-map [(shift button2)]
2385 'reftex-mouse-view-crossref))
2386 (unless (key-binding [(shift mouse-2)])
2387 (define-key reftex-mode-map [(shift mouse-2)]
2388 'reftex-mouse-view-crossref)))
2390 ;; Bind `reftex-view-crossref-from-bibtex' in BibTeX mode map
2391 (eval-after-load
2392 "bibtex"
2393 '(define-key bibtex-mode-map "\C-c&" 'reftex-view-crossref-from-bibtex))
2395 ;; If the user requests so, she can have a few more bindings:
2396 ;; For most of these commands there are already bindings in place.
2397 ;; Setting `reftex-extra-bindings' really is only there to spare users
2398 ;; the hassle of defining bindings in the user space themselves. This
2399 ;; is why they violate the key binding recommendations.
2400 (defvar reftex-extra-bindings-map
2401 (let ((map (make-sparse-keymap)))
2402 (define-key map "t" 'reftex-toc)
2403 (define-key map "l" 'reftex-label)
2404 (define-key map "r" 'reftex-reference)
2405 (define-key map "c" 'reftex-citation)
2406 (define-key map "v" 'reftex-view-crossref)
2407 (define-key map "g" 'reftex-grep-document)
2408 (define-key map "s" 'reftex-search-document)
2409 map)
2410 "Reftex extra bindings map")
2412 (when reftex-extra-bindings
2413 (define-key reftex-mode-map
2414 reftex-extra-bindings-prefix
2415 reftex-extra-bindings-map))
2418 ;;; =========================================================================
2420 ;;; Menu
2422 ;; Define a menu for the menu bar if Emacs is running under X
2424 (defvar reftex-isearch-minor-mode nil)
2425 (make-variable-buffer-local 'reftex-isearch-minor-mode)
2427 (easy-menu-define reftex-mode-menu reftex-mode-map
2428 "Menu used in RefTeX mode"
2429 `("Ref"
2430 ["Table of Contents" reftex-toc t]
2431 ["Recenter TOC" reftex-toc-recenter t]
2432 "--"
2433 ["\\label" reftex-label t]
2434 ["\\ref" reftex-reference t]
2435 ["\\cite" reftex-citation t]
2436 ("\\index"
2437 ["\\index" reftex-index t]
2438 ["\\index{THIS}" reftex-index-selection-or-word t]
2439 "--"
2440 ["Add THIS to Index Phrases" reftex-index-phrase-selection-or-word t]
2441 ["Visit Phrase Buffer" reftex-index-visit-phrases-buffer t]
2442 ["Apply Phrases to Region" reftex-index-phrases-apply-to-region t]
2443 "--"
2444 ["Display the Index" reftex-display-index t])
2445 "--"
2446 ["View Crossref" reftex-view-crossref t]
2447 "--"
2448 ("Parse Document"
2449 ["One File" reftex-parse-one reftex-enable-partial-scans]
2450 ["Entire Document" reftex-parse-all t]
2451 ["Save to File" (reftex-access-parse-file 'write)
2452 (> (length (symbol-value reftex-docstruct-symbol)) 0)]
2453 ["Restore from File" (reftex-access-parse-file 'restore) t])
2454 ("Global Actions"
2455 ["Search Whole Document" reftex-search-document t]
2456 ["Search Again" tags-loop-continue t]
2457 ["Replace in Document" reftex-query-replace-document t]
2458 ["Grep on Document" reftex-grep-document t]
2459 "--"
2460 ["Goto Label" reftex-goto-label t]
2461 ["Find Duplicate Labels" reftex-find-duplicate-labels t]
2462 ["Change Label and Refs" reftex-change-label t]
2463 ["Renumber Simple Labels" reftex-renumber-simple-labels t]
2464 "--"
2465 ["Create BibTeX File" reftex-create-bibtex-file t]
2466 "--"
2467 ["Create TAGS File" reftex-create-tags-file t]
2468 "--"
2469 ["Save Document" reftex-save-all-document-buffers t])
2470 "--"
2471 ("Options"
2472 "PARSER"
2473 ["Partial Scans"
2474 (setq reftex-enable-partial-scans (not reftex-enable-partial-scans))
2475 :style toggle :selected reftex-enable-partial-scans]
2476 ["Auto-Save Parse Info"
2477 (setq reftex-save-parse-info (not reftex-save-parse-info))
2478 :style toggle :selected reftex-save-parse-info]
2479 "--"
2480 "TOC RECENTER"
2481 ["Automatic Recenter" reftex-toggle-auto-toc-recenter
2482 :style toggle :selected reftex-toc-auto-recenter-timer]
2483 "--"
2484 "CROSSREF INFO"
2485 ["Automatic Info" reftex-toggle-auto-view-crossref
2486 :style toggle :selected reftex-auto-view-crossref-timer]
2487 ["...in Echo Area" (setq reftex-auto-view-crossref t)
2488 :style radio :selected (eq reftex-auto-view-crossref t)]
2489 ["...in Other Window" (setq reftex-auto-view-crossref 'window)
2490 :style radio :selected (eq reftex-auto-view-crossref 'window)]
2491 "--"
2492 "MISC"
2493 ["AUC TeX Interface" reftex-toggle-plug-into-AUCTeX
2494 :style toggle :selected reftex-plug-into-AUCTeX]
2495 ["isearch whole document" reftex-isearch-minor-mode
2496 :style toggle :selected reftex-isearch-minor-mode])
2497 ("Reference Style"
2498 ["Default" (setq reftex-vref-is-default nil
2499 reftex-fref-is-default nil)
2500 :style radio :selected (not (or reftex-vref-is-default
2501 reftex-fref-is-default))]
2502 ["Varioref" (setq reftex-vref-is-default t
2503 reftex-fref-is-default nil)
2504 :style radio :selected reftex-vref-is-default]
2505 ["Fancyref" (setq reftex-fref-is-default t
2506 reftex-vref-is-default nil)
2507 :style radio :selected reftex-fref-is-default])
2508 ("Citation Style"
2509 ,@(mapcar
2510 (lambda (x)
2511 (vector
2512 (capitalize (symbol-name (car x)))
2513 (list 'reftex-set-cite-format (list 'quote (car x)))
2514 :style 'radio :selected
2515 (list 'eq (list 'reftex-get-cite-format) (list 'quote (car x)))))
2516 reftex-cite-format-builtin)
2517 "--"
2518 "Sort Database Matches"
2519 ["Not" (setq reftex-sort-bibtex-matches nil)
2520 :style radio :selected (eq reftex-sort-bibtex-matches nil)]
2521 ["by Author" (setq reftex-sort-bibtex-matches 'author)
2522 :style radio :selected (eq reftex-sort-bibtex-matches 'author)]
2523 ["by Year" (setq reftex-sort-bibtex-matches 'year)
2524 :style radio :selected (eq reftex-sort-bibtex-matches 'year)]
2525 ["by Year, reversed" (setq reftex-sort-bibtex-matches 'reverse-year)
2526 :style radio :selected (eq reftex-sort-bibtex-matches 'reverse-year)])
2527 ("Index Style"
2528 ,@(mapcar
2529 (lambda (x)
2530 (vector
2531 (capitalize (symbol-name (car x)))
2532 (list 'reftex-add-index-macros (list 'list (list 'quote (car x))))
2533 :style 'radio :selected
2534 (list 'memq (list 'quote (car x))
2535 (list 'get 'reftex-docstruct-symbol
2536 (list 'quote 'reftex-index-macros-style)))))
2537 reftex-index-macros-builtin))
2538 "--"
2539 ["Reset RefTeX Mode" reftex-reset-mode t]
2540 "--"
2541 ("Customize"
2542 ["Browse RefTeX Group" reftex-customize t]
2543 "--"
2544 ["Build Full Customize Menu" reftex-create-customize-menu
2545 (fboundp 'customize-menu-create)])
2546 ("Documentation"
2547 ["Info" reftex-info t]
2548 ["Commentary" reftex-show-commentary t])))
2550 (defun reftex-customize ()
2551 "Call the customize function with reftex as argument."
2552 (interactive)
2553 (customize-browse 'reftex))
2555 (defun reftex-create-customize-menu ()
2556 "Create a full customization menu for RefTeX, insert it into the menu."
2557 (interactive)
2558 (if (fboundp 'customize-menu-create)
2559 (progn
2560 (easy-menu-change
2561 '("Ref") "Customize"
2562 `(["Browse RefTeX group" reftex-customize t]
2563 "--"
2564 ,(customize-menu-create 'reftex)
2565 ["Set" Custom-set t]
2566 ["Save" Custom-save t]
2567 ["Reset to Current" Custom-reset-current t]
2568 ["Reset to Saved" Custom-reset-saved t]
2569 ["Reset to Standard Settings" Custom-reset-standard t]))
2570 (message "\"Ref\"-menu now contains full customization menu"))
2571 (error "Cannot expand menu (outdated version of cus-edit.el)")))
2573 (defun reftex-show-commentary ()
2574 "Use the finder to view the file documentation from `reftex.el'."
2575 (interactive)
2576 (finder-commentary "reftex.el"))
2578 (defun reftex-info (&optional node)
2579 "Read documentation for RefTeX in the info system.
2580 With optional NODE, go directly to that node."
2581 (interactive)
2582 (info (format "(reftex)%s" (or node ""))))
2584 ;;; Install the kill-buffer and kill-emacs hooks ------------------------------
2586 (add-hook 'kill-buffer-hook 'reftex-kill-buffer-hook)
2587 (unless noninteractive
2588 (add-hook 'kill-emacs-hook 'reftex-kill-emacs-hook))
2590 ;;; Run Hook ------------------------------------------------------------------
2592 (run-hooks 'reftex-load-hook)
2594 ;;; That's it! ----------------------------------------------------------------
2596 (setq reftex-tables-dirty t) ; in case this file is evaluated by hand
2597 (provide 'reftex)
2599 ;;;============================================================================
2601 ;;; reftex.el ends here