(battery-linux-proc-apm-regexp): Load percentage
[bpt/emacs.git] / lisp / info-look.el
CommitLineData
5a79736d
RS
1;;; info-look.el --- major-mode-sensitive Info index lookup facility.
2;; An older version of this was known as libc.el.
3
d2c2b883 4;; Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
5a79736d
RS
5
6;; Author: Ralph Schleicher <rs@purple.UL.BaWue.DE>
7;; Keywords: help languages
8
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
13;; the Free Software Foundation; either version 2, or (at your option)
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24;; Boston, MA 02111-1307, USA.
25
26;;; Code:
27
28(require 'info)
d2c2b883
RS
29(eval-and-compile
30 (condition-case nil
31 (require 'custom)
32 (error
33 (defmacro defgroup (&rest arg)
34 nil)
35 (defmacro defcustom (symbol value doc &rest arg)
36 `(defvar ,symbol ,value ,doc ,@arg)))))
37
38(defgroup info-lookup nil
39 "Major mode sensitive help agent."
40 :group 'help :group 'languages)
5a79736d
RS
41
42(defvar info-lookup-mode nil
d2c2b883
RS
43 "Symbol of the current buffer's help mode.
44Help is provided according to the buffer's major mode if value is nil.
5a79736d
RS
45Automatically becomes buffer local when set in any fashion.")
46(make-variable-buffer-local 'info-lookup-mode)
47
d2c2b883
RS
48(defcustom info-lookup-other-window-flag t
49 "Non-nil means pop up the Info buffer in another window."
50 :group 'info-lookup :type 'boolean)
5a79736d 51
d2c2b883
RS
52(defcustom info-lookup-highlight-face 'highlight
53 "Face for highlighting looked up help items.
54Setting this variable to nil disables highlighting."
55 :group 'info-lookup :type 'face)
5a79736d
RS
56
57(defvar info-lookup-highlight-overlay nil
58 "Overlay object used for highlighting.")
59
60(defvar info-lookup-history nil
61 "History of previous input lines.")
62
d2c2b883
RS
63(defvar info-lookup-alist nil
64 "Alist of known help topics.
5a79736d
RS
65Cons cells are of the form
66
d2c2b883 67 (HELP-TOPIC . HELP-DATA)
5a79736d
RS
68
69HELP-TOPIC is the symbol of a help topic.
d2c2b883 70HELP-DATA is a HELP-TOPIC's public data set.
5a79736d
RS
71 Value is an alist with elements of the form
72
73 (HELP-MODE REGEXP IGNORE-CASE DOC-SPEC PARSE-RULE OTHER-MODES)
74
75HELP-MODE is a mode's symbol.
76REGEXP is a regular expression matching those help items whose
77 documentation can be looked up via DOC-SPEC.
78IGNORE-CASE is non-nil if help items are case insensitive.
79DOC-SPEC is a list of documentation specifications of the form
80
81 (INFO-NODE TRANS-FUNC PREFIX SUFFIX)
82
83INFO-NODE is the name (including file name part) of an Info index.
84TRANS-FUNC is a function translating index entries into help items;
85 nil means add only those index entries matching REGEXP, a string
86 means prepend string to the first word of all index entries.
87PREFIX and SUFFIX are parts of a regular expression. If one of
88 them is non-nil then search the help item's Info node for the
89 first occurrence of the regular expression `PREFIX ITEM SUFFIX'.
90 ITEM will be highlighted with `info-lookup-highlight-face' if this
91 variable is not nil.
92PARSE-RULE is either the symbol name of a function or a regular
93 expression for guessing the default help item at point. Fuzzy
94 regular expressions like \"[_a-zA-Z0-9]+\" do a better job if
95 there are no clear delimiters; do not try to write too complex
96 expressions. PARSE-RULE defaults to REGEXP.
97OTHER-MODES is a list of cross references to other help modes.")
98
99(defsubst info-lookup->topic-value (topic)
d2c2b883 100 (cdr (assoc topic info-lookup-alist)))
5a79736d
RS
101
102(defsubst info-lookup->mode-value (topic mode)
103 (assoc mode (info-lookup->topic-value topic)))
104
105(defsubst info-lookup->regexp (topic mode)
106 (nth 1 (info-lookup->mode-value topic mode)))
107
108(defsubst info-lookup->ignore-case (topic mode)
109 (nth 2 (info-lookup->mode-value topic mode)))
110
111(defsubst info-lookup->doc-spec (topic mode)
112 (nth 3 (info-lookup->mode-value topic mode)))
113
114(defsubst info-lookup->parse-rule (topic mode)
115 (nth 4 (info-lookup->mode-value topic mode)))
116
117(defsubst info-lookup->other-modes (topic mode)
118 (nth 5 (info-lookup->mode-value topic mode)))
119
d2c2b883
RS
120(eval-and-compile
121 (mapcar (lambda (keyword)
122 (or (boundp keyword)
123 (set keyword keyword)))
124 '(:topic :mode :regexp :ignore-case
125 :doc-spec :parse-rule :other-modes)))
126
127(defun info-lookup-add-help (&rest arg)
128 "Add or update a help specification.
129Function arguments are one or more options of the form
130
131 KEYWORD ARGUMENT
132
133KEYWORD is either `:topic', `:mode', `:regexp', `:ignore-case',
134 `:doc-spec', `:parse-rule', or `:other-modes'.
135ARGUMENT has a value as explained in the documentation of the
136 variable `info-lookup-alist'.
137
138If no topic or mode option has been specified, then the help topic defaults
139to `symbol', and the help mode defaults to the current major mode."
140 (apply 'info-lookup-add-help* nil arg))
141
142(defun info-lookup-maybe-add-help (&rest arg)
143 "Add a help specification iff no one is defined.
144See the documentation of the function `info-lookup-add-help'
145for more details."
146 (apply 'info-lookup-add-help* t arg))
147
148(defun info-lookup-add-help* (maybe &rest arg)
149 (let (topic mode regexp ignore-case doc-spec
150 parse-rule other-modes keyword value)
151 (setq topic 'symbol
152 mode major-mode
153 regexp "\\w+")
154 (while arg
155 (setq keyword (car arg))
156 (or (symbolp keyword)
157 (error "Junk in argument list \"%S\"" arg))
158 (setq arg (cdr arg))
159 (and (null arg)
160 (error "Keyword \"%S\" is missing an argument" keyword))
161 (setq value (car arg)
162 arg (cdr arg))
163 (cond ((eq keyword :topic)
164 (setq topic value))
165 ((eq keyword :mode)
166 (setq mode value))
167 ((eq keyword :regexp)
168 (setq regexp value))
169 ((eq keyword :ignore-case)
170 (setq ignore-case value))
171 ((eq keyword :doc-spec)
172 (setq doc-spec value))
173 ((eq keyword :parse-rule)
174 (setq parse-rule value))
175 ((eq keyword :other-modes)
176 (setq other-modes value))
177 (t
178 (error "Unknown keyword \"%S\"" keyword))))
179 (or (and maybe (info-lookup->mode-value topic mode))
180 (let* ((data (list regexp ignore-case doc-spec parse-rule other-modes))
181 (topic-cell (or (assoc topic info-lookup-alist)
182 (car (setq info-lookup-alist
183 (cons (cons topic nil)
184 info-lookup-alist)))))
185 (mode-cell (assoc mode topic-cell)))
186 (if (null mode-cell)
187 (setcdr topic-cell (cons (cons mode data) (cdr topic-cell)))
188 (setcdr mode-cell data))))
189 nil))
190
5a79736d
RS
191(defvar info-lookup-cache nil
192 "Cache storing data maintained automatically by the program.
193Value is an alist with cons cell of the form
194
195 (HELP-TOPIC . ((HELP-MODE INITIALIZED COMPLETIONS REFER-MODES) ...))
196
197HELP-TOPIC is the symbol of a help topic.
198HELP-MODE is a mode's symbol.
199INITIALIZED is nil if HELP-MODE is uninitialized, t if
200 HELP-MODE is initialized, and `0' means HELP-MODE is
201 initialized but void.
202COMPLETIONS is an alist of documented help items.
203REFER-MODES is a list of other help modes to use.")
204
205(defsubst info-lookup->cache (topic)
206 (or (assoc topic info-lookup-cache)
207 (car (setq info-lookup-cache
208 (cons (cons topic nil)
209 info-lookup-cache)))))
210
211(defsubst info-lookup->topic-cache (topic)
212 (cdr (info-lookup->cache topic)))
213
214(defsubst info-lookup->mode-cache (topic mode)
215 (assoc mode (info-lookup->topic-cache topic)))
216
217(defsubst info-lookup->initialized (topic mode)
218 (nth 1 (info-lookup->mode-cache topic mode)))
219
220(defsubst info-lookup->completions (topic mode)
221 (or (info-lookup->initialized topic mode)
222 (info-lookup-setup-mode topic mode))
223 (nth 2 (info-lookup->mode-cache topic mode)))
224
225(defsubst info-lookup->refer-modes (topic mode)
226 (or (info-lookup->initialized topic mode)
227 (info-lookup-setup-mode topic mode))
228 (nth 3 (info-lookup->mode-cache topic mode)))
229
230(defsubst info-lookup->all-modes (topic mode)
231 (cons mode (info-lookup->refer-modes topic mode)))
232
5a79736d
RS
233(defvar info-lookup-file-alist
234 '((c-mode
235 "[_a-zA-Z0-9./+-]+" nil
236 (("(libc)File Index"))))
237 "*Alist of help specifications for file names.
238See the documentation of the variable `info-lookup-alist' for more details.")
239
240;;;###autoload
241(defun info-lookup-reset ()
242 "Throw away all cached data.
243This command is useful if the user wants to start at the beginning without
244quitting Emacs, for example, after some Info documents were updated on the
245system."
246 (interactive)
247 (setq info-lookup-cache nil))
248
249;;;###autoload
250(defun info-lookup-symbol (symbol &optional mode)
251 "Display the documentation of a symbol.
252If called interactively, SYMBOL will be read from the mini-buffer.
253Prefix argument means unconditionally insert the default symbol name
254into the mini-buffer so that it can be edited.
255The default symbol is the one found at point."
256 (interactive
257 (info-lookup-interactive-arguments 'symbol))
258 (info-lookup 'symbol symbol mode))
259
260;;;###autoload
261(defun info-lookup-file (file &optional mode)
262 "Display the documentation of a file.
263If called interactively, FILE will be read from the mini-buffer.
264Prefix argument means unconditionally insert the default file name
265into the mini-buffer so that it can be edited.
266The default file name is the one found at point."
267 (interactive
268 (info-lookup-interactive-arguments 'file))
269 (info-lookup 'file file mode))
270
271(defun info-lookup-interactive-arguments (topic)
272 "Return default value and help mode for help topic TOPIC."
273 (let* ((mode (if (info-lookup->mode-value
274 topic (or info-lookup-mode major-mode))
275 (or info-lookup-mode major-mode)
276 (info-lookup-change-mode topic)))
277 (completions (info-lookup->completions topic mode))
278 (default (info-lookup-guess-default topic mode))
279 (input (if (or current-prefix-arg (not (assoc default completions)))
280 default))
281 (completion-ignore-case (info-lookup->ignore-case topic mode))
282 (enable-recursive-minibuffers t)
283 (value (completing-read
284 (if (and default (not input))
285 (format "Describe %s (default %s): " topic default)
286 (format "Describe %s: " topic))
287 completions nil nil input 'info-lookup-history)))
288 (list (if (equal value "") default value) mode)))
289
290(defun info-lookup-change-mode (topic)
291 (let* ((completions (mapcar (lambda (arg)
292 (cons (symbol-name (car arg)) (car arg)))
293 (info-lookup->topic-value topic)))
294 (mode (completing-read
295 (format "Use %s help mode: " topic)
296 completions nil t nil 'info-lookup-history)))
297 (or (setq mode (cdr (assoc mode completions)))
298 (error "No %s help available" topic))
299 (or (info-lookup->mode-value topic mode)
300 (error "No %s help available for `%s'" topic mode))
301 (setq info-lookup-mode mode)))
302
303(defun info-lookup (topic item mode)
304 "Display the documentation of a help item."
305 (if (not mode)
306 (setq mode (or info-lookup-mode major-mode)))
307 (or (info-lookup->mode-value topic mode)
308 (error "No %s help available for `%s'" topic mode))
309 (let ((entry (or (assoc (if (info-lookup->ignore-case topic mode)
310 (downcase item) item)
311 (info-lookup->completions topic mode))
312 (error "Not documented as a %s: %s" topic (or item ""))))
313 (modes (info-lookup->all-modes topic mode))
314 (window (selected-window))
1d010333 315 found doc-spec node prefix suffix doc-found)
5a79736d
RS
316 (if (not info-lookup-other-window-flag)
317 (info)
318 (save-window-excursion (info))
319 (switch-to-buffer-other-window "*info*"))
320 (while (and (not found) modes)
321 (setq doc-spec (info-lookup->doc-spec topic (car modes)))
322 (while (and (not found) doc-spec)
323 (setq node (nth 0 (car doc-spec))
324 prefix (nth 2 (car doc-spec))
325 suffix (nth 3 (car doc-spec)))
1d010333
RS
326 (when (condition-case error-data
327 (progn
328 (Info-goto-node node)
329 (setq doc-found t))
330 (error
331 (message "Cannot access Info node %s" node)
332 (sit-for 1)
333 nil))
334 (condition-case nil
335 (progn
336 (Info-menu (or (cdr entry) item))
337 (setq found t)
338 (if (or prefix suffix)
339 (let ((case-fold-search
340 (info-lookup->ignore-case topic (car modes)))
341 (buffer-read-only nil))
342 (goto-char (point-min))
343 (re-search-forward
344 (concat prefix (regexp-quote item) suffix))
345 (goto-char (match-beginning 0))
346 (and window-system info-lookup-highlight-face
347 ;; Search again for ITEM so that the first
348 ;; occurence of ITEM will be highlighted.
349 (re-search-forward (regexp-quote item))
350 (let ((start (match-beginning 0))
351 (end (match-end 0)))
352 (if (overlayp info-lookup-highlight-overlay)
353 (move-overlay info-lookup-highlight-overlay
354 start end (current-buffer))
355 (setq info-lookup-highlight-overlay
356 (make-overlay start end))))
357 (overlay-put info-lookup-highlight-overlay
358 'face info-lookup-highlight-face)))))
359 (error nil)))
5a79736d
RS
360 (setq doc-spec (cdr doc-spec)))
361 (setq modes (cdr modes)))
1d010333
RS
362 (or doc-found
363 (error "Info documentation for lookup was not found"))
5a79736d
RS
364 ;; Don't leave the Info buffer if the help item couldn't be looked up.
365 (if (and info-lookup-other-window-flag found)
366 (select-window window))))
367
368(defun info-lookup-setup-mode (topic mode)
369 "Initialize the internal data structure."
370 (or (info-lookup->initialized topic mode)
371 (let (cell data (initialized 0) completions refer-modes)
372 (if (not (info-lookup->mode-value topic mode))
373 (message "No %s help available for `%s'" topic mode)
374 ;; Recursively setup cross references.
375 ;; But refer only to non-void modes.
376 (mapcar (lambda (arg)
377 (or (info-lookup->initialized topic arg)
378 (info-lookup-setup-mode topic arg))
379 (and (eq (info-lookup->initialized topic arg) t)
380 (setq refer-modes (cons arg refer-modes))))
381 (info-lookup->other-modes topic mode))
382 (setq refer-modes (nreverse refer-modes))
383 ;; Build the full completion alist.
384 (setq completions
385 (nconc (info-lookup-make-completions topic mode)
386 (apply 'append
387 (mapcar (lambda (arg)
388 (info-lookup->completions topic arg))
389 refer-modes))))
390 (setq initialized t))
391 ;; Update `info-lookup-cache'.
392 (setq cell (info-lookup->mode-cache topic mode)
393 data (list initialized completions refer-modes))
394 (if (not cell)
395 (setcdr (info-lookup->cache topic)
396 (cons (cons mode data) (info-lookup->topic-cache topic)))
397 (setcdr cell data))
398 initialized)))
399
400(defun info-lookup-make-completions (topic mode)
401 "Create a unique alist from all index entries."
1eff0ba1
RS
402 (let ((doc-spec (info-lookup->doc-spec topic mode))
403 (regexp (concat "^\\(" (info-lookup->regexp topic mode)
404 "\\)\\([ \t].*\\)?$"))
1d010333 405 node trans entry item prefix result doc-found
1eff0ba1
RS
406 (buffer (get-buffer-create " temp-info-look")))
407 (with-current-buffer buffer
408 (Info-mode))
409 (while doc-spec
410 (setq node (nth 0 (car doc-spec))
411 trans (cond ((eq (nth 1 (car doc-spec)) nil)
412 (lambda (arg)
413 (if (string-match regexp arg)
414 (match-string 1 arg))))
415 ((stringp (nth 1 (car doc-spec)))
416 (setq prefix (nth 1 (car doc-spec)))
417 (lambda (arg)
418 (if (string-match "^\\([^: \t\n]+\\)" arg)
419 (concat prefix (match-string 1 arg)))))
420 (t (nth 1 (car doc-spec)))))
1d010333
RS
421 (with-current-buffer buffer
422 (message "Processing Info node `%s'..." node)
423 (when (condition-case error-data
424 (progn
425 (Info-goto-node node)
426 (setq doc-found t))
427 (error
428 (message "Cannot access Info node `%s'" node)
429 (sit-for 1)
430 nil))
431 (condition-case nil
432 (progn
433 (goto-char (point-min))
434 (and (search-forward "\n* Menu:" nil t)
435 (while (re-search-forward "\n\\* \\([^:\t\n]*\\):" nil t)
436 (setq entry (match-string 1)
437 item (funcall trans entry))
438 (and (info-lookup->ignore-case topic mode)
439 (setq item (downcase item)))
440 (and (string-equal entry item)
441 (setq entry nil))
442 (or (assoc item result)
443 (setq result (cons (cons item entry) result))))))
444 (error nil))))
1eff0ba1
RS
445 (message "Processing Info node `%s'...done" node)
446 (setq doc-spec (cdr doc-spec)))
1d010333
RS
447 (or doc-found
448 (error "Info documentation for lookup was not found"))
1eff0ba1 449 result))
5a79736d
RS
450
451(defun info-lookup-guess-default (topic mode)
452 "Pick up default item at point (with favor to look back).
453Return nil if there is nothing appropriate."
454 (let ((modes (info-lookup->all-modes topic mode))
455 (start (point)) guess whitespace)
456 (while (and (not guess) modes)
457 (setq guess (info-lookup-guess-default* topic (car modes))
458 modes (cdr modes))
459 (goto-char start))
460 ;; Collapse whitespace characters.
461 (and guess (concat (delete nil (mapcar (lambda (ch)
462 (if (or (char-equal ch ? )
463 (char-equal ch ?\t)
464 (char-equal ch ?\n))
465 (if (not whitespace)
466 (setq whitespace ? ))
467 (setq whitespace nil) ch))
468 guess))))))
469
470(defun info-lookup-guess-default* (topic mode)
471 (let ((case-fold-search (info-lookup->ignore-case topic mode))
472 (rule (or (info-lookup->parse-rule topic mode)
473 (info-lookup->regexp topic mode)))
474 (start (point)) end regexp subexp result)
475 (if (symbolp rule)
476 (setq result (funcall rule))
477 (if (consp rule)
478 (setq regexp (car rule)
479 subexp (cdr rule))
480 (setq regexp rule
481 subexp 0))
482 (skip-chars-backward " \t\n") (setq end (point))
483 (while (and (re-search-backward regexp nil t)
484 (looking-at regexp)
485 (>= (match-end 0) end))
486 (setq result (match-string subexp)))
487 (if (not result)
488 (progn
489 (goto-char start)
490 (skip-chars-forward " \t\n")
491 (and (looking-at regexp)
492 (setq result (match-string subexp))))))
493 result))
494
495(defun info-lookup-guess-c-symbol ()
496 "Get the C symbol at point."
497 (condition-case nil
498 (progn
499 (backward-sexp)
500 (let ((start (point)) prefix name)
501 ;; Test for a leading `struct', `union', or `enum' keyword
502 ;; but ignore names like `foo_struct'.
503 (setq prefix (and (< (skip-chars-backward " \t\n") 0)
504 (< (skip-chars-backward "_a-zA-Z0-9") 0)
505 (looking-at "\\(struct\\|union\\|enum\\)\\s ")
506 (concat (match-string 1) " ")))
507 (goto-char start)
508 (and (looking-at "[_a-zA-Z][_a-zA-Z0-9]*")
509 (setq name (match-string 0)))
510 ;; Caveat! Look forward if point is at `struct' etc.
511 (and (not prefix)
512 (or (string-equal name "struct")
513 (string-equal name "union")
514 (string-equal name "enum"))
515 (looking-at "[a-z]+\\s +\\([_a-zA-Z][_a-zA-Z0-9]*\\)")
516 (setq prefix (concat name " ")
517 name (match-string 1)))
518 (and (or prefix name)
519 (concat prefix name))))
520 (error nil)))
521
522;;;###autoload
523(defun info-complete-symbol (&optional mode)
524 "Perform completion on symbol preceding point."
82fb111c
RS
525 (interactive)
526 (info-complete 'symbol
527 (or mode
528 (if (info-lookup->mode-value
529 'symbol (or info-lookup-mode major-mode))
530 (or info-lookup-mode major-mode)
531 (info-lookup-change-mode 'symbol)))))
5a79736d
RS
532
533;;;###autoload
534(defun info-complete-file (&optional mode)
535 "Perform completion on file preceding point."
536 (interactive
537 (list (if (info-lookup->mode-value
538 'file (or info-lookup-mode major-mode))
539 (or info-lookup-mode major-mode)
540 (info-lookup-change-mode 'file))))
541 (info-complete 'file mode))
542
543(defun info-complete (topic mode)
544 "Try to complete a help item."
545 (barf-if-buffer-read-only)
546 (if (not mode)
547 (setq mode (or info-lookup-mode major-mode)))
548 (or (info-lookup->mode-value topic mode)
549 (error "No %s completion available for `%s'" topic mode))
550 (let ((modes (info-lookup->all-modes topic mode))
d2c2b883
RS
551 (completions (info-lookup->completions topic mode))
552 (completion-ignore-case (info-lookup->ignore-case topic mode))
553 (start (point)) try completion)
5a79736d
RS
554 (while (and (not try) modes)
555 (setq mode (car modes)
556 modes (cdr modes)
557 try (info-lookup-guess-default* topic mode))
558 (goto-char start))
559 (and (not try)
d2c2b883
RS
560 (error "Found no %S to complete" topic))
561 (setq completion (try-completion try completions))
5a79736d 562 (cond ((not completion)
d2c2b883
RS
563 (ding)
564 (message "No match"))
5a79736d 565 ((stringp completion)
d2c2b883
RS
566 (or (assoc completion completions)
567 (setq completion (completing-read
568 (format "Complete %S: " topic)
569 completions nil t completion
570 info-lookup-history)))
5a79736d 571 (delete-region (- start (length try)) start)
d2c2b883
RS
572 (insert completion))
573 (t
574 (message "%s is complete" (capitalize (prin1-to-string topic)))))))
575
576\f
577;;; Info-lookup minor mode.
578
579(defvar info-lookup-minor-mode nil
580 "Non-`nil' enables Info-lookup mode.")
581(make-variable-buffer-local 'info-lookup-minor-mode)
582
583(defvar info-lookup-minor-mode-string " Info"
584 "Indicator included in the mode line when in Info-lookup mode.")
585
586(or (assq 'info-lookup-minor-mode minor-mode-alist)
587 (setq minor-mode-alist (cons '(info-lookup-minor-mode
588 info-lookup-minor-mode-string)
589 minor-mode-alist)))
590
591(defvar info-lookup-minor-mode-map (make-sparse-keymap)
592 "Minor mode map for Info-lookup mode.")
593
594(or (assq 'info-lookup-minor-mode minor-mode-map-alist)
595 (setq minor-mode-map-alist (cons (cons 'info-lookup-minor-mode
596 info-lookup-minor-mode-map)
597 minor-mode-map-alist)))
598
599;;;### autoload
600(defun info-lookup-minor-mode (&optional arg)
601 "Minor mode for looking up the documentation of a symbol or file.
602Special commands:
603
604\\{info-lookup-minor-mode-map}"
605 (interactive "P")
606 (setq info-lookup-minor-mode (if (null arg)
607 (not info-lookup-minor-mode)
608 (> (prefix-numeric-value arg) 0)))
609 (set-buffer-modified-p (buffer-modified-p)))
610
611(define-key info-lookup-minor-mode-map
612 "\C-c\C-hf" 'info-lookup-symbol) ; Describe function.
613(define-key info-lookup-minor-mode-map
614 "\C-c\C-hv" 'info-lookup-symbol) ; Describe variable.
615(define-key info-lookup-minor-mode-map
616 "\C-c\C-ht" 'info-lookup-symbol) ; Describe type.
617(define-key info-lookup-minor-mode-map
618 "\C-c\C-hp" 'info-lookup-file) ; Describe program.
619(define-key info-lookup-minor-mode-map
620 "\C-c\C-if" 'info-complete-symbol) ; Complete function.
621(define-key info-lookup-minor-mode-map
622 "\C-c\C-iv" 'info-complete-symbol) ; Complete variable.
623(define-key info-lookup-minor-mode-map
624 "\C-c\C-it" 'info-complete-symbol) ; Complete type.
625(define-key info-lookup-minor-mode-map
626 "\C-c\C-ip" 'info-complete-file) ; Complete program.
627
628;;;### autoload
629(defun turn-on-info-lookup ()
630 "Unconditionally turn on Info-lookup mode."
631 (info-lookup-minor-mode 1))
632
633\f
634;;; Initialize some common modes.
635
636(info-lookup-maybe-add-help
637 :mode 'c-mode :topic 'symbol
638 :regexp "\\(struct \\|union \\|enum \\)?[_a-zA-Z][_a-zA-Z0-9]*"
639 :doc-spec '(("(libc)Function Index" nil
640 "^[ \t]+- \\(Function\\|Macro\\): .*\\<" "\\>")
641 ("(libc)Variable Index" nil
642 "^[ \t]+- \\(Variable\\|Macro\\): .*\\<" "\\>")
643 ("(libc)Type Index" nil
644 "^[ \t]+- Data Type: \\<" "\\>")
645 ("(termcap)Var Index" nil
646 "^[ \t]*`" "'"))
647 :parse-rule 'info-lookup-guess-c-symbol)
648
649(info-lookup-maybe-add-help
650 :mode 'c-mode :topic 'file
651 :regexp "[_a-zA-Z0-9./+-]+"
652 :doc-spec '(("(libc)File Index")))
653
654(info-lookup-maybe-add-help
655 :mode 'bison-mode
656 :regexp "[:;|]\\|%\\([%{}]\\|[_a-z]+\\)\\|YY[_A-Z]+\\|yy[_a-z]+"
657 :doc-spec '(("(bison)Index" nil
658 "`" "'"))
659 :parse-rule "[:;|]\\|%\\([%{}]\\|[_a-zA-Z][_a-zA-Z0-9]*\\)"
660 :other-modes '(c-mode))
661
662(info-lookup-maybe-add-help
663 :mode 'makefile-mode
664 :regexp "\\$[^({]\\|\\.[_A-Z]*\\|[_a-zA-Z][_a-zA-Z0-9-]*"
665 :doc-spec '(("(make)Name Index" nil
666 "^[ \t]*`" "'"))
667 :parse-rule "\\$[^({]\\|\\.[_A-Z]*\\|[_a-zA-Z0-9-]+")
668
669(info-lookup-maybe-add-help
670 :mode 'texinfo-mode
671 :regexp "@\\([a-zA-Z]+\\|[^a-zA-Z]\\)"
672 :doc-spec '(("(texinfo)Command and Variable Index"
673 ;; Ignore Emacs commands and prepend a `@'.
674 (lambda (item)
675 (if (string-match "^\\([a-zA-Z]+\\|[^a-zA-Z]\\)\\( .*\\)?$" item)
676 (concat "@" (match-string 1 item))))
677 "`" "'")))
678
679(info-lookup-maybe-add-help
680 :mode 'm4-mode
681 :regexp "[_a-zA-Z][_a-zA-Z0-9]*"
682 :doc-spec '(("(m4)Macro index"))
683 :parse-rule "[_a-zA-Z0-9]+")
684
685(info-lookup-maybe-add-help
686 :mode 'autoconf-mode
687 :regexp "A[CM]_[_A-Z0-9]+"
688 :doc-spec '(("(autoconf)Macro Index" "AC_"
689 "^[ \t]+- \\(Macro\\|Variable\\): .*\\<" "\\>")
690 ("(automake)Index" nil
691 "^[ \t]*`" "'"))
692 ;; Autoconf symbols are M4 macros. Thus use M4's parser.
693 :parse-rule 'ignore
694 :other-modes '(m4-mode))
695
696(info-lookup-maybe-add-help
697 :mode 'awk-mode
698 :regexp "[_a-zA-Z]+"
699 :doc-spec '(("(gawk)Index"
700 (lambda (item)
701 (let ((case-fold-search nil))
702 (cond
703 ;; `BEGIN' and `END'.
704 ((string-match "^\\([A-Z]+\\) special pattern\\b" item)
705 (match-string 1 item))
706 ;; `if', `while', `do', ...
707 ((string-match "^\\([a-z]+\\) statement\\b" item)
708 (if (not (string-equal (match-string 1 item) "control"))
709 (match-string 1 item)))
710 ;; `NR', `NF', ...
711 ((string-match "^[A-Z]+$" item)
712 item)
713 ;; Built-in functions (matches to many entries).
714 ((string-match "^[a-z]+$" item)
715 item))))
716 "`" "\\([ \t]*([^)]*)\\)?'")))
717
718(info-lookup-maybe-add-help
719 :mode 'perl-mode
720 :regexp "[$@%][^a-zA-Z]\\|\\$\\^[A-Z]\\|[$@%]?[a-zA-Z][_a-zA-Z0-9]*"
721 :doc-spec '(("(perl5)Function Index"
722 (lambda (item)
723 (if (string-match "^\\([a-zA-Z0-9]+\\)" item)
724 (match-string 1 item)))
725 "^" "\\b")
726 ("(perl5)Variable Index"
727 (lambda (item)
728 ;; Work around bad formatted array variables.
729 (let ((sym (cond ((or (string-match "^\\$\\(.\\|@@\\)$" item)
730 (string-match "^\\$\\^[A-Z]$" item))
731 item)
732 ((string-match
733 "^\\([$%@]\\|@@\\)?[_a-zA-Z0-9]+" item)
734 (match-string 0 item))
735 (t ""))))
736 (if (string-match "@@" sym)
737 (setq sym (concat (substring sym 0 (match-beginning 0))
738 (substring sym (1- (match-end 0))))))
739 (if (string-equal sym "") nil sym)))
740 "^" "\\b"))
741 :parse-rule "[$@%]?\\([_a-zA-Z0-9]+\\|[^a-zA-Z]\\)")
742
743(info-lookup-maybe-add-help
744 :mode 'latex-mode
745 :regexp "\\\\\\([a-zA-Z]+\\|[^a-zA-Z]\\)"
746 :doc-spec '(("(latex2e)Command Index" nil
747 "`" "\\({[^}]*}\\)?'")))
748
749(info-lookup-maybe-add-help
750 :mode 'emacs-lisp-mode
751 :regexp "[^()' \t\n]+"
752 :doc-spec '(("(emacs)Command Index")
753 ("(emacs)Variable Index")))
754
755(info-lookup-maybe-add-help
756 :mode 'lisp-interaction-mode
757 :regexp "[^()' \t\n]+"
758 :parse-rule 'ignore
759 :other-modes '(emacs-lisp-mode))
760
761\f
5a79736d
RS
762(provide 'info-look)
763
764;;; info-look.el ends here