Mercurial > emacs
annotate lisp/textmodes/reftex-toc.el @ 111338:f36bcc8c2a23
reftex-toc trivia.
* lisp/textmodes/reftex-toc.el (reftex-toc-do-promote): Remove unused
local `mpos'.
(reftex-toc-restore-region): Make `mpos' local to this function.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Wed, 03 Nov 2010 01:03:42 -0700 |
parents | 96c3de40fa1b |
children | 2eee976277c5 |
rev | line source |
---|---|
38422
7a94f1c588c4
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37998
diff
changeset
|
1 ;;; reftex-toc.el --- RefTeX's table of contents mode |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
2 |
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
3 ;; Copyright (C) 1997, 1998, 1999, 2000, 2003, 2004, 2005, 2006, 2007, |
106815 | 4 ;; 2008, 2009, 2010 Free Software Foundation, Inc. |
27035 | 5 |
46612
7522419c4db0
Updated to reftex 4.17
Carsten Dominik <dominik@science.uva.nl>
parents:
41785
diff
changeset
|
6 ;; Author: Carsten Dominik <dominik@science.uva.nl> |
76672
690423f53b08
* textmodes/reftex.el: Add maintainer address.
David Kastrup <dak@gnu.org>
parents:
75347
diff
changeset
|
7 ;; Maintainer: auctex-devel@gnu.org |
69094
bfd5c5e60410
Version number change only
Carsten Dominik <dominik@science.uva.nl>
parents:
68648
diff
changeset
|
8 ;; Version: 4.31 |
110015
280c8ae2476d
Add "Package:" file headers to denote built-in packages.
Chong Yidong <cyd@stupidchicken.com>
parents:
107252
diff
changeset
|
9 ;; Package: reftex |
27035 | 10 |
11 ;; This file is part of GNU Emacs. | |
12 | |
94670
f4a69fedbd46
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
13 ;; GNU Emacs is free software: you can redistribute it and/or modify |
27035 | 14 ;; it under the terms of the GNU General Public License as published by |
94670
f4a69fedbd46
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
15 ;; the Free Software Foundation, either version 3 of the License, or |
f4a69fedbd46
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
16 ;; (at your option) any later version. |
27035 | 17 |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
94670
f4a69fedbd46
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
25280 | 25 |
38422
7a94f1c588c4
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37998
diff
changeset
|
26 ;;; Commentary: |
7a94f1c588c4
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37998
diff
changeset
|
27 |
7a94f1c588c4
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37998
diff
changeset
|
28 ;;; Code: |
7a94f1c588c4
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
37998
diff
changeset
|
29 |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25806
diff
changeset
|
30 (eval-when-compile (require 'cl)) |
25280 | 31 (provide 'reftex-toc) |
32 (require 'reftex) | |
33 ;;; | |
34 | |
35 (defvar reftex-toc-map (make-sparse-keymap) | |
36 "Keymap used for *toc* buffer.") | |
37 | |
38 (defvar reftex-toc-menu) | |
65548
253cad16882d
Little fixes to remove compiler warnings
Carsten Dominik <dominik@science.uva.nl>
parents:
65270
diff
changeset
|
39 (defvar reftex-last-window-height nil) |
253cad16882d
Little fixes to remove compiler warnings
Carsten Dominik <dominik@science.uva.nl>
parents:
65270
diff
changeset
|
40 (defvar reftex-last-window-width nil) |
65270
3c42ea656d31
(zmacs-regions): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
41 (defvar reftex-toc-include-labels-indicator nil) |
3c42ea656d31
(zmacs-regions): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
42 (defvar reftex-toc-include-index-indicator nil) |
3c42ea656d31
(zmacs-regions): Add defvar.
Juanma Barranquero <lekktu@gmail.com>
parents:
64751
diff
changeset
|
43 (defvar reftex-toc-max-level-indicator nil) |
25280 | 44 |
45 (defun reftex-toc-mode () | |
46 "Major mode for managing Table of Contents for LaTeX files. | |
47 This buffer was created with RefTeX. | |
48 Press `?' for a summary of important key bindings. | |
49 | |
50 Here are all local bindings. | |
51 | |
52 \\{reftex-toc-map}" | |
53 (interactive) | |
54 (kill-all-local-variables) | |
55 (setq major-mode 'reftex-toc-mode | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
56 mode-name "TOC") |
25280 | 57 (use-local-map reftex-toc-map) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
58 (set (make-local-variable 'transient-mark-mode) t) |
93097 | 59 (when (featurep 'xemacs) |
60 (set (make-local-variable 'zmacs-regions) t)) | |
25280 | 61 (set (make-local-variable 'revert-buffer-function) 'reftex-toc-revert) |
62 (set (make-local-variable 'reftex-toc-include-labels-indicator) "") | |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25806
diff
changeset
|
63 (set (make-local-variable 'reftex-toc-max-level-indicator) |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25806
diff
changeset
|
64 (if (= reftex-toc-max-level 100) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
65 "ALL" |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
66 (int-to-string reftex-toc-max-level))) |
25280 | 67 (setq mode-line-format |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
68 (list "---- " 'mode-line-buffer-identification |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
69 " " 'global-mode-string " (" mode-name ")" |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
70 " L<" 'reftex-toc-include-labels-indicator ">" |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
71 " I<" 'reftex-toc-include-index-indicator ">" |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
72 " T<" 'reftex-toc-max-level-indicator ">" |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
73 " -%-")) |
25280 | 74 (setq truncate-lines t) |
46683
060f433ebf11
Updated to RefTeX 4.18
Carsten Dominik <dominik@science.uva.nl>
parents:
46612
diff
changeset
|
75 (when (featurep 'xemacs) |
060f433ebf11
Updated to RefTeX 4.18
Carsten Dominik <dominik@science.uva.nl>
parents:
46612
diff
changeset
|
76 ;; XEmacs needs the call to make-local-hook |
060f433ebf11
Updated to RefTeX 4.18
Carsten Dominik <dominik@science.uva.nl>
parents:
46612
diff
changeset
|
77 (make-local-hook 'post-command-hook) |
060f433ebf11
Updated to RefTeX 4.18
Carsten Dominik <dominik@science.uva.nl>
parents:
46612
diff
changeset
|
78 (make-local-hook 'pre-command-hook)) |
25280 | 79 (make-local-variable 'reftex-last-follow-point) |
80 (add-hook 'post-command-hook 'reftex-toc-post-command-hook nil t) | |
81 (add-hook 'pre-command-hook 'reftex-toc-pre-command-hook nil t) | |
82 (easy-menu-add reftex-toc-menu reftex-toc-map) | |
65548
253cad16882d
Little fixes to remove compiler warnings
Carsten Dominik <dominik@science.uva.nl>
parents:
65270
diff
changeset
|
83 (run-hooks 'reftex-toc-mode-hook)) |
25280 | 84 |
85 (defvar reftex-last-toc-file nil | |
86 "Stores the file name from which `reftex-toc' was called. For redo command.") | |
87 | |
88 | |
89 (defvar reftex-toc-return-marker (make-marker) | |
90 "Marker which makes it possible to return from toc to old position.") | |
91 | |
92 (defconst reftex-toc-help | |
93 " AVAILABLE KEYS IN TOC BUFFER | |
94 ============================ | |
95 n / p next-line / previous-line | |
96 SPC Show the corresponding location of the LaTeX document. | |
97 TAB Goto the location and keep the *toc* window. | |
98 RET Goto the location and hide the *toc* window (also on mouse-2). | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
99 < / > Promote / Demote section, or all sections in region. |
25280 | 100 C-c > Display Index. With prefix arg, restrict index to current section. |
101 q / k Hide/Kill *toc* buffer, return to position of reftex-toc command. | |
102 l i c F Toggle display of [l]abels, [i]ndex, [c]ontext, [F]ile borders. | |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25806
diff
changeset
|
103 t Change maximum toc depth (e.g. `3 t' hides levels greater than 3). |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
104 f / g Toggle follow mode / Refresh *toc* buffer. |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
105 a / d Toggle auto recenter / Toggle dedicated frame |
25280 | 106 r / C-u r Reparse the LaTeX document / Reparse entire LaTeX document. |
107 . In other window, show position from where `reftex-toc' was called. | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
108 M-% Global search and replace to rename label at point. |
37998
706af946b1e7
* reftex-ref.el (reftex-select-label-help): Added "z" key
Carsten Dominik <dominik@science.uva.nl>
parents:
34402
diff
changeset
|
109 x Switch to TOC of external document (with LaTeX package `xr'). |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
110 z Jump to a specific section (e.g. '3 z' goes to section 3).") |
25280 | 111 |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
112 (defun reftex-toc (&optional rebuild reuse) |
25280 | 113 "Show the table of contents for the current document. |
114 When called with a raw C-u prefix, rescan the document first." | |
115 | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
116 ;; The REUSE argument means, search all visible frames for a window |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
117 ;; displaying the toc window. If yes, reuse this window. |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
118 |
25280 | 119 (interactive) |
120 | |
121 (if (or (not (string= reftex-last-toc-master (reftex-TeX-master-file))) | |
122 current-prefix-arg) | |
123 (reftex-erase-buffer "*toc*")) | |
124 | |
125 (setq reftex-last-toc-file (buffer-file-name)) | |
126 (setq reftex-last-toc-master (reftex-TeX-master-file)) | |
127 | |
128 (set-marker reftex-toc-return-marker (point)) | |
129 | |
130 ;; If follow mode is active, arrange to delay it one command | |
131 (if reftex-toc-follow-mode | |
132 (setq reftex-toc-follow-mode 1)) | |
133 | |
134 (and reftex-toc-include-index-entries | |
135 (reftex-ensure-index-support)) | |
136 (or reftex-support-index | |
137 (setq reftex-toc-include-index-entries nil)) | |
138 | |
139 ;; Ensure access to scanning info and rescan buffer if prefix are is '(4) | |
140 (reftex-access-scan-info current-prefix-arg) | |
141 | |
142 (let* ((this-buf (current-buffer)) | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
143 (docstruct-symbol reftex-docstruct-symbol) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
144 (xr-data (assq 'xr (symbol-value reftex-docstruct-symbol))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
145 (xr-alist (cons (cons "" (buffer-file-name)) (nth 1 xr-data))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
146 (here-I-am (if (boundp 'reftex-rebuilding-toc) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
147 (get 'reftex-toc :reftex-data) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
148 (car (reftex-where-am-I)))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
149 (unsplittable (if (fboundp 'frame-property) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
150 (frame-property (selected-frame) 'unsplittable) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
151 (frame-parameter (selected-frame) 'unsplittable))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
152 offset toc-window) |
25280 | 153 |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
154 (if (setq toc-window (get-buffer-window |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
155 "*toc*" |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
156 (if reuse 'visible))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
157 (select-window toc-window) |
25280 | 158 (when (or (not reftex-toc-keep-other-windows) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
159 (< (window-height) (* 2 window-min-height))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
160 (delete-other-windows)) |
46612
7522419c4db0
Updated to reftex 4.17
Carsten Dominik <dominik@science.uva.nl>
parents:
41785
diff
changeset
|
161 |
7522419c4db0
Updated to reftex 4.17
Carsten Dominik <dominik@science.uva.nl>
parents:
41785
diff
changeset
|
162 (setq reftex-last-window-width (window-width) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
163 reftex-last-window-height (window-height)) ; remember |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
164 |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
165 (unless unsplittable |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
166 (if reftex-toc-split-windows-horizontally |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
167 (split-window-horizontally |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
168 (floor (* (window-width) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
169 reftex-toc-split-windows-fraction))) |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
170 (split-window-vertically |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
171 (floor (* (window-height) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
172 reftex-toc-split-windows-fraction))))) |
46612
7522419c4db0
Updated to reftex 4.17
Carsten Dominik <dominik@science.uva.nl>
parents:
41785
diff
changeset
|
173 |
104768
17d2ae0948e2
Remove unnecessary bindings of default-major-mode (all are followed by
Glenn Morris <rgm@gnu.org>
parents:
104543
diff
changeset
|
174 (switch-to-buffer "*toc*")) |
25280 | 175 |
176 (or (eq major-mode 'reftex-toc-mode) (reftex-toc-mode)) | |
177 (set (make-local-variable 'reftex-docstruct-symbol) docstruct-symbol) | |
178 (setq reftex-toc-include-labels-indicator | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
179 (if (eq reftex-toc-include-labels t) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
180 "ALL" |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
181 reftex-toc-include-labels)) |
25280 | 182 (setq reftex-toc-include-index-indicator |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
183 (if (eq reftex-toc-include-index-entries t) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
184 "ALL" |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
185 reftex-toc-include-index-entries)) |
25280 | 186 |
187 (cond | |
188 ((= (buffer-size) 0) | |
189 ;; buffer is empty - fill it with the table of contents | |
190 (message "Building *toc* buffer...") | |
191 | |
192 (setq buffer-read-only nil) | |
193 (insert (format | |
194 "TABLE-OF-CONTENTS on %s | |
195 SPC=view TAB=goto RET=goto+hide [q]uit [r]escan [l]abels [f]ollow [x]r [?]Help | |
196 ------------------------------------------------------------------------------ | |
197 " (abbreviate-file-name reftex-last-toc-master))) | |
198 | |
199 (if (reftex-use-fonts) | |
50979
85e525daebfc
(reftex-toc-visit-location):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49599
diff
changeset
|
200 (put-text-property (point-min) (point) 'face reftex-toc-header-face)) |
85e525daebfc
(reftex-toc-visit-location):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49599
diff
changeset
|
201 (put-text-property (point-min) (point) 'intangible t) |
85e525daebfc
(reftex-toc-visit-location):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49599
diff
changeset
|
202 (put-text-property (point-min) (1+ (point-min)) 'xr-alist xr-alist) |
25280 | 203 |
204 (setq offset | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
205 (reftex-insert-docstruct |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
206 this-buf |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
207 t ; include toc |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
208 reftex-toc-include-labels |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
209 reftex-toc-include-index-entries |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
210 reftex-toc-include-file-boundaries |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
211 reftex-toc-include-context |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
212 nil ; counter |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
213 nil ; commented |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
214 here-I-am |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
215 "" ; xr-prefix |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
216 t ; a toc buffer |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
217 )) |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
218 |
25280 | 219 (run-hooks 'reftex-display-copied-context-hook) |
220 (message "Building *toc* buffer...done.") | |
221 (setq buffer-read-only t)) | |
222 (t | |
223 ;; Only compute the offset | |
224 (setq offset | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
225 (or (reftex-get-offset this-buf here-I-am |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
226 (if reftex-toc-include-labels " " nil) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
227 t |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
228 reftex-toc-include-index-entries |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
229 reftex-toc-include-file-boundaries) |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
230 (reftex-last-assoc-before-elt |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
231 'toc here-I-am |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
232 (symbol-value reftex-docstruct-symbol)))) |
25280 | 233 (put 'reftex-toc :reftex-line 3) |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
234 (goto-char (point-min)) |
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
235 (forward-line 2))) |
25280 | 236 |
237 ;; Find the correct starting point | |
238 (reftex-find-start-point (point) offset (get 'reftex-toc :reftex-line)) | |
239 (setq reftex-last-follow-point (point)))) | |
240 | |
47050
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
241 (defun reftex-toc-recenter (&optional arg) |
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
242 "Display the TOC window and highlight line corresponding to current position." |
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
243 (interactive "P") |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
244 (let ((buf (current-buffer)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
245 (frame (selected-frame))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
246 (reftex-toc arg t) |
47050
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
247 (if (= (count-lines 1 (point)) 2) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
248 (let ((current-prefix-arg nil)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
249 (select-window (get-buffer-window buf frame)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
250 (reftex-toc nil t))) |
47050
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
251 (and (> (point) 1) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
252 (not (get-text-property (point) 'intangible)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
253 (memq reftex-highlight-selection '(cursor both)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
254 (reftex-highlight 2 |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
255 (or (previous-single-property-change |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
256 (min (point-max) (1+ (point))) :data) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
257 (point-min)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
258 (or (next-single-property-change (point) :data) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
259 (point-max)))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
260 (select-window (get-buffer-window buf frame)))) |
47050
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
261 |
25280 | 262 (defun reftex-toc-pre-command-hook () |
263 ;; used as pre command hook in *toc* buffer | |
264 (reftex-unhighlight 0) | |
47050
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
265 ) |
25280 | 266 |
267 (defun reftex-toc-post-command-hook () | |
268 ;; used in the post-command-hook for the *toc* buffer | |
269 (when (get-text-property (point) :data) | |
270 (put 'reftex-toc :reftex-data (get-text-property (point) :data)) | |
271 (and (> (point) 1) | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
272 (not (get-text-property (point) 'intangible)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
273 (memq reftex-highlight-selection '(cursor both)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
274 (reftex-highlight 2 |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
275 (or (previous-single-property-change (1+ (point)) :data) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
276 (point-min)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
277 (or (next-single-property-change (point) :data) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
278 (point-max))))) |
25280 | 279 (if (integerp reftex-toc-follow-mode) |
280 ;; remove delayed action | |
281 (setq reftex-toc-follow-mode t) | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
282 (and (not (reftex-toc-dframe-p)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
283 reftex-toc-follow-mode |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
284 (not (equal reftex-last-follow-point (point))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
285 ;; show context in other window |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
286 (setq reftex-last-follow-point (point)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
287 (condition-case nil |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
288 (reftex-toc-visit-location nil (not reftex-revisit-to-follow)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
289 (error t))))) |
25280 | 290 |
291 (defun reftex-re-enlarge () | |
50979
85e525daebfc
(reftex-toc-visit-location):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49599
diff
changeset
|
292 ;; Enlarge window to a remembered size. |
46612
7522419c4db0
Updated to reftex 4.17
Carsten Dominik <dominik@science.uva.nl>
parents:
41785
diff
changeset
|
293 (if reftex-toc-split-windows-horizontally |
7522419c4db0
Updated to reftex 4.17
Carsten Dominik <dominik@science.uva.nl>
parents:
41785
diff
changeset
|
294 (enlarge-window-horizontally |
7522419c4db0
Updated to reftex 4.17
Carsten Dominik <dominik@science.uva.nl>
parents:
41785
diff
changeset
|
295 (max 0 (- (or reftex-last-window-width (window-width)) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
296 (window-width)))) |
46612
7522419c4db0
Updated to reftex 4.17
Carsten Dominik <dominik@science.uva.nl>
parents:
41785
diff
changeset
|
297 (enlarge-window |
7522419c4db0
Updated to reftex 4.17
Carsten Dominik <dominik@science.uva.nl>
parents:
41785
diff
changeset
|
298 (max 0 (- (or reftex-last-window-height (window-height)) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
299 (window-height)))))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
300 |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
301 (defun reftex-toc-dframe-p (&optional frame error) |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
302 ;; Check if FRAME is the dedicated TOC frame. |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
303 ;; If yes, and ERROR is non-nil, throw an error. |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
304 (setq frame (or frame (selected-frame))) |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
305 (let ((res (equal |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
306 (if (fboundp 'frame-property) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
307 (frame-property frame 'name) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
308 (frame-parameter frame 'name)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
309 "RefTeX TOC Frame"))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
310 (if (and res error) |
63433
d70b1038ee22
(reftex-toc-dframe-p, reftex-toc-promote-prepare): Follow error conventions.
Juanma Barranquero <lekktu@gmail.com>
parents:
62774
diff
changeset
|
311 (error "This frame is view-only. Use `C-c =' to create toc window for commands")) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
312 res)) |
25280 | 313 |
314 (defun reftex-toc-show-help () | |
315 "Show a summary of special key bindings." | |
316 (interactive) | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
317 (reftex-toc-dframe-p nil 'error) |
25280 | 318 (with-output-to-temp-buffer "*RefTeX Help*" |
319 (princ reftex-toc-help)) | |
320 (reftex-enlarge-to-fit "*RefTeX Help*" t) | |
321 ;; If follow mode is active, arrange to delay it one command | |
322 (if reftex-toc-follow-mode | |
323 (setq reftex-toc-follow-mode 1))) | |
324 | |
325 (defun reftex-toc-next (&optional arg) | |
326 "Move to next selectable item." | |
327 (interactive "p") | |
87941
d77b6e5ee8af
* sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87633
diff
changeset
|
328 (when (featurep 'xemacs) (setq zmacs-region-stays t)) |
25280 | 329 (setq reftex-callback-fwd t) |
330 (or (eobp) (forward-char 1)) | |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
331 (goto-char (or (next-single-property-change (point) :data) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
332 (point)))) |
25280 | 333 (defun reftex-toc-previous (&optional arg) |
334 "Move to previous selectable item." | |
335 (interactive "p") | |
87941
d77b6e5ee8af
* sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87633
diff
changeset
|
336 (when (featurep 'xemacs) (setq zmacs-region-stays t)) |
25280 | 337 (setq reftex-callback-fwd nil) |
338 (goto-char (or (previous-single-property-change (point) :data) | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
339 (point)))) |
25280 | 340 (defun reftex-toc-next-heading (&optional arg) |
341 "Move to next table of contentes line." | |
342 (interactive "p") | |
87941
d77b6e5ee8af
* sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87633
diff
changeset
|
343 (when (featurep 'xemacs) (setq zmacs-region-stays t)) |
25280 | 344 (end-of-line) |
345 (re-search-forward "^ " nil t arg) | |
346 (beginning-of-line)) | |
347 (defun reftex-toc-previous-heading (&optional arg) | |
348 "Move to previous table of contentes line." | |
349 (interactive "p") | |
87941
d77b6e5ee8af
* sieve.el (sieve-make-overlay, sieve-overlay-put, sieve-overlays-at):
Dan Nicolaescu <dann@ics.uci.edu>
parents:
87633
diff
changeset
|
350 (when (featurep 'xemacs) (setq zmacs-region-stays t)) |
25280 | 351 (re-search-backward "^ " nil t arg)) |
352 (defun reftex-toc-toggle-follow () | |
353 "Toggle follow (other window follows with context)." | |
354 (interactive) | |
355 (setq reftex-last-follow-point -1) | |
356 (setq reftex-toc-follow-mode (not reftex-toc-follow-mode))) | |
357 (defun reftex-toc-toggle-file-boundary () | |
358 "Toggle inclusion of file boundaries in *toc* buffer." | |
359 (interactive) | |
360 (setq reftex-toc-include-file-boundaries | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
361 (not reftex-toc-include-file-boundaries)) |
25280 | 362 (reftex-toc-revert)) |
363 (defun reftex-toc-toggle-labels (arg) | |
364 "Toggle inclusion of labels in *toc* buffer. | |
365 With prefix ARG, prompt for a label type and include only labels of | |
366 that specific type." | |
367 (interactive "P") | |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
368 (setq reftex-toc-include-labels |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
369 (if arg (reftex-query-label-type) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
370 (not reftex-toc-include-labels))) |
25280 | 371 (reftex-toc-revert)) |
372 (defun reftex-toc-toggle-index (arg) | |
373 "Toggle inclusion of index in *toc* buffer. | |
374 With prefix arg, prompt for an index tag and include only entries of that | |
375 specific index." | |
376 (interactive "P") | |
377 (setq reftex-toc-include-index-entries | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
378 (if arg (reftex-index-select-tag) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
379 (not reftex-toc-include-index-entries))) |
25280 | 380 (reftex-toc-revert)) |
381 (defun reftex-toc-toggle-context () | |
382 "Toggle inclusion of label context in *toc* buffer. | |
383 Label context is only displayed when the labels are there as well." | |
384 (interactive) | |
385 (setq reftex-toc-include-context (not reftex-toc-include-context)) | |
386 (reftex-toc-revert)) | |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25806
diff
changeset
|
387 (defun reftex-toc-max-level (arg) |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25806
diff
changeset
|
388 "Set the maximum level of toc lines in this buffer to value of prefix ARG. |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25806
diff
changeset
|
389 When no prefix is given, set the max level to a large number, so that all |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25806
diff
changeset
|
390 levels are shown. For eaxample, to set the level to 3, type `3 m'." |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25806
diff
changeset
|
391 (interactive "P") |
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25806
diff
changeset
|
392 (setq reftex-toc-max-level (if arg |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
393 (prefix-numeric-value arg) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
394 100)) |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25806
diff
changeset
|
395 (setq reftex-toc-max-level-indicator |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
396 (if arg (int-to-string reftex-toc-max-level) "ALL")) |
26910
489a5439b988
* reftex.el (reftex-compile-variables): respect new structure of
Carsten Dominik <dominik@science.uva.nl>
parents:
25806
diff
changeset
|
397 (reftex-toc-revert)) |
25280 | 398 (defun reftex-toc-view-line () |
399 "View document location in other window." | |
400 (interactive) | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
401 (reftex-toc-dframe-p nil 'error) |
25280 | 402 (reftex-toc-visit-location)) |
403 (defun reftex-toc-goto-line-and-hide () | |
404 "Go to document location in other window. Hide the *toc* window." | |
405 (interactive) | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
406 (reftex-toc-dframe-p nil 'error) |
25280 | 407 (reftex-toc-visit-location 'hide)) |
408 (defun reftex-toc-goto-line () | |
409 "Go to document location in other window. *toc* window stays." | |
410 (interactive) | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
411 (reftex-toc-dframe-p nil 'error) |
25280 | 412 (reftex-toc-visit-location t)) |
413 (defun reftex-toc-mouse-goto-line-and-hide (ev) | |
414 "Go to document location in other window. Hide the *toc* window." | |
415 (interactive "e") | |
416 (mouse-set-point ev) | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
417 (reftex-toc-dframe-p nil 'error) |
25280 | 418 (reftex-toc-visit-location 'hide)) |
419 (defun reftex-toc-show-calling-point () | |
420 "Show point where reftex-toc was called from." | |
421 (interactive) | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
422 (reftex-toc-dframe-p nil 'error) |
25280 | 423 (let ((this-window (selected-window))) |
424 (unwind-protect | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
425 (progn |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
426 (switch-to-buffer-other-window |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
427 (marker-buffer reftex-toc-return-marker)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
428 (goto-char (marker-position reftex-toc-return-marker)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
429 (recenter '(4))) |
25280 | 430 (select-window this-window)))) |
431 (defun reftex-toc-quit () | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
432 "Hide the *toc* window and do not move point. |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
433 If the toc window is the only window on the dedicated TOC frame, the frame |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
434 is destroyed." |
25280 | 435 (interactive) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
436 (if (and (one-window-p) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
437 (reftex-toc-dframe-p) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
438 (> (length (frame-list)) 1)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
439 (delete-frame) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
440 (or (one-window-p) (delete-window)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
441 (switch-to-buffer (marker-buffer reftex-toc-return-marker)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
442 (reftex-re-enlarge) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
443 (goto-char (or (marker-position reftex-toc-return-marker) (point))))) |
25280 | 444 (defun reftex-toc-quit-and-kill () |
445 "Kill the *toc* buffer." | |
446 (interactive) | |
447 (kill-buffer "*toc*") | |
448 (or (one-window-p) (delete-window)) | |
449 (switch-to-buffer (marker-buffer reftex-toc-return-marker)) | |
450 (reftex-re-enlarge) | |
451 (goto-char (marker-position reftex-toc-return-marker))) | |
452 (defun reftex-toc-display-index (&optional arg) | |
453 "Display the index buffer for the current document. | |
454 This works just like `reftex-display-index' from a LaTeX buffer. | |
455 With prefix arg 1, restrict index to the section at point." | |
456 (interactive "P") | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
457 (reftex-toc-dframe-p nil 'error) |
25280 | 458 (let ((data (get-text-property (point) :data)) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
459 (docstruct (symbol-value reftex-docstruct-symbol)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
460 bor eor restr) |
25280 | 461 (when (equal arg 2) |
462 (setq bor (reftex-last-assoc-before-elt 'toc data docstruct) | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
463 eor (assoc 'toc (cdr (memq bor docstruct))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
464 restr (list (nth 6 bor) bor eor))) |
25280 | 465 (reftex-toc-goto-line) |
466 (reftex-display-index (if restr nil arg) restr))) | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
467 |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
468 ;; Rescanning the document and rebuilding the TOC buffer. |
25280 | 469 (defun reftex-toc-rescan (&rest ignore) |
470 "Regenerate the *toc* buffer by reparsing file of section at point." | |
471 (interactive) | |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
472 (if (and reftex-enable-partial-scans |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
473 (null current-prefix-arg)) |
25280 | 474 (let* ((data (get-text-property (point) :data)) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
475 (what (car data)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
476 (file (cond ((eq what 'toc) (nth 3 data)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
477 ((memq what '(eof bof file-error)) (nth 1 data)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
478 ((stringp what) (nth 3 data)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
479 ((eq what 'index) (nth 3 data)))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
480 (line (+ (count-lines (point-min) (point)) (if (bolp) 1 0)))) |
25280 | 481 (if (not file) |
482 (error "Don't know which file to rescan. Try `C-u r'") | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
483 (put 'reftex-toc :reftex-line line) |
25280 | 484 (switch-to-buffer-other-window |
485 (reftex-get-file-buffer-force file)) | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
486 (setq current-prefix-arg '(4)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
487 (let ((reftex-rebuilding-toc t)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
488 (reftex-toc)))) |
25280 | 489 (reftex-toc-Rescan)) |
490 (reftex-kill-temporary-buffers)) | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
491 |
25280 | 492 (defun reftex-toc-Rescan (&rest ignore) |
493 "Regenerate the *toc* buffer by reparsing the entire document." | |
494 (interactive) | |
47050
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
495 (let* ((line (+ (count-lines (point-min) (point)) (if (bolp) 1 0)))) |
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
496 (put 'reftex-toc :reftex-line line)) |
25280 | 497 (switch-to-buffer-other-window |
498 (reftex-get-file-buffer-force reftex-last-toc-file)) | |
499 (setq current-prefix-arg '(16)) | |
47050
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
500 (let ((reftex-rebuilding-toc t)) |
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
501 (reftex-toc))) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
502 |
25280 | 503 (defun reftex-toc-revert (&rest ignore) |
504 "Regenerate the *toc* from the internal lists." | |
505 (interactive) | |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
506 (let ((unsplittable |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
507 (if (fboundp 'frame-property) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
508 (frame-property (selected-frame) 'unsplittable) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
509 (frame-parameter (selected-frame) 'unsplittable))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
510 (reftex-rebuilding-toc t)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
511 (if unsplittable |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
512 (switch-to-buffer |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
513 (reftex-get-file-buffer-force reftex-last-toc-file)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
514 (switch-to-buffer-other-window |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
515 (reftex-get-file-buffer-force reftex-last-toc-file)))) |
25280 | 516 (reftex-erase-buffer "*toc*") |
517 (setq current-prefix-arg nil) | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
518 (reftex-toc t)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
519 |
25280 | 520 (defun reftex-toc-external (&rest ignore) |
521 "Switch to table of contents of an external document." | |
522 (interactive) | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
523 (reftex-toc-dframe-p nil 'error) |
25280 | 524 (let* ((old-buf (current-buffer)) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
525 (xr-alist (get-text-property 1 'xr-alist)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
526 (xr-index (reftex-select-external-document |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
527 xr-alist 0))) |
25280 | 528 (switch-to-buffer-other-window (or (reftex-get-file-buffer-force |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
529 (cdr (nth xr-index xr-alist))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
530 (error "Cannot switch document"))) |
25280 | 531 (reftex-toc) |
532 (if (equal old-buf (current-buffer)) | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
533 (message "") |
25280 | 534 (message "Switched document")))) |
535 | |
37998
706af946b1e7
* reftex-ref.el (reftex-select-label-help): Added "z" key
Carsten Dominik <dominik@science.uva.nl>
parents:
34402
diff
changeset
|
536 (defun reftex-toc-jump (arg) |
706af946b1e7
* reftex-ref.el (reftex-select-label-help): Added "z" key
Carsten Dominik <dominik@science.uva.nl>
parents:
34402
diff
changeset
|
537 "Jump to a specific section. E.g. '3 z' jumps to section 3. |
706af946b1e7
* reftex-ref.el (reftex-select-label-help): Added "z" key
Carsten Dominik <dominik@science.uva.nl>
parents:
34402
diff
changeset
|
538 Useful for large TOC's." |
706af946b1e7
* reftex-ref.el (reftex-select-label-help): Added "z" key
Carsten Dominik <dominik@science.uva.nl>
parents:
34402
diff
changeset
|
539 (interactive "P") |
706af946b1e7
* reftex-ref.el (reftex-select-label-help): Added "z" key
Carsten Dominik <dominik@science.uva.nl>
parents:
34402
diff
changeset
|
540 (goto-char (point-min)) |
706af946b1e7
* reftex-ref.el (reftex-select-label-help): Added "z" key
Carsten Dominik <dominik@science.uva.nl>
parents:
34402
diff
changeset
|
541 (re-search-forward |
706af946b1e7
* reftex-ref.el (reftex-select-label-help): Added "z" key
Carsten Dominik <dominik@science.uva.nl>
parents:
34402
diff
changeset
|
542 (concat "^ *" (number-to-string (if (numberp arg) arg 1)) " ") |
706af946b1e7
* reftex-ref.el (reftex-select-label-help): Added "z" key
Carsten Dominik <dominik@science.uva.nl>
parents:
34402
diff
changeset
|
543 nil t) |
706af946b1e7
* reftex-ref.el (reftex-select-label-help): Added "z" key
Carsten Dominik <dominik@science.uva.nl>
parents:
34402
diff
changeset
|
544 (beginning-of-line)) |
706af946b1e7
* reftex-ref.el (reftex-select-label-help): Added "z" key
Carsten Dominik <dominik@science.uva.nl>
parents:
34402
diff
changeset
|
545 |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
546 ;; Promotion/Demotion stuff |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
547 |
65548
253cad16882d
Little fixes to remove compiler warnings
Carsten Dominik <dominik@science.uva.nl>
parents:
65270
diff
changeset
|
548 (defvar delta) |
253cad16882d
Little fixes to remove compiler warnings
Carsten Dominik <dominik@science.uva.nl>
parents:
65270
diff
changeset
|
549 (defvar pro-or-de) |
253cad16882d
Little fixes to remove compiler warnings
Carsten Dominik <dominik@science.uva.nl>
parents:
65270
diff
changeset
|
550 (defvar start-pos) |
253cad16882d
Little fixes to remove compiler warnings
Carsten Dominik <dominik@science.uva.nl>
parents:
65270
diff
changeset
|
551 (defvar start-line) |
253cad16882d
Little fixes to remove compiler warnings
Carsten Dominik <dominik@science.uva.nl>
parents:
65270
diff
changeset
|
552 (defvar mark-line) |
253cad16882d
Little fixes to remove compiler warnings
Carsten Dominik <dominik@science.uva.nl>
parents:
65270
diff
changeset
|
553 |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
554 (defun reftex-toc-demote (&optional arg) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
555 "Demote section at point. If region is active, apply to all in region." |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
556 (interactive "p") |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
557 (reftex-toc-do-promote 1)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
558 (defun reftex-toc-promote (&optional arg) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
559 "Promote section at point. If region is active, apply to all in region." |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
560 (interactive "p") |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
561 (reftex-toc-do-promote -1)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
562 (defun reftex-toc-do-promote (delta) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
563 "Workhorse for reftex-toc-promote and reftex-to-demote. |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
564 Changes the level of sections in the current region, or just the section at |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
565 point." |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
566 ;; We should not do anything unless we are sure this is going to work for |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
567 ;; each section in the region. Therefore we first collect information and |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
568 ;; test. |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
569 (let* ((start-line (+ (count-lines (point-min) (point)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
570 (if (bolp) 1 0))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
571 (mark-line (if (reftex-region-active-p) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
572 (save-excursion (goto-char (mark)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
573 (+ (count-lines (point-min) (point)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
574 (if (bolp) 1 0))))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
575 (start-pos (point)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
576 (pro-or-de (if (> delta 0) "de" "pro")) |
111338 | 577 beg end entries data sections nsec msg) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
578 (setq msg |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
579 (catch 'exit |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
580 (if (reftex-region-active-p) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
581 ;; A region is dangerous, check if we have a brandnew scan, |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
582 ;; to make sure we are not missing any section statements. |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
583 (if (not (reftex-toc-check-docstruct)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
584 (reftex-toc-load-all-files-for-promotion) ;; exits |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
585 (setq beg (min (point) (mark)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
586 end (max (point) (mark)))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
587 (setq beg (point) end (point))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
588 (goto-char beg) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
589 (while (and (setq data (get-text-property (point) :data)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
590 (<= (point) end)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
591 (if (eq (car data) 'toc) (push (cons data (point)) entries)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
592 (goto-char (or (next-single-property-change (point) :data) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
593 (point-max)))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
594 (setq entries (nreverse entries)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
595 ;; Get the relevant section numbers, for an informative message |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
596 (goto-char start-pos) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
597 (setq sections (reftex-toc-extract-section-number (car entries))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
598 (if (> (setq nsec (length entries)) 1) |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
599 (setq sections |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
600 (concat sections "-" |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
601 (reftex-toc-extract-section-number |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
602 (nth (1- nsec) entries))))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
603 ;; Run through the list and prepare the changes. |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
604 (setq entries (mapcar 'reftex-toc-promote-prepare entries)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
605 ;; Ask for permission |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
606 (if (or (not reftex-toc-confirm-promotion) ; never confirm |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
607 (and (integerp reftex-toc-confirm-promotion) ; confirm if many |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
608 (< nsec reftex-toc-confirm-promotion)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
609 (yes-or-no-p ; ask |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
610 (format "%s %d toc-entr%s (section%s %s)? " |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
611 (if (< delta 0) "Promote" "Demote") |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
612 nsec |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
613 (if (= 1 nsec) "y" "ies") |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
614 (if (= 1 nsec) "" "s") |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
615 sections))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
616 nil ; we have permission, do nothing |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
617 (error "Abort")) ; abort, we don't have permission |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
618 ;; Do the changes |
85195
718f0bcfdb7c
(reftex-toc-do-promote): Use mapc rather than mapcar.
Glenn Morris <rgm@gnu.org>
parents:
78225
diff
changeset
|
619 (mapc 'reftex-toc-promote-action entries) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
620 ;; Rescan the document and rebuilt the toc buffer |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
621 (save-window-excursion |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
622 (reftex-toc-Rescan)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
623 (reftex-toc-restore-region start-line mark-line) |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
624 (message "%d section%s %smoted" |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
625 nsec (if (= 1 nsec) "" "s") pro-or-de) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
626 nil)) |
87170
e50a2e215441
* erc-stamp.el (erc-echo-timestamp):
David Kastrup <dak@gnu.org>
parents:
87022
diff
changeset
|
627 (if msg (progn (ding) (message "%s" msg))))) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
628 |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
629 |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
630 (defun reftex-toc-restore-region (point-line &optional mark-line) |
111338 | 631 (let (mpos) |
632 (when mark-line | |
633 (goto-char (point-min)) | |
634 (forward-line (1- mark-line)) | |
635 (setq mpos (point))) | |
636 (when point-line | |
637 (goto-char (point-min)) | |
638 (forward-line (1- point-line))) | |
639 (when mark-line | |
640 (set-mark mpos) | |
641 (if (featurep 'xemacs) | |
642 (zmacs-activate-region) | |
643 (setq mark-active t | |
644 deactivate-mark nil))))) | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
645 |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
646 (defun reftex-toc-promote-prepare (x) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
647 "Look at a toc entry and see if we could pro/demote it. |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
648 Expects the level change DELTA to be dynamically scoped into this function. |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
649 This function prepares everything for the changes, but does not do it. |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
650 The return value is a list with information needed when doing the |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
651 promotion/demotion later." |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
652 (let* ((data (car x)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
653 (toc-point (cdr x)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
654 (marker (nth 4 data)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
655 (literal (nth 7 data)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
656 (load nil) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
657 (name nil) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
658 ;; Here follows some paranoid code to make very sure we are not |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
659 ;; going to break anything |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
660 (name1 ; dummy |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
661 (if (and (markerp marker) (marker-buffer marker)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
662 ;; Buffer is still live and we have the marker. |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
663 (progn |
107252
2da9673fc448
Fix more save-excursion warnings.
Chong Yidong <cyd@stupidchicken.com>
parents:
107146
diff
changeset
|
664 (with-current-buffer (marker-buffer marker) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
665 ;; Goto the buffer and check of section is unchanged |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
666 (goto-char (marker-position marker)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
667 (if (looking-at (regexp-quote literal)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
668 ;; OK, get the makro name |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
669 (progn |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
670 (beginning-of-line 1) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
671 (if (looking-at reftex-section-regexp) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
672 (setq name (reftex-match-string 2)) |
105170 | 673 (error "Something is wrong! Contact maintainer!"))) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
674 ;; Section has changed, request scan and loading |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
675 ;; We use a variable to delay until after the safe-exc. |
111333
de02b794c330
Don't be so lax with spelling.
Glenn Morris <rgm@gnu.org>
parents:
110015
diff
changeset
|
676 ;; because otherwise we lose the region. |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
677 (setq load t))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
678 ;; Scan document and load all files, this exits command |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
679 (if load (reftex-toc-load-all-files-for-promotion))) ; exits |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
680 ;; We don't have a live marker: scan and load files. |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
681 (reftex-toc-load-all-files-for-promotion))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
682 (level (cdr (assoc name reftex-section-levels-all))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
683 (dummy (if (not (integerp level)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
684 (progn |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
685 (goto-char toc-point) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
686 (error "Cannot %smote special sections" pro-or-de)))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
687 ;; Delta is dynamically scoped into here... |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
688 (newlevel (if (>= level 0) (+ delta level) (- level delta))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
689 (dummy2 (if (or (and (>= level 0) (= newlevel -1)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
690 (and (< level 0) (= newlevel 0))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
691 (error "Cannot %smote \\%s" pro-or-de name))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
692 (newname (reftex-toc-newhead-from-alist newlevel name |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
693 reftex-section-levels-all))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
694 (if (and name newname) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
695 (list data name newname toc-point) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
696 (goto-char toc-point) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
697 (error "Cannot %smote \\%s" pro-or-de name)))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
698 |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
699 (defun reftex-toc-promote-action (x) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
700 "Change the level of a toc entry. |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
701 DELTA and PRO-OR-DE are assumed to be dynamically scoped into this function." |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
702 (let* ((data (car x)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
703 (name (nth 1 x)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
704 (newname (nth 2 x)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
705 (marker (nth 4 data))) |
105813
df4934f25eef
* textmodes/two-column.el (2C-split):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
105170
diff
changeset
|
706 (with-current-buffer (marker-buffer marker) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
707 (goto-char (marker-position marker)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
708 (if (looking-at (concat "\\([ \t]*\\\\\\)" (regexp-quote name))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
709 (replace-match (concat "\\1" newname)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
710 (error "Fatal error during %smotion" pro-or-de))))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
711 |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
712 (defun reftex-toc-extract-section-number (entry) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
713 "Get the numbering of a toc entry, for message purposes." |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
714 (if (string-match "\\s-*\\(\\S-+\\)" (nth 2 (car entry))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
715 (match-string 1 (nth 2 (car entry))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
716 "?")) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
717 |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
718 (defun reftex-toc-newhead-from-alist (nlevel head alist) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
719 "Get new heading with level NLEVEL from ALIST. |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
720 If there are no such entries, return nil. |
107146
149c0b848923
Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
106815
diff
changeset
|
721 If there are several different entries with same new level, choose the |
149c0b848923
Fix typos in docstrings.
Juanma Barranquero <lekktu@gmail.com>
parents:
106815
diff
changeset
|
722 one with the smallest distance to the association of HEAD in the alist. |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
723 This makes it possible for promotion to work several sets of headings, |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
724 if these sets are sorted blocks in the alist." |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
725 (let* ((al alist) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
726 (ass (assoc head al)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
727 (pos (length (memq ass al))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
728 dist (mindist 1000) newhead) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
729 (while al |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
730 (if (equal (cdar al) nlevel) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
731 (progn |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
732 (setq dist (abs (- (length al) pos))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
733 (if (< dist mindist) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
734 (setq newhead (car (car al)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
735 mindist dist)))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
736 (setq al (cdr al))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
737 newhead)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
738 |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
739 (defun reftex-toc-check-docstruct () |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
740 "Check if the current docstruct is fully up to date and all files visited." |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
741 ;; We do this by checking if all sections are on the right position |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
742 (let ((docstruct (symbol-value reftex-docstruct-symbol)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
743 entry marker empoint) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
744 (catch 'exit |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
745 (while (setq entry (pop docstruct)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
746 (if (eq (car entry) 'toc) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
747 (progn |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
748 (setq marker (nth 4 entry) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
749 empoint (nth 8 entry)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
750 (if (not (and (markerp marker) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
751 (marker-buffer marker) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
752 (= (marker-position marker) empoint))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
753 (throw 'exit nil))))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
754 t))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
755 |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
756 (defun reftex-toc-load-all-files-for-promotion () |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
757 "Make sure all files of the document are being visited by buffers, |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
758 and that the scanning info is absolutely up to date. |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
759 We do this by rescanning with reftex-keep-temporary-buffers bound to t. |
59579
a588c86a429c
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-40
Miles Bader <miles@gnu.org>
parents:
59534
diff
changeset
|
760 The variable PRO-OR-DE is assumed to be dynamically scoped into this function. |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
761 When finished, we exit with an error message." |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
762 (let ((reftex-keep-temporary-buffers t)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
763 (reftex-toc-Rescan) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
764 (reftex-toc-restore-region start-line mark-line) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
765 (throw 'exit |
59579
a588c86a429c
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-40
Miles Bader <miles@gnu.org>
parents:
59534
diff
changeset
|
766 "TOC had to be updated first. Please check selection and repeat the command."))) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
767 |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
768 (defun reftex-toc-rename-label () |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
769 "Rename the currently selected label in the *TOC* buffer. |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
770 This launches a global search and replace in order to rename a label. |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
771 Renaming a label is hardly ever necessary - the only exeption is after |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
772 promotion/demotion in connection with a package like fancyref, where the |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
773 label prefix determines the wording of a reference." |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
774 (interactive) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
775 (let* ((toc (get-text-property (point) :data)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
776 (label (car toc)) newlabel) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
777 (if (not (stringp label)) |
105170 | 778 (error "This is not a label entry")) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
779 (setq newlabel (read-string (format "Rename label \"%s\" to:" label))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
780 (if (assoc newlabel (symbol-value reftex-docstruct-symbol)) |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
781 (if (not (y-or-n-p |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
782 (format "Label '%s' exists. Use anyway? " label))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
783 (error "Abort"))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
784 (save-excursion |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
785 (save-window-excursion |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
786 (reftex-toc-visit-location t) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
787 (condition-case nil |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
788 (reftex-query-replace-document |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
789 (concat "{" (regexp-quote label) "}") |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
790 (format "{%s}" newlabel)) |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
791 (error t)))) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
792 (reftex-toc-rescan))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
793 |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
794 |
25280 | 795 (defun reftex-toc-visit-location (&optional final no-revisit) |
796 ;; Visit the tex file corresponding to the toc entry on the current line. | |
797 ;; If FINAL is t, stay there | |
798 ;; If FINAL is 'hide, hide the *toc* window. | |
799 ;; Otherwise, move cursor back into *toc* window. | |
50979
85e525daebfc
(reftex-toc-visit-location):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49599
diff
changeset
|
800 ;; NO-REVISIT means don't visit files, just use live buffers. |
25280 | 801 ;; This function is pretty clever about finding back a section heading, |
802 ;; even if the buffer is not live, or things like outline, x-symbol etc. | |
803 ;; have been active. | |
804 | |
805 (let* ((toc (get-text-property (point) :data)) | |
806 (toc-window (selected-window)) | |
807 show-window show-buffer match) | |
808 | |
809 (unless toc (error "Don't know which toc line to visit")) | |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
810 |
25280 | 811 (cond |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
812 |
25280 | 813 ((eq (car toc) 'toc) |
814 ;; a toc entry | |
815 (setq match (reftex-toc-find-section toc no-revisit))) | |
816 | |
817 ((eq (car toc) 'index) | |
818 ;; an index entry | |
819 (setq match (reftex-index-show-entry toc no-revisit))) | |
820 | |
821 ((memq (car toc) '(bof eof)) | |
822 ;; A file entry | |
823 (setq match | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
824 (let ((where (car toc)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
825 (file (nth 1 toc))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
826 (if (or (not no-revisit) (reftex-get-buffer-visiting file)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
827 (progn |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
828 (switch-to-buffer-other-window |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
829 (reftex-get-file-buffer-force file nil)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
830 (goto-char (if (eq where 'bof) (point-min) (point-max)))) |
87170
e50a2e215441
* erc-stamp.el (erc-echo-timestamp):
David Kastrup <dak@gnu.org>
parents:
87022
diff
changeset
|
831 (message "%s" reftex-no-follow-message) nil)))) |
25280 | 832 |
833 ((stringp (car toc)) | |
834 ;; a label | |
835 (setq match (reftex-show-label-location toc reftex-callback-fwd | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
836 no-revisit t)))) |
25280 | 837 |
838 (setq show-window (selected-window) | |
839 show-buffer (current-buffer)) | |
840 | |
841 (unless match | |
842 (select-window toc-window) | |
843 (error "Cannot find location")) | |
844 | |
845 (select-window toc-window) | |
846 | |
847 ;; use the `final' parameter to decide what to do next | |
848 (cond | |
849 ((eq final t) | |
850 (reftex-unhighlight 0) | |
851 (select-window show-window)) | |
852 ((eq final 'hide) | |
853 (reftex-unhighlight 0) | |
854 (or (one-window-p) (delete-window)) | |
50979
85e525daebfc
(reftex-toc-visit-location):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49599
diff
changeset
|
855 ;; If `show-window' is still live, show-buffer is already visible |
85e525daebfc
(reftex-toc-visit-location):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49599
diff
changeset
|
856 ;; so let's not make it visible in yet-another-window. |
85e525daebfc
(reftex-toc-visit-location):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49599
diff
changeset
|
857 (if (window-live-p show-window) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
858 (set-buffer show-buffer) |
50979
85e525daebfc
(reftex-toc-visit-location):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
49599
diff
changeset
|
859 (switch-to-buffer show-buffer)) |
25280 | 860 (reftex-re-enlarge)) |
861 (t nil)))) | |
862 | |
863 (defun reftex-toc-find-section (toc &optional no-revisit) | |
864 (let* ((file (nth 3 toc)) | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
865 (marker (nth 4 toc)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
866 (level (nth 5 toc)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
867 (literal (nth 7 toc)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
868 (emergency-point (nth 8 toc)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
869 (match |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
870 (cond |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
871 ((and (markerp marker) (marker-buffer marker)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
872 ;; Buffer is still live and we have the marker. Should be easy. |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
873 (switch-to-buffer-other-window (marker-buffer marker)) |
59534
9bad65481674
2005-01-14 Carsten Dominik <dominik@science.uva.nl>
Carsten Dominik <dominik@science.uva.nl>
parents:
53852
diff
changeset
|
874 (push-mark nil) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
875 (goto-char (marker-position marker)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
876 (or (looking-at (regexp-quote literal)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
877 (looking-at (reftex-make-regexp-allow-for-ctrl-m literal)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
878 (looking-at (reftex-make-desperate-section-regexp literal)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
879 (looking-at (concat "\\\\" |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
880 (regexp-quote |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
881 (car |
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
882 (rassq level |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
883 reftex-section-levels-all))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
884 "[[{]?")))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
885 ((or (not no-revisit) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
886 (reftex-get-buffer-visiting file)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
887 ;; Marker is lost. Use the backup method. |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
888 (switch-to-buffer-other-window |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
889 (reftex-get-file-buffer-force file nil)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
890 (goto-char (or emergency-point (point-min))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
891 (or (looking-at (regexp-quote literal)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
892 (let ((len (length literal))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
893 (or (reftex-nearest-match (regexp-quote literal) len) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
894 (reftex-nearest-match |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
895 (reftex-make-regexp-allow-for-ctrl-m literal) len) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
896 (reftex-nearest-match |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
897 (reftex-make-desperate-section-regexp literal) len))))) |
87170
e50a2e215441
* erc-stamp.el (erc-echo-timestamp):
David Kastrup <dak@gnu.org>
parents:
87022
diff
changeset
|
898 (t (message "%s" reftex-no-follow-message) nil)))) |
25280 | 899 (when match |
900 (goto-char (match-beginning 0)) | |
901 (if (not (= (point) (point-max))) (recenter 1)) | |
902 (reftex-highlight 0 (match-beginning 0) (match-end 0) (current-buffer))) | |
903 match)) | |
904 | |
905 (defun reftex-make-desperate-section-regexp (old) | |
906 ;; Return a regexp which will still match a section statement even if | |
907 ;; x-symbol or isotex or the like have been at work in the mean time. | |
908 (let* ((n (1+ (string-match "[[{]" old))) | |
909 (new (regexp-quote (substring old 0 (1+ (string-match "[[{]" old))))) | |
910 (old (substring old n))) | |
911 (while (string-match | |
912 "\\([\r\n]\\)\\|\\(\\`\\|[ \t\n\r]\\)\\([a-zA-Z0-9]+\\)\\([ \t\n\r]\\|}\\'\\)" | |
913 old) | |
914 (if (match-beginning 1) | |
915 (setq new (concat new "[^\n\r]*[\n\r]")) | |
916 (setq new (concat new "[^\n\r]*" (match-string 3 old)))) | |
917 (setq old (substring old (match-end 0)))) | |
918 new)) | |
919 | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
920 ;; Auto recentering of TOC window |
47050
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
921 |
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
922 (defun reftex-recenter-toc-when-idle () |
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
923 (and (> (buffer-size) 5) |
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
924 reftex-mode |
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
925 (not (active-minibuffer-window)) |
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
926 (fboundp 'reftex-toc-mode) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
927 (get-buffer-window "*toc*" 'visible) |
47050
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
928 (string= reftex-last-toc-master (reftex-TeX-master-file)) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
929 (let (current-prefix-arg) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
930 (reftex-toc-recenter)))) |
47050
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
931 |
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
932 (defun reftex-toggle-auto-toc-recenter () |
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
933 "Toggle the automatic recentering of the toc window. |
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
934 When active, leaving point idle will make the toc window jump to the correct |
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
935 section." |
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
936 (interactive) |
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
937 (if reftex-toc-auto-recenter-timer |
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
938 (progn |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
939 (if (featurep 'xemacs) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
940 (delete-itimer reftex-toc-auto-recenter-timer) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
941 (cancel-timer reftex-toc-auto-recenter-timer)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
942 (setq reftex-toc-auto-recenter-timer nil) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
943 (message "Automatic recentering of toc windwo was turned off")) |
47050
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
944 (setq reftex-toc-auto-recenter-timer |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
945 (if (featurep 'xemacs) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
946 (start-itimer "RefTeX Idle Timer for recenter" |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
947 'reftex-recenter-toc-when-idle |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
948 reftex-idle-time reftex-idle-time t) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
949 (run-with-idle-timer |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
950 reftex-idle-time t 'reftex-recenter-toc-when-idle))) |
47050
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
951 (message "Automatic recentering of toc window was turned on"))) |
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
952 |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
953 (defun reftex-toc-toggle-dedicated-frame () |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
954 "Toggle the display of a separate frame for the TOC. |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
955 This frame is not used by the `reftex-toc' commands, but it is useful to |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
956 always show the current section in connection with the option |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
957 `reftex-auto-recenter-toc'." |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
958 (interactive) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
959 (catch 'exit |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
960 (let* ((frames (frame-list)) frame |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
961 (get-frame-prop-func (if (fboundp 'frame-property) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
962 'frame-property |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
963 'frame-parameter))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
964 (while (setq frame (pop frames)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
965 (if (equal (funcall get-frame-prop-func frame 'name) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
966 "RefTeX TOC Frame") |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
967 (progn |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
968 (delete-frame frame) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
969 (throw 'exit nil)))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
970 (reftex-make-separate-toc-frame)))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
971 |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
972 (defun reftex-make-separate-toc-frame () |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
973 ;; Create a new fame showing only the toc buffer. |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
974 (let ((current-frame (selected-frame)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
975 (current-window (selected-window)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
976 (current-toc-window (get-buffer-window "*toc*" 'visible)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
977 current-toc-frame) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
978 (if (and current-toc-window |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
979 (not (equal (selected-frame) (window-frame current-toc-window)))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
980 nil |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
981 (setq current-toc-frame |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
982 (make-frame |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
983 '((name . "RefTeX TOC Frame") |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
984 (height . 20) (width . 60) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
985 (unsplittable . t) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
986 (minibuffer . nil) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
987 (default-toolbar-visible-p . nil) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
988 (menubar-visible-p . nil) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
989 (horizontal-scrollbar-visible-p . nil)))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
990 (select-frame current-toc-frame) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
991 (switch-to-buffer "*toc*") |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
992 (select-frame current-frame) |
87633
2b38ed4ed1bb
Ralf Angeli <angeli at caeruleus.net>
Glenn Morris <rgm@gnu.org>
parents:
87170
diff
changeset
|
993 (cond ((fboundp 'x-focus-frame) |
2b38ed4ed1bb
Ralf Angeli <angeli at caeruleus.net>
Glenn Morris <rgm@gnu.org>
parents:
87170
diff
changeset
|
994 (x-focus-frame current-frame)) |
2b38ed4ed1bb
Ralf Angeli <angeli at caeruleus.net>
Glenn Morris <rgm@gnu.org>
parents:
87170
diff
changeset
|
995 ((and (featurep 'xemacs) ; `focus-frame' is a nop in Emacs. |
2b38ed4ed1bb
Ralf Angeli <angeli at caeruleus.net>
Glenn Morris <rgm@gnu.org>
parents:
87170
diff
changeset
|
996 (fboundp 'focus-frame)) |
2b38ed4ed1bb
Ralf Angeli <angeli at caeruleus.net>
Glenn Morris <rgm@gnu.org>
parents:
87170
diff
changeset
|
997 (focus-frame current-frame))) |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
998 (select-window current-window) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
999 (when (eq reftex-auto-recenter-toc 'frame) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1000 (unless reftex-toc-auto-recenter-timer |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1001 (reftex-toggle-auto-toc-recenter)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1002 (add-hook 'delete-frame-hook 'reftex-toc-delete-frame-hook))))) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1003 |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1004 (defun reftex-toc-delete-frame-hook (frame) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1005 (if (and reftex-toc-auto-recenter-timer |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1006 (reftex-toc-dframe-p frame)) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1007 (progn |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1008 (reftex-toggle-auto-toc-recenter)))) |
47050
904fd28be439
Update to RefTeX 4.19
Carsten Dominik <dominik@science.uva.nl>
parents:
46683
diff
changeset
|
1009 |
25280 | 1010 ;; Table of Contents map |
1011 (define-key reftex-toc-map (if (featurep 'xemacs) [(button2)] [(mouse-2)]) | |
1012 'reftex-toc-mouse-goto-line-and-hide) | |
69227
6c1428d2666e
(reftex-toc-map): Fixed typo,
Carsten Dominik <dominik@science.uva.nl>
parents:
69178
diff
changeset
|
1013 (define-key reftex-toc-map [follow-link] 'mouse-face) |
25280 | 1014 |
1015 (substitute-key-definition | |
1016 'next-line 'reftex-toc-next reftex-toc-map global-map) | |
1017 (substitute-key-definition | |
1018 'previous-line 'reftex-toc-previous reftex-toc-map global-map) | |
1019 | |
1020 (loop for x in | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1021 '(("n" . reftex-toc-next) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1022 ("p" . reftex-toc-previous) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1023 ("?" . reftex-toc-show-help) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1024 (" " . reftex-toc-view-line) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1025 ("\C-m" . reftex-toc-goto-line-and-hide) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1026 ("\C-i" . reftex-toc-goto-line) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1027 ("\C-c>" . reftex-toc-display-index) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1028 ("r" . reftex-toc-rescan) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1029 ("R" . reftex-toc-Rescan) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1030 ("g" . revert-buffer) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1031 ("q" . reftex-toc-quit); |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1032 ("k" . reftex-toc-quit-and-kill) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1033 ("f" . reftex-toc-toggle-follow); |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1034 ("a" . reftex-toggle-auto-toc-recenter) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1035 ("d" . reftex-toc-toggle-dedicated-frame) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1036 ("F" . reftex-toc-toggle-file-boundary) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1037 ("i" . reftex-toc-toggle-index) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1038 ("l" . reftex-toc-toggle-labels) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1039 ("t" . reftex-toc-max-level) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1040 ("c" . reftex-toc-toggle-context) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1041 ; ("%" . reftex-toc-toggle-commented) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1042 ("\M-%" . reftex-toc-rename-label) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1043 ("x" . reftex-toc-external) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1044 ("z" . reftex-toc-jump) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1045 ("." . reftex-toc-show-calling-point) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1046 ("\C-c\C-n" . reftex-toc-next-heading) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1047 ("\C-c\C-p" . reftex-toc-previous-heading) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1048 (">" . reftex-toc-demote) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1049 ("<" . reftex-toc-promote)) |
25280 | 1050 do (define-key reftex-toc-map (car x) (cdr x))) |
1051 | |
1052 (loop for key across "0123456789" do | |
1053 (define-key reftex-toc-map (vector (list key)) 'digit-argument)) | |
1054 (define-key reftex-toc-map "-" 'negative-argument) | |
1055 | |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
1056 (easy-menu-define |
25280 | 1057 reftex-toc-menu reftex-toc-map |
1058 "Menu for Table of Contents buffer" | |
1059 '("TOC" | |
1060 ["Show Location" reftex-toc-view-line t] | |
1061 ["Go To Location" reftex-toc-goto-line t] | |
1062 ["Exit & Go To Location" reftex-toc-goto-line-and-hide t] | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1063 ["Show Calling Point" reftex-toc-show-calling-point t] |
25280 | 1064 ["Quit" reftex-toc-quit t] |
1065 "--" | |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1066 ("Edit" |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1067 ["Promote" reftex-toc-promote t] |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1068 ["Demote" reftex-toc-demote t] |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1069 ["Rename Label" reftex-toc-rename-label t]) |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1070 "--" |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1071 ["Index" reftex-toc-display-index t] |
25280 | 1072 ["External Document TOC " reftex-toc-external t] |
1073 "--" | |
1074 ("Update" | |
34402
5eec8d1d09f0
Update to RefTeX 4.15, see ChangeLog for details
Carsten Dominik <dominik@science.uva.nl>
parents:
34211
diff
changeset
|
1075 ["Rebuilt *toc* Buffer" revert-buffer t] |
25280 | 1076 ["Rescan One File" reftex-toc-rescan reftex-enable-partial-scans] |
1077 ["Rescan Entire Document" reftex-toc-Rescan t]) | |
1078 ("Options" | |
1079 "TOC Items" | |
1080 ["File Boundaries" reftex-toc-toggle-file-boundary :style toggle | |
1081 :selected reftex-toc-include-file-boundaries] | |
1082 ["Labels" reftex-toc-toggle-labels :style toggle | |
1083 :selected reftex-toc-include-labels] | |
1084 ["Index Entries" reftex-toc-toggle-index :style toggle | |
1085 :selected reftex-toc-include-index-entries] | |
1086 ["Context" reftex-toc-toggle-context :style toggle | |
1087 :selected reftex-toc-include-context] | |
1088 "--" | |
104543
da8b3e61b182
Use forward-line rather than goto-line.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
1089 ["Follow Mode" reftex-toc-toggle-follow :style toggle |
52170
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1090 :selected reftex-toc-follow-mode] |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1091 ["Auto Recenter" reftex-toggle-auto-toc-recenter :style toggle |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1092 :selected reftex-toc-auto-recenter-timer] |
27340819ef07
Updated to version 4.21
Carsten Dominik <dominik@science.uva.nl>
parents:
50979
diff
changeset
|
1093 ["Dedicated Frame" reftex-toc-toggle-dedicated-frame t]) |
25280 | 1094 "--" |
1095 ["Help" reftex-toc-show-help t])) | |
1096 | |
1097 | |
59534
9bad65481674
2005-01-14 Carsten Dominik <dominik@science.uva.nl>
Carsten Dominik <dominik@science.uva.nl>
parents:
53852
diff
changeset
|
1098 ;;; reftex-toc.el ends here |