Mercurial > emacs
annotate lisp/info.el @ 1474:341c17b20f2a
(vc-prefix-map): Put vc-diff on = and vc-directory on d.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 24 Oct 1992 20:07:08 +0000 |
parents | 0c2d02ab27ca |
children | e31496f6289d |
rev | line source |
---|---|
754
b096f4af925c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
732
diff
changeset
|
1 ;;; info.el --- info package for Emacs. |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
2 |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
3 ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
811
diff
changeset
|
4 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
5 ;; Maintainer: FSF |
811
e694e0879463
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Keywords: help |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
7 |
325 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
325 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
24 ;;; Commentary: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
25 |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
26 ;;; Note that nowadays we expect info files to be made using makeinfo. |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
27 |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
28 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
754
diff
changeset
|
29 |
325 | 30 (defvar Info-history nil |
31 "List of info nodes user has visited. | |
32 Each element of list is a list (FILENAME NODENAME BUFFERPOS).") | |
33 | |
34 (defvar Info-enable-edit nil | |
680
f99c8512cd41
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
660
diff
changeset
|
35 "*Non-nil means the \\<info-mode-map>\\[Info-edit] command in Info can edit the current node. |
f99c8512cd41
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
660
diff
changeset
|
36 This is convenient if you want to write info files by hand. |
f99c8512cd41
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
660
diff
changeset
|
37 However, we recommend that you not do this. |
f99c8512cd41
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
660
diff
changeset
|
38 It is better to write a Texinfo file and generate the Info file from that, |
f99c8512cd41
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
660
diff
changeset
|
39 because that gives you a printed manual as well.") |
325 | 40 |
41 (defvar Info-enable-active-nodes t | |
42 "Non-nil allows Info to execute Lisp code associated with nodes. | |
43 The Lisp code is executed when the node is selected.") | |
44 | |
540 | 45 (defvar Info-default-directory-list nil |
46 "List of default directories to search for Info documentation files. | |
47 This value is used as the default for `Info-directory-list'. It is set | |
48 in paths.el.") | |
49 | |
50 (defvar Info-directory-list nil | |
325 | 51 "List of directories to search for Info documentation files. |
540 | 52 nil means not yet initialized. In this case, Info uses the environment |
53 variable INFODIR to initialize it, or `Info-default-directory-list' | |
54 if there is no INFODIR variable in the environment.") | |
325 | 55 |
56 (defvar Info-current-file nil | |
57 "Info file that Info is now looking at, or nil.") | |
58 | |
59 (defvar Info-current-subfile nil | |
60 "Info subfile that is actually in the *info* buffer now, | |
61 or nil if current info file is not split into subfiles.") | |
62 | |
63 (defvar Info-current-node nil | |
64 "Name of node that Info is now looking at, or nil.") | |
65 | |
66 (defvar Info-tag-table-marker (make-marker) | |
67 "Marker pointing at beginning of current Info file's tag table. | |
68 Marker points nowhere if file has no tag table.") | |
69 | |
70 ;;;###autoload | |
71 (defun info (&optional file) | |
72 "Enter Info, the documentation browser. | |
73 Optional argument FILE specifies the file to examine; | |
74 the default is the top-level directory of Info. | |
75 | |
76 In interactive use, a prefix argument directs this command | |
77 to read a file name from the minibuffer." | |
78 (interactive (if current-prefix-arg | |
79 (list (read-file-name "Info file name: " nil nil t)))) | |
540 | 80 (or Info-directory-list |
81 (setq Info-directory-list | |
82 (let ((path (getenv "INFOPATH"))) | |
83 (if path | |
84 (let ((list nil) | |
85 idx) | |
86 (while (> (length path) 0) | |
87 (setq idx (or (string-match ":" path) (length path)) | |
88 list (cons (substring path 0 idx) list) | |
89 path (substring path (min (1+ idx) | |
90 (length path))))) | |
91 (nreverse list)) | |
92 Info-default-directory-list)))) | |
325 | 93 (if file |
94 (Info-goto-node (concat "(" file ")")) | |
95 (if (get-buffer "*info*") | |
96 (switch-to-buffer "*info*") | |
97 (Info-directory)))) | |
98 | |
99 ;; Go to an info node specified as separate filename and nodename. | |
100 ;; no-going-back is non-nil if recovering from an error in this function; | |
101 ;; it says do not attempt further (recursive) error recovery. | |
102 (defun Info-find-node (filename nodename &optional no-going-back) | |
103 ;; Convert filename to lower case if not found as specified. | |
104 ;; Expand it. | |
105 (if filename | |
106 (let (temp temp-downcase found) | |
107 (setq filename (substitute-in-file-name filename)) | |
108 (let ((dirs (if (string-match "^\\./" filename) | |
109 ;; If specified name starts with `./' | |
110 ;; then just try current directory. | |
111 '("./") | |
112 Info-directory-list))) | |
113 ;; Search the directory list for file FILENAME. | |
114 (while (and dirs (not found)) | |
115 (setq temp (expand-file-name filename (car dirs))) | |
116 (setq temp-downcase | |
117 (expand-file-name (downcase filename) (car dirs))) | |
118 ;; Try several variants of specified name. | |
119 ;; Try downcasing, appending `.info', or both. | |
120 (cond ((file-exists-p temp) | |
121 (setq found temp)) | |
122 ((file-exists-p temp-downcase) | |
123 (setq found temp-downcase)) | |
124 ((file-exists-p (concat temp ".info")) | |
125 (setq found (concat temp ".info"))) | |
126 ((file-exists-p (concat temp-downcase ".info")) | |
127 (setq found (concat temp-downcase ".info")))) | |
128 (setq dirs (cdr dirs)))) | |
129 (if found | |
130 (setq filename found) | |
131 (error "Info file %s does not exist" filename)))) | |
132 ;; Record the node we are leaving. | |
133 (if (and Info-current-file (not no-going-back)) | |
134 (setq Info-history | |
135 (cons (list Info-current-file Info-current-node (point)) | |
136 Info-history))) | |
137 ;; Go into info buffer. | |
138 (switch-to-buffer "*info*") | |
139 (buffer-flush-undo (current-buffer)) | |
140 (or (eq major-mode 'Info-mode) | |
141 (Info-mode)) | |
142 (widen) | |
143 (setq Info-current-node nil) | |
144 (unwind-protect | |
145 (progn | |
146 ;; Switch files if necessary | |
147 (or (null filename) | |
148 (equal Info-current-file filename) | |
149 (let ((buffer-read-only nil)) | |
150 (setq Info-current-file nil | |
151 Info-current-subfile nil | |
152 buffer-file-name nil) | |
153 (erase-buffer) | |
154 (insert-file-contents filename t) | |
155 (set-buffer-modified-p nil) | |
156 (setq default-directory (file-name-directory filename)) | |
157 ;; See whether file has a tag table. Record the location if yes. | |
158 (set-marker Info-tag-table-marker nil) | |
159 (goto-char (point-max)) | |
160 (forward-line -8) | |
161 (or (equal nodename "*") | |
162 (not (search-forward "\^_\nEnd tag table\n" nil t)) | |
163 (let (pos) | |
164 ;; We have a tag table. Find its beginning. | |
165 ;; Is this an indirect file? | |
166 (search-backward "\nTag table:\n") | |
167 (setq pos (point)) | |
168 (if (save-excursion | |
169 (forward-line 2) | |
170 (looking-at "(Indirect)\n")) | |
171 ;; It is indirect. Copy it to another buffer | |
172 ;; and record that the tag table is in that buffer. | |
173 (save-excursion | |
174 (let ((buf (current-buffer))) | |
175 (set-buffer (get-buffer-create " *info tag table*")) | |
176 (buffer-flush-undo (current-buffer)) | |
177 (setq case-fold-search t) | |
178 (erase-buffer) | |
179 (insert-buffer-substring buf) | |
180 (set-marker Info-tag-table-marker | |
181 (match-end 0)))) | |
998 | 182 (set-marker Info-tag-table-marker pos)))) |
325 | 183 (setq Info-current-file |
184 (file-name-sans-versions buffer-file-name)))) | |
185 (if (equal nodename "*") | |
186 (progn (setq Info-current-node nodename) | |
187 (Info-set-mode-line)) | |
188 ;; Search file for a suitable node. | |
990
d76731ebdff0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
930
diff
changeset
|
189 (let ((guesspos (point-min)) |
d76731ebdff0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
930
diff
changeset
|
190 (regexp (concat "Node: *" (regexp-quote nodename) " *[,\t\n\177]"))) |
d76731ebdff0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
930
diff
changeset
|
191 ;; First get advice from tag table if file has one. |
d76731ebdff0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
930
diff
changeset
|
192 ;; Also, if this is an indirect info file, |
d76731ebdff0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
930
diff
changeset
|
193 ;; read the proper subfile into this buffer. |
325 | 194 (if (marker-position Info-tag-table-marker) |
195 (save-excursion | |
196 (set-buffer (marker-buffer Info-tag-table-marker)) | |
197 (goto-char Info-tag-table-marker) | |
990
d76731ebdff0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
930
diff
changeset
|
198 (if (re-search-forward regexp nil t) |
325 | 199 (progn |
200 (setq guesspos (read (current-buffer))) | |
201 ;; If this is an indirect file, | |
202 ;; determine which file really holds this node | |
203 ;; and read it in. | |
204 (if (not (eq (current-buffer) (get-buffer "*info*"))) | |
205 (setq guesspos | |
206 (Info-read-subfile guesspos)))) | |
207 (error "No such node: \"%s\"" nodename)))) | |
990
d76731ebdff0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
930
diff
changeset
|
208 (goto-char (max (point-min) (- guesspos 1000))) |
d76731ebdff0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
930
diff
changeset
|
209 ;; Now search from our advised position (or from beg of buffer) |
d76731ebdff0
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
930
diff
changeset
|
210 ;; to find the actual node. |
325 | 211 (catch 'foo |
212 (while (search-forward "\n\^_" nil t) | |
213 (forward-line 1) | |
214 (let ((beg (point))) | |
215 (forward-line 1) | |
216 (if (re-search-backward regexp beg t) | |
217 (throw 'foo t)))) | |
218 (error "No such node: %s" nodename))) | |
219 (Info-select-node))) | |
220 ;; If we did not finish finding the specified node, | |
221 ;; go back to the previous one. | |
222 (or Info-current-node no-going-back | |
223 (let ((hist (car Info-history))) | |
224 (setq Info-history (cdr Info-history)) | |
225 (Info-find-node (nth 0 hist) (nth 1 hist) t) | |
226 (goto-char (nth 2 hist))))) | |
227 (goto-char (point-min))) | |
228 | |
229 (defun Info-read-subfile (nodepos) | |
230 (set-buffer (marker-buffer Info-tag-table-marker)) | |
231 (goto-char (point-min)) | |
232 (search-forward "\n\^_") | |
233 (let (lastfilepos | |
234 lastfilename) | |
235 (forward-line 2) | |
236 (catch 'foo | |
237 (while (not (looking-at "\^_")) | |
238 (if (not (eolp)) | |
239 (let ((beg (point)) | |
240 thisfilepos thisfilename) | |
241 (search-forward ": ") | |
242 (setq thisfilename (buffer-substring beg (- (point) 2))) | |
243 (setq thisfilepos (read (current-buffer))) | |
244 ;; read in version 19 stops at the end of number. | |
245 ;; Advance to the next line. | |
246 (forward-line 1) | |
247 (if (> thisfilepos nodepos) | |
248 (throw 'foo t)) | |
249 (setq lastfilename thisfilename) | |
250 (setq lastfilepos thisfilepos)) | |
251 (forward-line 1)))) | |
252 (set-buffer (get-buffer "*info*")) | |
253 (or (equal Info-current-subfile lastfilename) | |
254 (let ((buffer-read-only nil)) | |
255 (setq buffer-file-name nil) | |
256 (widen) | |
257 (erase-buffer) | |
258 (insert-file-contents lastfilename) | |
259 (set-buffer-modified-p nil) | |
260 (setq Info-current-subfile lastfilename))) | |
261 (goto-char (point-min)) | |
262 (search-forward "\n\^_") | |
263 (+ (- nodepos lastfilepos) (point)))) | |
264 | |
265 ;; Select the info node that point is in. | |
266 (defun Info-select-node () | |
267 (save-excursion | |
268 ;; Find beginning of node. | |
269 (search-backward "\n\^_") | |
270 (forward-line 2) | |
271 ;; Get nodename spelled as it is in the node. | |
272 (re-search-forward "Node:[ \t]*") | |
273 (setq Info-current-node | |
274 (buffer-substring (point) | |
275 (progn | |
276 (skip-chars-forward "^,\t\n") | |
277 (point)))) | |
278 (Info-set-mode-line) | |
279 ;; Find the end of it, and narrow. | |
280 (beginning-of-line) | |
281 (let (active-expression) | |
282 (narrow-to-region (point) | |
283 (if (re-search-forward "\n[\^_\f]" nil t) | |
284 (prog1 | |
285 (1- (point)) | |
286 (if (looking-at "[\n\^_\f]*execute: ") | |
287 (progn | |
288 (goto-char (match-end 0)) | |
289 (setq active-expression | |
290 (read (current-buffer)))))) | |
291 (point-max))) | |
292 (if Info-enable-active-nodes (eval active-expression))))) | |
293 | |
294 (defun Info-set-mode-line () | |
295 (setq mode-line-buffer-identification | |
296 (concat | |
297 "Info: (" | |
298 (if Info-current-file | |
299 (file-name-nondirectory Info-current-file) | |
300 "") | |
301 ")" | |
302 (or Info-current-node "")))) | |
303 | |
304 ;; Go to an info node specified with a filename-and-nodename string | |
305 ;; of the sort that is found in pointers in nodes. | |
306 | |
307 (defun Info-goto-node (nodename) | |
308 "Go to info node named NAME. Give just NODENAME or (FILENAME)NODENAME." | |
309 (interactive "sGoto node: ") | |
310 (let (filename) | |
311 (string-match "\\s *\\((\\s *\\([^\t)]*\\)\\s *)\\s *\\|\\)\\(.*\\)" | |
312 nodename) | |
313 (setq filename (if (= (match-beginning 1) (match-end 1)) | |
314 "" | |
315 (substring nodename (match-beginning 2) (match-end 2))) | |
316 nodename (substring nodename (match-beginning 3) (match-end 3))) | |
317 (let ((trim (string-match "\\s *\\'" filename))) | |
318 (if trim (setq filename (substring filename 0 trim)))) | |
319 (let ((trim (string-match "\\s *\\'" nodename))) | |
320 (if trim (setq nodename (substring nodename 0 trim)))) | |
321 (Info-find-node (if (equal filename "") nil filename) | |
322 (if (equal nodename "") "Top" nodename)))) | |
323 | |
540 | 324 (defun Info-restore-point (hl) |
325 "If this node has been visited, restore the point value when we left." | |
326 (if hl | |
327 (if (and (equal (nth 0 (car hl)) Info-current-file) | |
328 (equal (nth 1 (car hl)) Info-current-node)) | |
329 (goto-char (nth 2 (car hl))) | |
330 (Info-restore-point (cdr hl))))) | |
331 | |
325 | 332 (defvar Info-last-search nil |
333 "Default regexp for \\<info-mode-map>\\[Info-search] command to search for.") | |
334 | |
335 (defun Info-search (regexp) | |
336 "Search for REGEXP, starting from point, and select node it's found in." | |
337 (interactive "sSearch (regexp): ") | |
338 (if (equal regexp "") | |
339 (setq regexp Info-last-search) | |
340 (setq Info-last-search regexp)) | |
341 (let ((found ()) current | |
342 (onode Info-current-node) | |
343 (ofile Info-current-file) | |
344 (opoint (point)) | |
345 (osubfile Info-current-subfile)) | |
346 (save-excursion | |
347 (save-restriction | |
348 (widen) | |
349 (if (null Info-current-subfile) | |
350 (progn (re-search-forward regexp) (setq found (point))) | |
351 (condition-case err | |
352 (progn (re-search-forward regexp) (setq found (point))) | |
353 (search-failed nil))))) | |
354 (if (not found) ;can only happen in subfile case -- else would have erred | |
355 (unwind-protect | |
356 (let ((list ())) | |
357 (set-buffer (marker-buffer Info-tag-table-marker)) | |
358 (goto-char (point-min)) | |
359 (search-forward "\n\^_\nIndirect:") | |
360 (save-restriction | |
361 (narrow-to-region (point) | |
362 (progn (search-forward "\n\^_") | |
363 (1- (point)))) | |
364 (goto-char (point-min)) | |
365 (search-forward (concat "\n" osubfile ": ")) | |
366 (beginning-of-line) | |
367 (while (not (eobp)) | |
368 (re-search-forward "\\(^.*\\): [0-9]+$") | |
369 (goto-char (+ (match-end 1) 2)) | |
370 (setq list (cons (cons (read (current-buffer)) | |
371 (buffer-substring (match-beginning 1) | |
372 (match-end 1))) | |
373 list)) | |
374 (goto-char (1+ (match-end 0)))) | |
375 (setq list (nreverse list) | |
376 current (car (car list)) | |
377 list (cdr list))) | |
378 (while list | |
379 (message "Searching subfile %s..." (cdr (car list))) | |
380 (Info-read-subfile (car (car list))) | |
381 (setq list (cdr list)) | |
382 (goto-char (point-min)) | |
383 (if (re-search-forward regexp nil t) | |
384 (setq found (point) list ()))) | |
385 (if found | |
386 (message "") | |
387 (signal 'search-failed (list regexp)))) | |
388 (if (not found) | |
389 (progn (Info-read-subfile opoint) | |
390 (goto-char opoint) | |
391 (Info-select-node))))) | |
392 (widen) | |
393 (goto-char found) | |
394 (Info-select-node) | |
395 (or (and (equal onode Info-current-node) | |
396 (equal ofile Info-current-file)) | |
397 (setq Info-history (cons (list ofile onode opoint) | |
398 Info-history))))) | |
399 | |
400 ;; Extract the value of the node-pointer named NAME. | |
401 ;; If there is none, use ERRORNAME in the error message; | |
402 ;; if ERRORNAME is nil, just return nil. | |
403 (defun Info-extract-pointer (name &optional errorname) | |
404 (save-excursion | |
405 (goto-char (point-min)) | |
406 (forward-line 1) | |
407 (if (re-search-backward (concat name ":") nil t) | |
408 (progn | |
409 (goto-char (match-end 0)) | |
410 (Info-following-node-name)) | |
411 (if (eq errorname t) | |
412 nil | |
413 (error (concat "Node has no " (capitalize (or errorname name)))))))) | |
414 | |
415 (defun Info-following-node-name (&optional allowedchars) | |
416 (skip-chars-forward " \t") | |
417 (buffer-substring | |
418 (point) | |
419 (progn | |
420 (while (looking-at (concat "[" (or allowedchars "^,\t\n") "]")) | |
421 (skip-chars-forward (concat (or allowedchars "^,\t\n") "(")) | |
422 (if (looking-at "(") | |
423 (skip-chars-forward "^)"))) | |
424 (skip-chars-backward " ") | |
425 (point)))) | |
426 | |
427 (defun Info-next () | |
428 "Go to the next node of this node." | |
429 (interactive) | |
430 (Info-goto-node (Info-extract-pointer "next"))) | |
431 | |
432 (defun Info-prev () | |
433 "Go to the previous node of this node." | |
434 (interactive) | |
435 (Info-goto-node (Info-extract-pointer "prev[ious]*" "previous"))) | |
436 | |
437 (defun Info-up () | |
438 "Go to the superior node of this node." | |
439 (interactive) | |
540 | 440 (Info-goto-node (Info-extract-pointer "up")) |
441 (Info-restore-point Info-history)) | |
325 | 442 |
443 (defun Info-last () | |
444 "Go back to the last node visited." | |
445 (interactive) | |
446 (or Info-history | |
447 (error "This is the first Info node you looked at")) | |
448 (let (filename nodename opoint) | |
449 (setq filename (car (car Info-history))) | |
450 (setq nodename (car (cdr (car Info-history)))) | |
451 (setq opoint (car (cdr (cdr (car Info-history))))) | |
452 (setq Info-history (cdr Info-history)) | |
453 (Info-find-node filename nodename) | |
454 (setq Info-history (cdr Info-history)) | |
455 (goto-char opoint))) | |
456 | |
457 (defun Info-directory () | |
458 "Go to the Info directory node." | |
459 (interactive) | |
460 (Info-find-node "dir" "top")) | |
461 | |
462 (defun Info-follow-reference (footnotename) | |
463 "Follow cross reference named NAME to the node it refers to. | |
464 NAME may be an abbreviation of the reference name." | |
465 (interactive | |
466 (let ((completion-ignore-case t) | |
467 completions default (start-point (point)) str i) | |
468 (save-excursion | |
469 (goto-char (point-min)) | |
470 (while (re-search-forward "\\*note[ \n\t]*\\([^:]*\\):" nil t) | |
471 (setq str (buffer-substring | |
472 (match-beginning 1) | |
473 (1- (point)))) | |
474 ;; See if this one should be the default. | |
475 (and (null default) | |
476 (< (match-beginning 0) start-point) | |
477 (<= start-point (point)) | |
478 (setq default t)) | |
479 (setq i 0) | |
480 (while (setq i (string-match "[ \n\t]+" str i)) | |
481 (setq str (concat (substring str 0 i) " " | |
482 (substring str (match-end 0)))) | |
483 (setq i (1+ i))) | |
484 ;; Record as a completion and perhaps as default. | |
485 (if (eq default t) (setq default str)) | |
486 (setq completions | |
487 (cons (cons str nil) | |
488 completions)))) | |
489 (if completions | |
490 (list (completing-read (if default | |
491 (concat "Follow reference named: (" | |
492 default ") ") | |
493 "Follow reference named: ") | |
494 completions default t)) | |
495 (error "No cross-references in this node")))) | |
496 (let (target beg i (str (concat "\\*note " footnotename))) | |
497 (while (setq i (string-match " " str i)) | |
498 (setq str (concat (substring str 0 i) "[ \t\n]+" (substring str (1+ i)))) | |
499 (setq i (+ i 6))) | |
500 (save-excursion | |
501 (goto-char (point-min)) | |
502 (or (re-search-forward str nil t) | |
503 (error "No cross-reference named %s" footnotename)) | |
504 (goto-char (+ (match-beginning 0) 5)) | |
505 (setq target | |
506 (Info-extract-menu-node-name "Bad format cross reference" t))) | |
507 (while (setq i (string-match "[ \t\n]+" target i)) | |
508 (setq target (concat (substring target 0 i) " " | |
509 (substring target (match-end 0)))) | |
510 (setq i (+ i 1))) | |
511 (Info-goto-node target))) | |
512 | |
513 (defun Info-extract-menu-node-name (&optional errmessage multi-line) | |
514 (skip-chars-forward " \t\n") | |
515 (let ((beg (point)) | |
516 str i) | |
517 (skip-chars-forward "^:") | |
518 (forward-char 1) | |
519 (setq str | |
520 (if (looking-at ":") | |
521 (buffer-substring beg (1- (point))) | |
522 (skip-chars-forward " \t\n") | |
523 (Info-following-node-name (if multi-line "^.,\t" "^.,\t\n")))) | |
524 (while (setq i (string-match "\n" str i)) | |
525 (aset str i ?\ )) | |
526 str)) | |
527 | |
528 (defun Info-menu-item-sequence (list) | |
529 (while list | |
530 (Info-menu-item (car list)) | |
531 (setq list (cdr list)))) | |
532 | |
533 (defun Info-menu (menu-item) | |
534 "Go to node for menu item named (or abbreviated) NAME. | |
535 Completion is allowed, and the menu item point is on is the default." | |
536 (interactive | |
537 (let ((completions '()) | |
538 ;; If point is within a menu item, use that item as the default | |
539 (default nil) | |
540 (p (point)) | |
541 (last nil)) | |
542 (save-excursion | |
543 (goto-char (point-min)) | |
544 (if (not (search-forward "\n* menu:" nil t)) | |
545 (error "No menu in this node")) | |
546 (while (re-search-forward | |
547 "\n\\* \\([^:\t\n]*\\):" nil t) | |
548 (if (and (null default) | |
549 (prog1 (if last (< last p) nil) | |
550 (setq last (match-beginning 0))) | |
551 (<= p last)) | |
552 (setq default (car (car completions)))) | |
553 (setq completions (cons (cons (buffer-substring | |
554 (match-beginning 1) | |
555 (match-end 1)) | |
556 (match-beginning 1)) | |
557 completions))) | |
558 (if (and (null default) last | |
559 (< last p) | |
560 (<= p (progn (end-of-line) (point)))) | |
561 (setq default (car (car completions))))) | |
562 (let ((item nil)) | |
563 (while (null item) | |
564 (setq item (let ((completion-ignore-case t)) | |
565 (completing-read (if default | |
566 (format "Menu item (default %s): " | |
567 default) | |
568 "Menu item: ") | |
569 completions nil t))) | |
540 | 570 ;; we rely on the fact that completing-read accepts an input |
571 ;; of "" even when the require-match argument is true and "" | |
572 ;; is not a valid possibility | |
325 | 573 (if (string= item "") |
574 (if default | |
575 (setq item default) | |
576 ;; ask again | |
577 (setq item nil)))) | |
578 (list item)))) | |
579 ;; there is a problem here in that if several menu items have the same | |
580 ;; name you can only go to the node of the first with this command. | |
581 (Info-goto-node (Info-extract-menu-item menu-item))) | |
582 | |
583 (defun Info-extract-menu-item (menu-item) | |
584 (setq menu-item (regexp-quote menu-item)) | |
585 (save-excursion | |
586 (goto-char (point-min)) | |
587 (or (search-forward "\n* menu:" nil t) | |
588 (error "No menu in this node")) | |
589 (or (re-search-forward (concat "\n* " menu-item ":") nil t) | |
590 (re-search-forward (concat "\n* " menu-item) nil t) | |
591 (error "No such item in menu")) | |
592 (beginning-of-line) | |
593 (forward-char 2) | |
594 (Info-extract-menu-node-name))) | |
595 | |
596 ;; If COUNT is nil, use the last item in the menu. | |
597 (defun Info-extract-menu-counting (count) | |
598 (save-excursion | |
599 (goto-char (point-min)) | |
600 (or (search-forward "\n* menu:" nil t) | |
601 (error "No menu in this node")) | |
602 (if count | |
603 (or (search-forward "\n* " nil t count) | |
604 (error "Too few items in menu")) | |
605 (while (search-forward "\n* " nil t) | |
606 nil)) | |
607 (Info-extract-menu-node-name))) | |
608 | |
609 (defun Info-first-menu-item () | |
610 "Go to the node of the first menu item." | |
611 (interactive) | |
612 (Info-goto-node (Info-extract-menu-counting 1))) | |
613 | |
614 (defun Info-second-menu-item () | |
615 "Go to the node of the second menu item." | |
616 (interactive) | |
617 (Info-goto-node (Info-extract-menu-counting 2))) | |
618 | |
619 (defun Info-third-menu-item () | |
620 "Go to the node of the third menu item." | |
621 (interactive) | |
622 (Info-goto-node (Info-extract-menu-counting 3))) | |
623 | |
624 (defun Info-fourth-menu-item () | |
625 "Go to the node of the fourth menu item." | |
626 (interactive) | |
627 (Info-goto-node (Info-extract-menu-counting 4))) | |
628 | |
629 (defun Info-fifth-menu-item () | |
630 "Go to the node of the fifth menu item." | |
631 (interactive) | |
632 (Info-goto-node (Info-extract-menu-counting 5))) | |
633 | |
634 (defun Info-top-node () | |
635 "Go to the Top node of this file." | |
636 (interactive) | |
637 (Info-goto-node "Top")) | |
638 | |
639 (defun Info-final-node () | |
640 "Go to the final node in this file." | |
641 (interactive) | |
642 (Info-goto-node "Top") | |
643 (let (Info-history) | |
644 ;; Go to the last node in the menu of Top. | |
645 (Info-goto-node (Info-extract-menu-counting nil)) | |
646 ;; If the last node in the menu is not last in pointer structure, | |
647 ;; move forward until we can't go any farther. | |
648 (while (Info-forward-node t t) nil) | |
649 ;; Then keep moving down to last subnode, unless we reach an index. | |
650 (while (and (not (string-match "\\<index\\>" Info-current-node)) | |
651 (save-excursion (search-forward "\n* Menu:" nil t))) | |
652 (Info-goto-node (Info-extract-menu-counting nil))))) | |
653 | |
654 (defun Info-forward-node (&optional not-down no-error) | |
655 "Go forward one node, considering all nodes as forming one sequence." | |
656 (interactive) | |
657 (goto-char (point-min)) | |
658 (forward-line 1) | |
659 ;; three possibilities, in order of priority: | |
660 ;; 1. next node is in a menu in this node (but not in an index) | |
661 ;; 2. next node is next at same level | |
662 ;; 3. next node is up and next | |
663 (cond ((and (not not-down) | |
664 (save-excursion (search-forward "\n* menu:" nil t)) | |
665 (not (string-match "\\<index\\>" Info-current-node))) | |
666 (Info-first-menu-item) | |
667 t) | |
668 ((save-excursion (search-backward "next:" nil t)) | |
669 (Info-next) | |
670 t) | |
671 ((and (save-excursion (search-backward "up:" nil t)) | |
672 (not (equal (downcase (Info-extract-pointer "up")) "top"))) | |
673 (let ((old-node Info-current-node)) | |
674 (Info-up) | |
675 (let (Info-history success) | |
676 (unwind-protect | |
677 (setq success (Info-forward-node t no-error)) | |
678 (or success (Info-goto-node old-node)))))) | |
679 (no-error nil) | |
680 (t (error "No pointer forward from this node")))) | |
681 | |
682 (defun Info-backward-node () | |
683 "Go backward one node, considering all nodes as forming one sequence." | |
684 (interactive) | |
685 (let ((prevnode (Info-extract-pointer "prev[ious]*" t)) | |
686 (upnode (Info-extract-pointer "up" t))) | |
687 (cond ((and upnode (string-match "(" upnode)) | |
688 (error "First node in file")) | |
689 ((and upnode (or (null prevnode) | |
690 (equal (downcase prevnode) (downcase upnode)))) | |
691 (Info-up)) | |
692 (prevnode | |
693 ;; If we move back at the same level, | |
694 ;; go down to find the last subnode*. | |
695 (Info-prev) | |
696 (let (Info-history) | |
697 (while (and (not (string-match "\\<index\\>" Info-current-node)) | |
698 (save-excursion (search-forward "\n* Menu:" nil t))) | |
699 (Info-goto-node (Info-extract-menu-counting nil))))) | |
700 (t | |
701 (error "No pointer backward from this node"))))) | |
702 | |
703 (defun Info-exit () | |
704 "Exit Info by selecting some other buffer." | |
705 (interactive) | |
706 (switch-to-buffer (prog1 (other-buffer (current-buffer)) | |
707 (bury-buffer (current-buffer))))) | |
708 | |
929
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
709 (defun Info-next-menu-item () |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
710 (interactive) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
711 (save-excursion |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
712 (forward-line -1) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
713 (search-forward "\n* menu:" nil t) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
714 (or (search-forward "\n* " nil t) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
715 (error "No more items in menu")) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
716 (Info-goto-node (Info-extract-menu-node-name)))) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
717 |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
718 (defun Info-last-menu-item () |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
719 (interactive) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
720 (save-excursion |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
721 (forward-line 1) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
722 (search-backward "\n* menu:" nil t) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
723 (or (search-backward "\n* " nil t) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
724 (error "No previous items in menu")) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
725 (Info-goto-node (Info-extract-menu-node-name)))) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
726 |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
727 (defmacro no-error (&rest body) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
728 (list 'condition-case nil (cons 'progn (append body '(t))) '(error nil))) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
729 |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
730 (defun Info-next-preorder () |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
731 "Go to the next node, popping up a level if there is none." |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
732 (interactive) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
733 (cond ((no-error (Info-next-menu-item)) ) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
734 ((no-error (Info-up)) (forward-line 1)) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
735 (t (error "No more nodes")))) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
736 |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
737 (defun Info-last-preorder () |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
738 "Go to the last node, popping up a level if there is none." |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
739 (interactive) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
740 (cond ((no-error (Info-last-menu-item)) ) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
741 ((no-error (Info-up)) (forward-line -1)) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
742 (t (error "No previous nodes")))) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
743 |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
744 (defun Info-scroll-up () |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
745 "Read the next screen. If end of buffer is visible, go to next entry." |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
746 (interactive) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
747 (if (pos-visible-in-window-p (point-max)) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
748 (Info-next-preorder) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
749 (scroll-up)) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
750 ) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
751 |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
752 (defun Info-scroll-down () |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
753 "Read the previous screen. If start of buffer is visible, go to last entry." |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
754 (interactive) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
755 (if (pos-visible-in-window-p (point-min)) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
756 (Info-last-preorder) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
757 (scroll-down)) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
758 ) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
759 |
325 | 760 (defun Info-undefined () |
761 "Make command be undefined in Info." | |
762 (interactive) | |
763 (ding)) | |
764 | |
765 (defun Info-help () | |
766 "Enter the Info tutorial." | |
767 (interactive) | |
768 (delete-other-windows) | |
769 (Info-find-node "info" | |
770 (if (< (window-height) 23) | |
771 "Help-Small-Screen" | |
772 "Help"))) | |
773 | |
774 (defun Info-summary () | |
775 "Display a brief summary of all Info commands." | |
776 (interactive) | |
777 (save-window-excursion | |
778 (switch-to-buffer "*Help*") | |
779 (erase-buffer) | |
780 (insert (documentation 'Info-mode)) | |
781 (goto-char (point-min)) | |
782 (let (ch flag) | |
783 (while (progn (setq flag (not (pos-visible-in-window-p (point-max)))) | |
784 (message (if flag "Type Space to see more" | |
785 "Type Space to return to Info")) | |
786 (if (/= ?\ (setq ch (read-char))) | |
787 (progn (setq unread-command-char ch) nil) | |
788 flag)) | |
789 (scroll-up))))) | |
790 | |
791 (defun Info-get-token (pos start all &optional errorstring) | |
792 "Return the token around POS, | |
793 POS must be somewhere inside the token | |
794 START is a regular expression which will match the | |
795 beginning of the tokens delimited string | |
796 ALL is a regular expression with a single | |
797 parenthized subpattern which is the token to be | |
798 returned. E.g. '{\(.*\)}' would return any string | |
799 enclosed in braces around POS. | |
800 SIG optional fourth argument, controls action on no match | |
801 nil: return nil | |
802 t: beep | |
803 a string: signal an error, using that string." | |
804 (save-excursion | |
805 (goto-char pos) | |
806 (re-search-backward start (max (point-min) (- pos 200)) 'yes) | |
807 (while (and (re-search-forward all (min (point-max) (+ pos 200)) 'yes) | |
808 (not (and (<= (match-beginning 0) pos) | |
809 (> (match-end 0) pos))))) | |
810 (if (and (<= (match-beginning 0) pos) | |
811 (> (match-end 0) pos)) | |
812 (buffer-substring (match-beginning 1) (match-end 1)) | |
813 (cond ((null errorstring) | |
814 nil) | |
815 ((eq errorstring t) | |
816 (beep) | |
817 nil) | |
818 (t | |
819 (error "No %s around position %d" errorstring pos)))))) | |
820 | |
540 | 821 (defun Info-follow-nearest-node (click) |
1309
aa286e6e7bec
(Info-follow-nearest-node): Handle line breaks after *note.
Richard M. Stallman <rms@gnu.org>
parents:
998
diff
changeset
|
822 "\\<Info-mode-map>Follow a node reference near point. |
aa286e6e7bec
(Info-follow-nearest-node): Handle line breaks after *note.
Richard M. Stallman <rms@gnu.org>
parents:
998
diff
changeset
|
823 Like \\[Info-menu], \\[Info-follow-reference], \\[Info-next], \\[Info-prev] or \\[Info-up] command, depending on where you click. |
325 | 824 At end of the node's text, moves to the next node." |
1309
aa286e6e7bec
(Info-follow-nearest-node): Handle line breaks after *note.
Richard M. Stallman <rms@gnu.org>
parents:
998
diff
changeset
|
825 (interactive "e") |
540 | 826 (let* ((relative-coordinates (coordinates-in-window-p (mouse-coords click) |
325 | 827 (selected-window))) |
828 (rel-x (car relative-coordinates)) | |
540 | 829 (rel-y (cdr relative-coordinates))) |
325 | 830 (move-to-window-line rel-y) |
831 (move-to-column rel-x)) | |
832 (let (node) | |
833 (cond | |
1309
aa286e6e7bec
(Info-follow-nearest-node): Handle line breaks after *note.
Richard M. Stallman <rms@gnu.org>
parents:
998
diff
changeset
|
834 ((setq node (Info-get-token (point) "\\*note[ \n]" "\\*note[ \n]\\([^:]*\\):" t)) |
325 | 835 (Info-follow-reference node)) |
836 ((setq node (Info-get-token (point) "\\* " "\\* \\([^:]*\\)::" t)) | |
837 (Info-goto-node node)) | |
838 ((setq node (Info-get-token (point) "\\* " "\\* \\([^:]*\\):" t)) | |
839 (Info-menu node)) | |
840 ((setq node (Info-get-token (point) "Up: " "Up: \\([^,\n\t]*\\)" t)) | |
841 (Info-goto-node node)) | |
842 ((setq node (Info-get-token (point) "Next: " "Next: \\([^,\n\t]*\\)" t)) | |
843 (Info-goto-node node)) | |
844 ((setq node (Info-get-token (point) "File: " "File: \\([^,\n\t]*\\)" t)) | |
845 (Info-goto-node "Top")) | |
846 ((setq node (Info-get-token (point) "Prev: " "Prev: \\([^,\n\t]*\\)" t)) | |
847 (Info-goto-node node)) | |
848 ((save-excursion (forward-line 1) (eobp)) | |
849 (Info-next))) | |
850 )) | |
851 | |
852 (defvar Info-mode-map nil | |
853 "Keymap containing Info commands.") | |
854 (if Info-mode-map | |
855 nil | |
856 (setq Info-mode-map (make-keymap)) | |
857 (suppress-keymap Info-mode-map) | |
858 (define-key Info-mode-map "." 'beginning-of-buffer) | |
929
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
859 (define-key Info-mode-map " " 'Info-scroll-up) |
27262a6c632a
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
846
diff
changeset
|
860 (define-key Info-mode-map "\C-m" 'Info-next-preorder) |
325 | 861 (define-key Info-mode-map "1" 'Info-first-menu-item) |
862 (define-key Info-mode-map "2" 'Info-second-menu-item) | |
863 (define-key Info-mode-map "3" 'Info-third-menu-item) | |
864 (define-key Info-mode-map "4" 'Info-fourth-menu-item) | |
865 (define-key Info-mode-map "5" 'Info-fifth-menu-item) | |
866 (define-key Info-mode-map "6" 'undefined) | |
867 (define-key Info-mode-map "7" 'undefined) | |
868 (define-key Info-mode-map "8" 'undefined) | |
869 (define-key Info-mode-map "9" 'undefined) | |
870 (define-key Info-mode-map "0" 'undefined) | |
871 (define-key Info-mode-map "?" 'Info-summary) | |
872 (define-key Info-mode-map "]" 'Info-forward-node) | |
873 (define-key Info-mode-map "[" 'Info-backward-node) | |
874 (define-key Info-mode-map "<" 'Info-top-node) | |
875 (define-key Info-mode-map ">" 'Info-final-node) | |
876 (define-key Info-mode-map "b" 'beginning-of-buffer) | |
877 (define-key Info-mode-map "d" 'Info-directory) | |
878 (define-key Info-mode-map "e" 'Info-edit) | |
879 (define-key Info-mode-map "f" 'Info-follow-reference) | |
880 (define-key Info-mode-map "g" 'Info-goto-node) | |
881 (define-key Info-mode-map "h" 'Info-help) | |
882 (define-key Info-mode-map "l" 'Info-last) | |
883 (define-key Info-mode-map "m" 'Info-menu) | |
884 (define-key Info-mode-map "n" 'Info-next) | |
885 (define-key Info-mode-map "p" 'Info-prev) | |
886 (define-key Info-mode-map "q" 'Info-exit) | |
887 (define-key Info-mode-map "s" 'Info-search) | |
888 (define-key Info-mode-map "u" 'Info-up) | |
930
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
929
diff
changeset
|
889 (define-key Info-mode-map "\177" 'Info-scroll-down) |
1309
aa286e6e7bec
(Info-follow-nearest-node): Handle line breaks after *note.
Richard M. Stallman <rms@gnu.org>
parents:
998
diff
changeset
|
890 (define-key Info-mode-map [mouse-3] 'Info-follow-nearest-node) |
540 | 891 ) |
325 | 892 |
893 ;; Info mode is suitable only for specially formatted data. | |
894 (put 'info-mode 'mode-class 'special) | |
895 | |
896 (defun Info-mode () | |
897 "\\<Info-mode-map> | |
898 Info mode provides commands for browsing through the Info documentation tree. | |
899 Documentation in Info is divided into \"nodes\", each of which discusses | |
900 one topic and contains references to other nodes which discuss related | |
901 topics. Info has commands to follow the references and show you other nodes. | |
902 | |
903 \\[Info-help] Invoke the Info tutorial. | |
904 | |
905 Selecting other nodes: | |
906 \\[Info-next] Move to the \"next\" node of this node. | |
907 \\[Info-previous] Move to the \"previous\" node of this node. | |
908 \\[Info-up] Move \"up\" from this node. | |
909 \\[Info-menu] Pick menu item specified by name (or abbreviation). | |
910 Picking a menu item causes another node to be selected. | |
540 | 911 \\[Info-directory] Go to the Info directory node. |
325 | 912 \\[Info-follow-reference] Follow a cross reference. Reads name of reference. |
913 \\[Info-last] Move to the last node you were at. | |
914 | |
915 Moving within a node: | |
930
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
929
diff
changeset
|
916 \\[scroll-up] Normally, scroll forward a full screen. If the end of the buffer is |
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
929
diff
changeset
|
917 already visible, try to go to the next menu entry, or up if there is none. |
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
929
diff
changeset
|
918 \\[scroll-down] Normally, scroll backward. If the beginning of the buffer is |
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
929
diff
changeset
|
919 already visible, try to go to the previous menu entry, or up if there is none. |
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
929
diff
changeset
|
920 \\[beginning-of-buffer] Go to beginning of node. |
325 | 921 |
922 Advanced commands: | |
923 \\[Info-exit] Quit Info: reselect previously selected buffer. | |
924 \\[Info-edit] Edit contents of selected node. | |
925 1 Pick first item in node's menu. | |
926 2, 3, 4, 5 Pick second ... fifth item in node's menu. | |
927 \\[Info-goto-node] Move to node specified by name. | |
928 You may include a filename as well, as (FILENAME)NODENAME. | |
929 \\[Info-search] Search through this Info file for specified regexp, | |
930
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
929
diff
changeset
|
930 and select the node in which the next occurrence is found. |
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
929
diff
changeset
|
931 \\[Info-next-preorder] Next-preorder; that is, try to go to the next menu item, |
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
929
diff
changeset
|
932 and if that fails try to move up, and if that fails, tell user |
1dac458b5117
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
929
diff
changeset
|
933 he/she is done reading." |
325 | 934 (kill-all-local-variables) |
935 (setq major-mode 'Info-mode) | |
936 (setq mode-name "Info") | |
937 (use-local-map Info-mode-map) | |
938 (set-syntax-table text-mode-syntax-table) | |
939 (setq local-abbrev-table text-mode-abbrev-table) | |
940 (setq case-fold-search t) | |
941 (setq buffer-read-only t) | |
942 (make-local-variable 'Info-current-file) | |
943 (make-local-variable 'Info-current-subfile) | |
944 (make-local-variable 'Info-current-node) | |
945 (make-local-variable 'Info-tag-table-marker) | |
946 (make-local-variable 'Info-history) | |
947 (Info-set-mode-line) | |
948 (run-hooks 'Info-mode-hook)) | |
949 | |
950 (defvar Info-edit-map nil | |
951 "Local keymap used within `e' command of Info.") | |
952 (if Info-edit-map | |
953 nil | |
954 (setq Info-edit-map (nconc (make-sparse-keymap) text-mode-map)) | |
955 (define-key Info-edit-map "\C-c\C-c" 'Info-cease-edit)) | |
956 | |
957 ;; Info-edit mode is suitable only for specially formatted data. | |
958 (put 'info-edit-mode 'mode-class 'special) | |
959 | |
960 (defun Info-edit-mode () | |
961 "Major mode for editing the contents of an Info node. | |
962 Like text mode with the addition of Info-cease-edit | |
963 which returns to Info mode for browsing. | |
964 \\{Info-edit-map}" | |
965 ) | |
966 | |
967 (defun Info-edit () | |
968 "Edit the contents of this Info node. | |
969 Allowed only if variable `Info-enable-edit' is non-nil." | |
970 (interactive) | |
971 (or Info-enable-edit | |
972 (error "Editing info nodes is not enabled")) | |
973 (use-local-map Info-edit-map) | |
974 (setq major-mode 'Info-edit-mode) | |
975 (setq mode-name "Info Edit") | |
976 (kill-local-variable 'mode-line-buffer-identification) | |
977 (setq buffer-read-only nil) | |
978 ;; Make mode line update. | |
979 (set-buffer-modified-p (buffer-modified-p)) | |
980 (message (substitute-command-keys | |
981 "Editing: Type \\<info-mode-map>\\[Info-cease-edit] to return to info"))) | |
982 | |
983 (defun Info-cease-edit () | |
984 "Finish editing Info node; switch back to Info proper." | |
985 (interactive) | |
986 ;; Do this first, so nothing has changed if user C-g's at query. | |
987 (and (buffer-modified-p) | |
988 (y-or-n-p "Save the file? ") | |
989 (save-buffer)) | |
990 (use-local-map Info-mode-map) | |
991 (setq major-mode 'Info-mode) | |
992 (setq mode-name "Info") | |
993 (Info-set-mode-line) | |
994 (setq buffer-read-only t) | |
995 ;; Make mode line update. | |
996 (set-buffer-modified-p (buffer-modified-p)) | |
997 (and (marker-position Info-tag-table-marker) | |
998 (buffer-modified-p) | |
999 (message "Tags may have changed. Use Info-tagify if necessary"))) | |
359 | 1000 |
1001 (defun Info-find-emacs-command-nodes (command) | |
1002 "Return a list of locations documenting COMMAND in the Emacs Info manual. | |
1003 The locations are of the format used in Info-history, i.e. | |
1004 \(FILENAME NODENAME BUFFERPOS\)." | |
1005 (require 'info) | |
1006 (let ((where '()) | |
1007 (cmd-desc (concat "^\\* " (regexp-quote (symbol-name command)) | |
1008 ":\\s *\\(.*\\)\\.$"))) | |
1009 (save-excursion | |
1010 (Info-find-node "emacs" "Command Index") | |
1011 ;; Take the index node off the Info history. | |
1012 (setq Info-history (cdr Info-history)) | |
1013 (goto-char (point-max)) | |
1014 (while (re-search-backward cmd-desc nil t) | |
1015 (setq where (cons (list Info-current-file | |
1016 (buffer-substring | |
1017 (match-beginning 1) | |
1018 (match-end 1)) | |
1019 0) | |
1020 where))) | |
1021 where))) | |
1022 | |
1023 ;;;###autoload | |
1024 (defun Info-goto-emacs-command-node (command) | |
1025 "Go to the Info node in the Emacs manual for command COMMAND." | |
1026 (interactive "CFind documentation for command: ") | |
1027 (or (commandp command) | |
1028 (signal 'wrong-type-argument (list 'commandp command))) | |
1029 (let ((where (Info-find-emacs-command-nodes command))) | |
1030 (if where | |
1031 (let ((num-matches (length where))) | |
1032 ;; Get Info running, and pop to it in another window. | |
1033 (save-window-excursion | |
1034 (info)) | |
1035 (pop-to-buffer "*info*") | |
1036 (Info-find-node (car (car where)) | |
1037 (car (cdr (car where)))) | |
1038 (if (> num-matches 1) | |
1039 (progn | |
1040 ;; Info-find-node already pushed (car where) onto | |
1041 ;; Info-history. Put the other nodes that were found on | |
1042 ;; the history. | |
1043 (setq Info-history (nconc (cdr where) Info-history)) | |
1044 (message (substitute-command-keys | |
1045 "Found %d other entr%. Use \\[Info-last] to see %s." | |
1046 (1- num-matches) | |
1047 (if (> num-matches 2) "ies" "y") | |
1048 (if (> num-matches 2) "them" "it")))))) | |
1049 (error "Couldn't find documentation for %s." command)))) | |
1050 | |
1051 ;;;###autoload | |
1052 (defun Info-goto-emacs-key-command-node (key) | |
1053 "Go to the Info node in the Emacs manual the command bound to KEY, a string. | |
1054 Interactively, if the binding is execute-extended-command, a command is read." | |
1055 (interactive "kFind documentation for key:") | |
1056 (let ((command (key-binding key))) | |
1057 (cond ((null command) | |
1058 (message "%s is undefined" (key-description keys))) | |
1059 ((and (interactive-p) | |
1060 (eq command 'execute-extended-command)) | |
1061 (Info-goto-emacs-command-node | |
1062 (read-command "Find documentation for command: "))) | |
1063 (t | |
1064 (Info-goto-emacs-command-node command))))) | |
584 | 1065 |
1066 (provide 'info) | |
1067 | |
660
08eb386dd0f3
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1068 ;;; info.el ends here |