Skip tests for json.c unless compiled with native JSON support.
[emacs.git] / lisp / help-mode.el
blob1e1ae1126ca16a6691f5562e5cdb6aa3f88892e6
1 ;;; help-mode.el --- `help-mode' used by *Help* buffers
3 ;; Copyright (C) 1985-1986, 1993-1994, 1998-2017 Free Software
4 ;; Foundation, Inc.
6 ;; Maintainer: emacs-devel@gnu.org
7 ;; Keywords: help, internal
8 ;; Package: emacs
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
25 ;;; Commentary:
27 ;; Defines `help-mode', which is the mode used by *Help* buffers, and
28 ;; associated support machinery, such as adding hyperlinks, etc.,
30 ;;; Code:
32 (require 'button)
33 (require 'cl-lib)
34 (eval-when-compile (require 'easymenu))
36 (defvar help-mode-map
37 (let ((map (make-sparse-keymap)))
38 (set-keymap-parent map (make-composed-keymap button-buffer-map
39 special-mode-map))
40 (define-key map [mouse-2] 'help-follow-mouse)
41 (define-key map "l" 'help-go-back)
42 (define-key map "r" 'help-go-forward)
43 (define-key map "\C-c\C-b" 'help-go-back)
44 (define-key map "\C-c\C-f" 'help-go-forward)
45 (define-key map [XF86Back] 'help-go-back)
46 (define-key map [XF86Forward] 'help-go-forward)
47 (define-key map "\C-c\C-c" 'help-follow-symbol)
48 (define-key map "\r" 'help-follow)
49 map)
50 "Keymap for help mode.")
52 (easy-menu-define help-mode-menu help-mode-map
53 "Menu for Help Mode."
54 '("Help-Mode"
55 ["Show Help for Symbol" help-follow-symbol
56 :help "Show the docs for the symbol at point"]
57 ["Previous Topic" help-go-back
58 :help "Go back to previous topic in this help buffer"]
59 ["Next Topic" help-go-forward
60 :help "Go back to next topic in this help buffer"]
61 ["Move to Previous Button" backward-button
62 :help "Move to the Next Button in the help buffer"]
63 ["Move to Next Button" forward-button
64 :help "Move to the Next Button in the help buffer"]))
66 (defvar help-xref-stack nil
67 "A stack of ways by which to return to help buffers after following xrefs.
68 Used by `help-follow' and `help-xref-go-back'.
69 An element looks like (POSITION FUNCTION ARGS...).
70 To use the element, do (apply FUNCTION ARGS) then goto the point.")
71 (put 'help-xref-stack 'permanent-local t)
72 (make-variable-buffer-local 'help-xref-stack)
74 (defvar help-xref-forward-stack nil
75 "A stack used to navigate help forwards after using the back button.
76 Used by `help-follow' and `help-xref-go-forward'.
77 An element looks like (POSITION FUNCTION ARGS...).
78 To use the element, do (apply FUNCTION ARGS) then goto the point.")
79 (put 'help-xref-forward-stack 'permanent-local t)
80 (make-variable-buffer-local 'help-xref-forward-stack)
82 (defvar help-xref-stack-item nil
83 "An item for `help-follow' in this buffer to push onto `help-xref-stack'.
84 The format is (FUNCTION ARGS...).")
85 (put 'help-xref-stack-item 'permanent-local t)
86 (make-variable-buffer-local 'help-xref-stack-item)
88 (defvar help-xref-stack-forward-item nil
89 "An item for `help-go-back' to push onto `help-xref-forward-stack'.
90 The format is (FUNCTION ARGS...).")
91 (put 'help-xref-stack-forward-item 'permanent-local t)
92 (make-variable-buffer-local 'help-xref-stack-forward-item)
94 (setq-default help-xref-stack nil help-xref-stack-item nil)
95 (setq-default help-xref-forward-stack nil help-xref-forward-stack-item nil)
97 (defcustom help-mode-hook nil
98 "Hook run by `help-mode'."
99 :type 'hook
100 :group 'help)
102 ;; Button types used by help
104 (define-button-type 'help-xref
105 'follow-link t
106 'action #'help-button-action)
108 (defun help-button-action (button)
109 "Call BUTTON's help function."
110 (help-do-xref nil
111 (button-get button 'help-function)
112 (button-get button 'help-args)))
114 ;; These 6 calls to define-button-type were generated in a dolist
115 ;; loop, but that is bad because it means these button types don't
116 ;; have an easily found definition.
118 (define-button-type 'help-function
119 :supertype 'help-xref
120 'help-function 'describe-function
121 'help-echo (purecopy "mouse-2, RET: describe this function"))
123 (define-button-type 'help-variable
124 :supertype 'help-xref
125 'help-function 'describe-variable
126 'help-echo (purecopy "mouse-2, RET: describe this variable"))
128 (define-button-type 'help-face
129 :supertype 'help-xref
130 'help-function 'describe-face
131 'help-echo (purecopy "mouse-2, RET: describe this face"))
133 (define-button-type 'help-coding-system
134 :supertype 'help-xref
135 'help-function 'describe-coding-system
136 'help-echo (purecopy "mouse-2, RET: describe this coding system"))
138 (define-button-type 'help-input-method
139 :supertype 'help-xref
140 'help-function 'describe-input-method
141 'help-echo (purecopy "mouse-2, RET: describe this input method"))
143 (define-button-type 'help-character-set
144 :supertype 'help-xref
145 'help-function 'describe-character-set
146 'help-echo (purecopy "mouse-2, RET: describe this character set"))
148 ;; Make some more idiosyncratic button types.
150 (define-button-type 'help-symbol
151 :supertype 'help-xref
152 'help-function #'describe-symbol
153 'help-echo (purecopy "mouse-2, RET: describe this symbol"))
155 (define-button-type 'help-back
156 :supertype 'help-xref
157 'help-function #'help-xref-go-back
158 'help-echo (purecopy "mouse-2, RET: go back to previous help buffer"))
160 (define-button-type 'help-forward
161 :supertype 'help-xref
162 'help-function #'help-xref-go-forward
163 'help-echo (purecopy "mouse-2, RET: move forward to next help buffer"))
165 (define-button-type 'help-info-variable
166 :supertype 'help-xref
167 ;; the name of the variable is put before the argument to Info
168 'help-function (lambda (_a v) (info v))
169 'help-echo (purecopy "mouse-2, RET: read this Info node"))
171 (define-button-type 'help-info
172 :supertype 'help-xref
173 'help-function #'info
174 'help-echo (purecopy "mouse-2, RET: read this Info node"))
176 (define-button-type 'help-url
177 :supertype 'help-xref
178 'help-function #'browse-url
179 'help-echo (purecopy "mouse-2, RET: view this URL in a browser"))
181 (define-button-type 'help-customize-variable
182 :supertype 'help-xref
183 'help-function (lambda (v)
184 (customize-variable v))
185 'help-echo (purecopy "mouse-2, RET: customize variable"))
187 (define-button-type 'help-customize-face
188 :supertype 'help-xref
189 'help-function (lambda (v)
190 (customize-face v))
191 'help-echo (purecopy "mouse-2, RET: customize face"))
193 (define-button-type 'help-function-def
194 :supertype 'help-xref
195 'help-function (lambda (fun &optional file type)
196 (or file
197 (setq file (find-lisp-object-file-name fun type)))
198 (if (not file)
199 (message "Unable to find defining file")
200 (require 'find-func)
201 (when (eq file 'C-source)
202 (setq file
203 (help-C-file-name (indirect-function fun) 'fun)))
204 ;; Don't use find-function-noselect because it follows
205 ;; aliases (which fails for built-in functions).
206 (let* ((location
207 (find-function-search-for-symbol fun type file))
208 (position (cdr location)))
209 (pop-to-buffer (car location))
210 (run-hooks 'find-function-after-hook)
211 (if position
212 (progn
213 ;; Widen the buffer if necessary to go to this position.
214 (when (or (< position (point-min))
215 (> position (point-max)))
216 (widen))
217 (goto-char position))
218 (message "Unable to find location in file")))))
219 'help-echo (purecopy "mouse-2, RET: find function's definition"))
221 (define-button-type 'help-function-cmacro ; FIXME: Obsolete since 24.4.
222 :supertype 'help-xref
223 'help-function (lambda (fun file)
224 (setq file (locate-library file t))
225 (if (and file (file-readable-p file))
226 (progn
227 (pop-to-buffer (find-file-noselect file))
228 (widen)
229 (goto-char (point-min))
230 (if (re-search-forward
231 (format "^[ \t]*(\\(cl-\\)?define-compiler-macro[ \t]+%s"
232 (regexp-quote (symbol-name fun)))
233 nil t)
234 (forward-line 0)
235 (message "Unable to find location in file")))
236 (message "Unable to find file")))
237 'help-echo (purecopy "mouse-2, RET: find function's compiler macro"))
239 (define-button-type 'help-variable-def
240 :supertype 'help-xref
241 'help-function (lambda (var &optional file)
242 (when (eq file 'C-source)
243 (setq file (help-C-file-name var 'var)))
244 (let* ((location (find-variable-noselect var file))
245 (position (cdr location)))
246 (pop-to-buffer (car location))
247 (run-hooks 'find-function-after-hook)
248 (if position
249 (progn
250 ;; Widen the buffer if necessary to go to this position.
251 (when (or (< position (point-min))
252 (> position (point-max)))
253 (widen))
254 (goto-char position))
255 (message "Unable to find location in file"))))
256 'help-echo (purecopy "mouse-2, RET: find variable's definition"))
258 (define-button-type 'help-face-def
259 :supertype 'help-xref
260 'help-function (lambda (fun file)
261 (require 'find-func)
262 ;; Don't use find-function-noselect because it follows
263 ;; aliases (which fails for built-in functions).
264 (let* ((location
265 (find-function-search-for-symbol fun 'defface file))
266 (position (cdr location)))
267 (pop-to-buffer (car location))
268 (if position
269 (progn
270 ;; Widen the buffer if necessary to go to this position.
271 (when (or (< position (point-min))
272 (> position (point-max)))
273 (widen))
274 (goto-char position))
275 (message "Unable to find location in file"))))
276 'help-echo (purecopy "mouse-2, RET: find face's definition"))
278 (define-button-type 'help-package
279 :supertype 'help-xref
280 'help-function 'describe-package
281 'help-echo (purecopy "mouse-2, RET: Describe package"))
283 (define-button-type 'help-package-def
284 :supertype 'help-xref
285 'help-function (lambda (file) (dired file))
286 'help-echo (purecopy "mouse-2, RET: visit package directory"))
288 (define-button-type 'help-theme-def
289 :supertype 'help-xref
290 'help-function 'find-file
291 'help-echo (purecopy "mouse-2, RET: visit theme file"))
293 (define-button-type 'help-theme-edit
294 :supertype 'help-xref
295 'help-function 'customize-create-theme
296 'help-echo (purecopy "mouse-2, RET: edit this theme file"))
298 (define-button-type 'help-dir-local-var-def
299 :supertype 'help-xref
300 'help-function (lambda (_var &optional file)
301 ;; FIXME: this should go to the point where the
302 ;; local variable was defined.
303 (find-file file))
304 'help-echo (purecopy "mouse-2, RET: open directory-local variables file"))
307 (defvar bookmark-make-record-function)
309 ;;;###autoload
310 (define-derived-mode help-mode special-mode "Help"
311 "Major mode for viewing help text and navigating references in it.
312 Entry to this mode runs the normal hook `help-mode-hook'.
313 Commands:
314 \\{help-mode-map}"
315 (set (make-local-variable 'revert-buffer-function)
316 'help-mode-revert-buffer)
317 (set (make-local-variable 'bookmark-make-record-function)
318 'help-bookmark-make-record))
320 ;;;###autoload
321 (defun help-mode-setup ()
322 "Enter Help Mode in the current buffer."
323 (help-mode)
324 (setq buffer-read-only nil))
326 ;;;###autoload
327 (defun help-mode-finish ()
328 "Finalize Help Mode setup in current buffer."
329 (when (derived-mode-p 'help-mode)
330 (setq buffer-read-only t)
331 (help-make-xrefs (current-buffer))))
333 ;; Grokking cross-reference information in doc strings and
334 ;; hyperlinking it.
336 ;; This may have some scope for extension and the same or something
337 ;; similar should be done for widget doc strings, which currently use
338 ;; another mechanism.
340 (defvar help-back-label (purecopy "[back]")
341 "Label to use by `help-make-xrefs' for the go-back reference.")
343 (defvar help-forward-label (purecopy "[forward]")
344 "Label to use by `help-make-xrefs' for the go-forward reference.")
346 (defconst help-xref-symbol-regexp
347 (purecopy (concat "\\(\\<\\(\\(variable\\|option\\)\\|" ; Link to var
348 "\\(function\\|command\\|call\\)\\|" ; Link to function
349 "\\(face\\)\\|" ; Link to face
350 "\\(symbol\\|program\\|property\\)\\|" ; Don't link
351 "\\(source \\(?:code \\)?\\(?:of\\|for\\)\\)\\)"
352 "[ \t\n]+\\)?"
353 ;; Note starting with word-syntax character:
354 "['`‘]\\(\\sw\\(\\sw\\|\\s_\\)+\\|`\\)['’]"))
355 "Regexp matching doc string references to symbols.
357 The words preceding the quoted symbol can be used in doc strings to
358 distinguish references to variables, functions and symbols.")
360 (defvar help-xref-mule-regexp nil
361 "Regexp matching doc string references to MULE-related keywords.
363 It is usually nil, and is temporarily bound to an appropriate regexp
364 when help commands related to multilingual environment (e.g.,
365 `describe-coding-system') are invoked.")
368 (defconst help-xref-info-regexp
369 (purecopy
370 "\\<[Ii]nfo[ \t\n]+\\(node\\|anchor\\)[ \t\n]+['`‘]\\([^'’]+\\)['’]")
371 "Regexp matching doc string references to an Info node.")
373 (defconst help-xref-url-regexp
374 (purecopy "\\<[Uu][Rr][Ll][ \t\n]+['`‘]\\([^'’]+\\)['’]")
375 "Regexp matching doc string references to a URL.")
377 ;;;###autoload
378 (defun help-setup-xref (item interactive-p)
379 "Invoked from commands using the \"*Help*\" buffer to install some xref info.
381 ITEM is a (FUNCTION . ARGS) pair appropriate for recreating the help
382 buffer after following a reference. INTERACTIVE-P is non-nil if the
383 calling command was invoked interactively. In this case the stack of
384 items for help buffer \"back\" buttons is cleared.
386 This should be called very early, before the output buffer is cleared,
387 because we want to record the \"previous\" position of point so we can
388 restore it properly when going back."
389 (with-current-buffer (help-buffer)
390 (when help-xref-stack-item
391 (push (cons (point) help-xref-stack-item) help-xref-stack)
392 (setq help-xref-forward-stack nil))
393 (when interactive-p
394 (let ((tail (nthcdr 10 help-xref-stack)))
395 ;; Truncate the stack.
396 (if tail (setcdr tail nil))))
397 (setq help-xref-stack-item item)))
399 (defvar help-xref-following nil
400 "Non-nil when following a help cross-reference.")
402 ;;;###autoload
403 (defun help-buffer ()
404 "Return the name of a buffer for inserting help.
405 If `help-xref-following' is non-nil, this is the name of the
406 current buffer. Signal an error if this buffer is not derived
407 from `help-mode'.
408 Otherwise, return \"*Help*\", creating a buffer with that name if
409 it does not already exist."
410 (buffer-name ;for with-output-to-temp-buffer
411 (if (not help-xref-following)
412 (get-buffer-create "*Help*")
413 (unless (derived-mode-p 'help-mode)
414 (error "Current buffer is not in Help mode"))
415 (current-buffer))))
417 (defvar describe-symbol-backends
418 `((nil ,#'fboundp ,(lambda (s _b _f) (describe-function s)))
419 (nil
420 ,(lambda (symbol)
421 (or (and (boundp symbol) (not (keywordp symbol)))
422 (get symbol 'variable-documentation)))
423 ,#'describe-variable)
424 ("face" ,#'facep ,(lambda (s _b _f) (describe-face s)))))
426 ;;;###autoload
427 (defun help-make-xrefs (&optional buffer)
428 "Parse and hyperlink documentation cross-references in the given BUFFER.
430 Find cross-reference information in a buffer and activate such cross
431 references for selection with `help-follow'. Cross-references have
432 the canonical form `...' and the type of reference may be
433 disambiguated by the preceding word(s) used in
434 `help-xref-symbol-regexp'. Faces only get cross-referenced if
435 preceded or followed by the word `face'. Variables without
436 variable documentation do not get cross-referenced, unless
437 preceded by the word `variable' or `option'.
439 If the variable `help-xref-mule-regexp' is non-nil, find also
440 cross-reference information related to multilingual environment
441 \(e.g., coding-systems). This variable is also used to disambiguate
442 the type of reference as the same way as `help-xref-symbol-regexp'.
444 A special reference `back' is made to return back through a stack of
445 help buffers. Variable `help-back-label' specifies the text for
446 that."
447 (interactive "b")
448 (with-current-buffer (or buffer (current-buffer))
449 (save-excursion
450 (goto-char (point-min))
451 ;; Skip the header-type info, though it might be useful to parse
452 ;; it at some stage (e.g. "function in `library'").
453 (forward-paragraph)
454 (let ((old-modified (buffer-modified-p)))
455 (let ((stab (syntax-table))
456 (case-fold-search t)
457 (inhibit-read-only t))
458 (set-syntax-table emacs-lisp-mode-syntax-table)
459 ;; The following should probably be abstracted out.
460 (unwind-protect
461 (progn
462 ;; Info references
463 (save-excursion
464 (while (re-search-forward help-xref-info-regexp nil t)
465 (let ((data (match-string 2)))
466 (save-match-data
467 (unless (string-match "^([^)]+)" data)
468 (setq data (concat "(emacs)" data)))
469 (setq data ;; possible newlines if para filled
470 (replace-regexp-in-string "[ \t\n]+" " " data t t)))
471 (help-xref-button 2 'help-info data))))
472 ;; URLs
473 (save-excursion
474 (while (re-search-forward help-xref-url-regexp nil t)
475 (let ((data (match-string 1)))
476 (help-xref-button 1 'help-url data))))
477 ;; Mule related keywords. Do this before trying
478 ;; `help-xref-symbol-regexp' because some of Mule
479 ;; keywords have variable or function definitions.
480 (if help-xref-mule-regexp
481 (save-excursion
482 (while (re-search-forward help-xref-mule-regexp nil t)
483 (let* ((data (match-string 7))
484 (sym (intern-soft data)))
485 (cond
486 ((match-string 3) ; coding system
487 (and sym (coding-system-p sym)
488 (help-xref-button 6 'help-coding-system sym)))
489 ((match-string 4) ; input method
490 (and (assoc data input-method-alist)
491 (help-xref-button 7 'help-input-method data)))
492 ((or (match-string 5) (match-string 6)) ; charset
493 (and sym (charsetp sym)
494 (help-xref-button 7 'help-character-set sym)))
495 ((assoc data input-method-alist)
496 (help-xref-button 7 'help-character-set data))
497 ((and sym (coding-system-p sym))
498 (help-xref-button 7 'help-coding-system sym))
499 ((and sym (charsetp sym))
500 (help-xref-button 7 'help-character-set sym)))))))
501 ;; Quoted symbols
502 (save-excursion
503 (while (re-search-forward help-xref-symbol-regexp nil t)
504 (let* ((data (match-string 8))
505 (sym (intern-soft data)))
506 (if sym
507 (cond
508 ((match-string 3) ; `variable' &c
509 (and (or (boundp sym) ; `variable' doesn't ensure
510 ; it's actually bound
511 (get sym 'variable-documentation))
512 (help-xref-button 8 'help-variable sym)))
513 ((match-string 4) ; `function' &c
514 (and (fboundp sym) ; similarly
515 (help-xref-button 8 'help-function sym)))
516 ((match-string 5) ; `face'
517 (and (facep sym)
518 (help-xref-button 8 'help-face sym)))
519 ((match-string 6)) ; nothing for `symbol'
520 ((match-string 7)
521 (help-xref-button 8 'help-function-def sym))
522 ((cl-some (lambda (x) (funcall (nth 1 x) sym))
523 describe-symbol-backends)
524 (help-xref-button 8 'help-symbol sym)))))))
525 ;; An obvious case of a key substitution:
526 (save-excursion
527 (while (re-search-forward
528 ;; Assume command name is only word and symbol
529 ;; characters to get things like `use M-x foo->bar'.
530 ;; Command required to end with word constituent
531 ;; to avoid `.' at end of a sentence.
532 "\\<M-x\\s-+\\(\\sw\\(\\sw\\|\\s_\\)*\\sw\\)" nil t)
533 (let ((sym (intern-soft (match-string 1))))
534 (if (fboundp sym)
535 (help-xref-button 1 'help-function sym)))))
536 ;; Look for commands in whole keymap substitutions:
537 (save-excursion
538 ;; Make sure to find the first keymap.
539 (goto-char (point-min))
540 ;; Find a header and the column at which the command
541 ;; name will be found.
543 ;; If the keymap substitution isn't the last thing in
544 ;; the doc string, and if there is anything on the same
545 ;; line after it, this code won't recognize the end of it.
546 (while (re-search-forward "^key +binding\n\\(-+ +\\)-+\n\n"
547 nil t)
548 (let ((col (- (match-end 1) (match-beginning 1))))
549 (while
550 (and (not (eobp))
551 ;; Stop at a pair of blank lines.
552 (not (looking-at-p "\n\\s-*\n")))
553 ;; Skip a single blank line.
554 (and (eolp) (forward-line))
555 (end-of-line)
556 (skip-chars-backward "^ \t\n")
557 (if (and (>= (current-column) col)
558 (looking-at "\\(\\sw\\|\\s_\\)+$"))
559 (let ((sym (intern-soft (match-string 0))))
560 (if (fboundp sym)
561 (help-xref-button 0 'help-function sym))))
562 (forward-line))))))
563 (set-syntax-table stab))
564 ;; Delete extraneous newlines at the end of the docstring
565 (goto-char (point-max))
566 (while (and (not (bobp)) (bolp))
567 (delete-char -1))
568 (insert "\n")
569 (when (or help-xref-stack help-xref-forward-stack)
570 (insert "\n"))
571 ;; Make a back-reference in this buffer if appropriate.
572 (when help-xref-stack
573 (help-insert-xref-button help-back-label 'help-back
574 (current-buffer)))
575 ;; Make a forward-reference in this buffer if appropriate.
576 (when help-xref-forward-stack
577 (when help-xref-stack
578 (insert "\t"))
579 (help-insert-xref-button help-forward-label 'help-forward
580 (current-buffer)))
581 (when (or help-xref-stack help-xref-forward-stack)
582 (insert "\n")))
583 (set-buffer-modified-p old-modified)))))
585 ;;;###autoload
586 (defun help-xref-button (match-number type &rest args)
587 "Make a hyperlink for cross-reference text previously matched.
588 MATCH-NUMBER is the subexpression of interest in the last matched
589 regexp. TYPE is the type of button to use. Any remaining arguments are
590 passed to the button's help-function when it is invoked.
591 See `help-make-xrefs'."
592 ;; Don't mung properties we've added specially in some instances.
593 (unless (button-at (match-beginning match-number))
594 (make-text-button (match-beginning match-number)
595 (match-end match-number)
596 'type type 'help-args args)))
598 ;;;###autoload
599 (defun help-insert-xref-button (string type &rest args)
600 "Insert STRING and make a hyperlink from cross-reference text on it.
601 TYPE is the type of button to use. Any remaining arguments are passed
602 to the button's help-function when it is invoked.
603 See `help-make-xrefs'."
604 (unless (button-at (point))
605 (insert-text-button string 'type type 'help-args args)))
607 ;;;###autoload
608 (defun help-xref-on-pp (from to)
609 "Add xrefs for symbols in `pp's output between FROM and TO."
610 (if (> (- to from) 5000) nil
611 (with-syntax-table emacs-lisp-mode-syntax-table
612 (save-excursion
613 (save-restriction
614 (narrow-to-region from to)
615 (goto-char (point-min))
616 (ignore-errors
617 (while (not (eobp))
618 (cond
619 ((looking-at-p "\"") (forward-sexp 1))
620 ((looking-at-p "#<") (search-forward ">" nil 'move))
621 ((looking-at "\\(\\(\\sw\\|\\s_\\)+\\)")
622 (let* ((sym (intern-soft (match-string 1)))
623 (type (cond ((fboundp sym) 'help-function)
624 ((or (memq sym '(t nil))
625 (keywordp sym))
626 nil)
627 ((and sym
628 (or (boundp sym)
629 (get sym
630 'variable-documentation)))
631 'help-variable))))
632 (when type (help-xref-button 1 type sym)))
633 (goto-char (match-end 1)))
634 (t (forward-char 1))))))))))
637 ;; Additional functions for (re-)creating types of help buffers.
639 ;;;###autoload
640 (define-obsolete-function-alias 'help-xref-interned 'describe-symbol "25.1")
643 ;; Navigation/hyperlinking with xrefs
645 (defun help-xref-go-back (buffer)
646 "From BUFFER, go back to previous help buffer text using `help-xref-stack'."
647 (let (item position method args)
648 (with-current-buffer buffer
649 (push (cons (point) help-xref-stack-item) help-xref-forward-stack)
650 (when help-xref-stack
651 (setq item (pop help-xref-stack)
652 ;; Clear the current item so that it won't get pushed
653 ;; by the function we're about to call. TODO: We could also
654 ;; push it onto a "forward" stack and add a `forw' button.
655 help-xref-stack-item nil
656 position (car item)
657 method (cadr item)
658 args (cddr item))))
659 (apply method args)
660 (with-current-buffer buffer
661 (if (get-buffer-window buffer)
662 (set-window-point (get-buffer-window buffer) position)
663 (goto-char position)))))
665 (defun help-xref-go-forward (buffer)
666 "From BUFFER, go forward to next help buffer."
667 (let (item position method args)
668 (with-current-buffer buffer
669 (push (cons (point) help-xref-stack-item) help-xref-stack)
670 (when help-xref-forward-stack
671 (setq item (pop help-xref-forward-stack)
672 ;; Clear the current item so that it won't get pushed
673 ;; by the function we're about to call. TODO: We could also
674 ;; push it onto a "forward" stack and add a `forw' button.
675 help-xref-stack-item nil
676 position (car item)
677 method (cadr item)
678 args (cddr item))))
679 (apply method args)
680 (with-current-buffer buffer
681 (if (get-buffer-window buffer)
682 (set-window-point (get-buffer-window buffer) position)
683 (goto-char position)))))
685 (defun help-go-back ()
686 "Go back to previous topic in this help buffer."
687 (interactive)
688 (if help-xref-stack
689 (help-xref-go-back (current-buffer))
690 (user-error "No previous help buffer")))
692 (defun help-go-forward ()
693 "Go to the next topic in this help buffer."
694 (interactive)
695 (if help-xref-forward-stack
696 (help-xref-go-forward (current-buffer))
697 (user-error "No next help buffer")))
699 (defun help-do-xref (_pos function args)
700 "Call the help cross-reference function FUNCTION with args ARGS.
701 Things are set up properly so that the resulting help-buffer has
702 a proper [back] button."
703 ;; There is a reference at point. Follow it.
704 (let ((help-xref-following t))
705 (apply function (if (eq function 'info)
706 (append args (list (generate-new-buffer-name "*info*"))) args))))
708 ;; The doc string is meant to explain what buttons do.
709 (defun help-follow-mouse ()
710 "Follow the cross-reference that you click on."
711 (interactive)
712 (error "No cross-reference here"))
714 ;; The doc string is meant to explain what buttons do.
715 (defun help-follow ()
716 "Follow cross-reference at point.
718 For the cross-reference format, see `help-make-xrefs'."
719 (interactive)
720 (user-error "No cross-reference here"))
722 (defun help-follow-symbol (&optional pos)
723 "In help buffer, show docs for symbol at POS, defaulting to point.
724 Show all docs for that symbol as either a variable, function or face."
725 (interactive "d")
726 (unless pos
727 (setq pos (point)))
728 ;; check if the symbol under point is a function, variable or face
729 (let ((sym
730 (intern
731 (save-excursion
732 (goto-char pos) (skip-syntax-backward "w_")
733 (buffer-substring (point)
734 (progn (skip-syntax-forward "w_")
735 (point)))))))
736 (when (or (boundp sym)
737 (get sym 'variable-documentation)
738 (fboundp sym) (facep sym))
739 (help-do-xref pos #'describe-symbol (list sym)))))
741 (defun help-mode-revert-buffer (_ignore-auto noconfirm)
742 (when (or noconfirm (yes-or-no-p "Revert help buffer? "))
743 (let ((pos (point))
744 (item help-xref-stack-item)
745 ;; Pretend there is no current item to add to the history.
746 (help-xref-stack-item nil)
747 ;; Use the current buffer.
748 (help-xref-following t))
749 (apply (car item) (cdr item))
750 (goto-char pos))))
752 (defun help-insert-string (string)
753 "Insert STRING to the help buffer and install xref info for it.
754 This function can be used to restore the old contents of the help buffer
755 when going back to the previous topic in the xref stack. It is needed
756 in case when it is impossible to recompute the old contents of the
757 help buffer by other means."
758 (setq help-xref-stack-item (list #'help-insert-string string))
759 (with-output-to-temp-buffer (help-buffer)
760 (insert string)))
763 ;; Bookmark support
765 (declare-function bookmark-prop-get "bookmark" (bookmark prop))
766 (declare-function bookmark-make-record-default "bookmark"
767 (&optional no-file no-context posn))
769 (defun help-bookmark-make-record ()
770 "Create and return a help-mode bookmark record.
771 Implements `bookmark-make-record-function' for help-mode buffers."
772 (unless (car help-xref-stack-item)
773 (error "Cannot create bookmark - help command not known"))
774 `(,@(bookmark-make-record-default 'NO-FILE 'NO-CONTEXT)
775 (help-fn . ,(car help-xref-stack-item))
776 (help-args . ,(cdr help-xref-stack-item))
777 (position . ,(point))
778 (handler . help-bookmark-jump)))
780 ;;;###autoload
781 (defun help-bookmark-jump (bookmark)
782 "Jump to help-mode bookmark BOOKMARK.
783 Handler function for record returned by `help-bookmark-make-record'.
784 BOOKMARK is a bookmark name or a bookmark record."
785 (let ((help-fn (bookmark-prop-get bookmark 'help-fn))
786 (help-args (bookmark-prop-get bookmark 'help-args))
787 (position (bookmark-prop-get bookmark 'position)))
788 (apply help-fn help-args)
789 (pop-to-buffer "*Help*")
790 (goto-char position)))
793 (provide 'help-mode)
795 ;;; help-mode.el ends here