1 ;;; help.el --- help commands for Emacs
3 ;; Copyright (C) 1985, 1986, 1993, 1994, 1998, 1999, 2000, 2001, 2002, 2004,
4 ;; 2005 Free Software Foundation, Inc.
7 ;; Keywords: help, internal
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; 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.
28 ;; This code implements GNU Emacs' on-line help system, the one invoked by
29 ;; `M-x help-for-help'.
33 ;; Get the macro make-help-screen when this is compiled,
34 ;; or run interpreted, but not when the compiled code is loaded.
35 (eval-when-compile (require 'help-macro
))
37 ;; This makes `with-output-to-temp-buffer' buffers use `help-mode'.
38 (add-hook 'temp-buffer-setup-hook
'help-mode-setup
)
39 (add-hook 'temp-buffer-show-hook
'help-mode-finish
)
41 (defvar help-map
(make-sparse-keymap)
42 "Keymap for characters following the Help key.")
44 (define-key global-map
(char-to-string help-char
) 'help-command
)
45 (define-key global-map
[help] 'help-command)
46 (define-key global-map [f1] 'help-command)
47 (fset 'help-command help-map)
49 (define-key help-map (char-to-string help-char) 'help-for-help)
50 (define-key help-map [help] 'help-for-help
)
51 (define-key help-map
[f1] 'help-for-help)
52 (define-key help-map "." 'display-local-help)
53 (define-key help-map "?" 'help-for-help)
55 (define-key help-map "\C-c" 'describe-copying)
56 (define-key help-map "\C-d" 'describe-distribution)
57 (define-key help-map "\C-e" 'view-emacs-problems)
58 (define-key help-map "\C-f" 'view-emacs-FAQ)
59 (define-key help-map "\C-m" 'view-order-manuals)
60 (define-key help-map "\C-n" 'view-emacs-news)
61 (define-key help-map "\C-p" 'describe-project)
62 (define-key help-map "\C-t" 'view-todo)
63 (define-key help-map "\C-w" 'describe-no-warranty)
65 ;; This does not fit the pattern, but it is natural given the C-\ command.
66 (define-key help-map "\C-\\" 'describe-input-method)
68 (define-key help-map "C" 'describe-coding-system)
69 (define-key help-map "F" 'Info-goto-emacs-command-node)
70 (define-key help-map "I" 'describe-input-method)
71 (define-key help-map "K" 'Info-goto-emacs-key-command-node)
72 (define-key help-map "L" 'describe-language-environment)
73 (define-key help-map "S" 'info-lookup-symbol)
75 (define-key help-map "a" 'apropos-command)
77 (define-key help-map "b" 'describe-bindings)
79 (define-key help-map "c" 'describe-key-briefly)
81 (define-key help-map "e" 'view-echo-area-messages)
83 (define-key help-map "f" 'describe-function)
85 (define-key help-map "h" 'view-hello-file)
87 (define-key help-map "i" 'info)
88 (define-key help-map "4i" 'info-other-window)
90 (define-key help-map "k" 'describe-key)
92 (define-key help-map "l" 'view-lossage)
94 (define-key help-map "m" 'describe-mode)
96 (define-key help-map "n" 'view-emacs-news)
98 (define-key help-map "p" 'finder-by-keyword)
99 (autoload 'finder-by-keyword "finder"
100 "Find packages matching a given keyword." t)
102 (define-key help-map "r" 'info-emacs-manual)
104 (define-key help-map "s" 'describe-syntax)
106 (define-key help-map "t" 'help-with-tutorial)
108 (define-key help-map "w" 'where-is)
110 (define-key help-map "v" 'describe-variable)
112 (define-key help-map "q" 'help-quit)
114 ;; insert-button makes the action nil if it is not store somewhere
115 (defvar help-button-cache nil)
119 "Just exit from the Help command's command loop."
123 (defvar help-return-method nil
124 "What to do to \"exit\" the help buffer.
126 (WINDOW . t) delete the selected window, go to WINDOW.
127 (WINDOW . quit-window) do quit-window, then select WINDOW.
128 (WINDOW BUF START POINT) display BUF at START, POINT, then select WINDOW.")
130 (defun print-help-return-message (&optional function)
131 "Display or return message saying how to restore windows after help command.
132 This function assumes that `standard-output' is the help buffer.
133 It computes a message, and applies the optional argument FUNCTION to it.
134 If FUNCTION is nil, it applies `message', thus displaying the message."
135 (and (not (get-buffer-window standard-output))
137 (cond ((special-display-p (buffer-name standard-output))
138 (setq help-return-method (cons (selected-window) t))
139 ;; If the help output buffer is a special display buffer,
140 ;; don't say anything about how to get rid of it.
141 ;; First of all, the user will do that with the window
142 ;; manager, not with Emacs.
143 ;; Secondly, the buffer has not been displayed yet,
144 ;; so we don't know whether its frame will be selected.
146 (display-buffer-reuse-frames
147 (setq help-return-method (cons (selected-window)
150 ((not (one-window-p t))
151 (setq help-return-method
152 (cons (selected-window) 'quit-window))
153 "Type \\[switch-to-buffer-other-window] RET to restore the other window.")
155 (setq help-return-method (cons (selected-window) t))
156 "Type \\[delete-other-windows] to remove help window.")
158 (setq help-return-method
159 (list (selected-window) (window-buffer)
160 (window-start) (window-point)))
161 "Type \\[switch-to-buffer] RET to remove help window."))))
162 (funcall (or function 'message)
165 (substitute-command-keys first-message))
166 (if first-message " ")
167 ;; If the help buffer will go in a separate frame,
168 ;; it's no use mentioning a command to scroll, so don't.
169 (if (special-display-p (buffer-name standard-output))
171 (if (same-window-p (buffer-name standard-output))
172 ;; Say how to scroll this window.
173 (substitute-command-keys
174 "\\[scroll-up] to scroll the help.")
175 ;; Say how to scroll some other window.
176 (substitute-command-keys
177 "\\[scroll-other-window] to scroll the help."))))))))
179 ;; So keyboard macro definitions are documented correctly
180 (fset 'defining-kbd-macro (symbol-function 'start-kbd-macro))
182 (defalias 'help 'help-for-help-internal)
183 ;; find-function can find this.
184 (defalias 'help-for-help 'help-for-help-internal)
185 ;; It can't find this, but nobody will look.
186 (make-help-screen help-for-help-internal
187 "a b c C e f F i I k C-k l L m p s t v w C-c C-d C-f C-n C-p C-t C-w . or ? :"
188 "You have typed %THIS-KEY%, the help character. Type a Help option:
189 \(Use SPC or DEL to scroll through this text. Type \\<help-map>\\[help-quit] to exit the Help command.)
191 a command-apropos. Give a substring, and see a list of commands
192 (functions that are interactively callable) that contain
193 that substring. See also the apropos command.
194 b describe-bindings. Display table of all key bindings.
195 c describe-key-briefly. Type a command key sequence;
196 it prints the function name that sequence runs.
197 C describe-coding-system. This describes either a specific coding system
198 (if you type its name) or the coding systems currently in use
199 (if you type just RET).
200 e view-echo-area-messages. Show the buffer where the echo-area messages
202 f describe-function. Type a function name and get its documentation.
203 F Info-goto-emacs-command-node. Type a function name;
204 it takes you to the on-line manual's section that describes
206 h Display the HELLO file which illustrates various scripts.
207 i info. The Info documentation reader: read on-line manuals.
208 I describe-input-method. Describe a specific input method (if you type
209 its name) or the current input method (if you type just RET).
210 k describe-key. Type a command key sequence;
211 it displays the full documentation for that key sequence.
212 K Info-goto-emacs-key-command-node. Type a command key sequence;
213 it takes you to the on-line manual's section that describes
214 the command bound to that key.
215 l view-lossage. Show last 100 characters you typed.
216 L describe-language-environment. This describes either a
217 specific language environment (if you type its name)
218 or the current language environment (if you type just RET).
219 m describe-mode. Display documentation of current minor modes,
220 and the current major mode, including their special commands.
221 n view-emacs-news. Display news of recent Emacs changes.
222 p finder-by-keyword. Find packages matching a given topic keyword.
223 s describe-syntax. Display contents of syntax table, plus explanations.
224 S info-lookup-symbol. Display the definition of a specific symbol
225 as found in the manual for the language this buffer is written in.
226 t help-with-tutorial. Select the Emacs learn-by-doing tutorial.
227 v describe-variable. Type name of a variable;
228 it displays the variable's documentation and value.
229 w where-is. Type command name; it prints which keystrokes
231 . display-local-help. Display any available local help at point
234 C-c Display Emacs copying permission (GNU General Public License).
235 C-d Display Emacs ordering information.
236 C-e Display info about Emacs problems.
237 C-f Display the Emacs FAQ.
238 C-m Display how to order printed Emacs manuals.
239 C-n Display news of recent Emacs changes.
240 C-p Display information about the GNU project.
241 C-t Display the Emacs TODO list.
242 C-w Display information on absence of warranty for GNU Emacs."
247 (defun function-called-at-point ()
248 "Return a function around point or else called by the list containing point.
249 If that doesn't give a function, return nil."
250 (or (with-syntax-table emacs-lisp-mode-syntax-table
251 (or (condition-case ()
253 (or (not (zerop (skip-syntax-backward "_w")))
254 (eq (char-syntax (following-char)) ?w)
255 (eq (char-syntax (following-char)) ?_)
257 (skip-chars-forward "'")
258 (let ((obj (read (current-buffer))))
259 (and (symbolp obj) (fboundp obj) obj)))
264 (narrow-to-region (max (point-min)
265 (- (point) 1000)) (point-max))
266 ;; Move up to surrounding paren, then after the open.
269 ;; If there is space here, this is probably something
270 ;; other than a real Lisp function call, so ignore it.
271 (if (looking-at "[ \t]")
272 (error "Probably not a Lisp function call"))
273 (let ((obj (read (current-buffer))))
274 (and (symbolp obj) (fboundp obj) obj))))
276 (let* ((str (find-tag-default))
277 (sym (if str (intern-soft str))))
278 (if (and sym (fboundp sym))
281 (when (and str (string-match "\\`\\W*\\(.*?\\)\\W*\\'" str))
282 (setq sym (intern-soft (match-string 1 str)))
283 (and (fboundp sym) sym)))))))
286 ;;; `User' help functions
288 (defun describe-distribution ()
289 "Display info on how to obtain the latest version of GNU Emacs."
291 (view-file (expand-file-name "DISTRIB" data-directory)))
293 (defun describe-copying ()
294 "Display info on how you may redistribute copies of GNU Emacs."
296 (view-file (expand-file-name "COPYING" data-directory))
297 (goto-char (point-min)))
299 (defun describe-project ()
300 "Display info on the GNU project."
302 (view-file (expand-file-name "THE-GNU-PROJECT" data-directory))
303 (goto-char (point-min)))
305 (defun describe-no-warranty ()
306 "Display info on all the kinds of warranty Emacs does NOT have."
309 (let (case-fold-search)
310 (search-forward "NO WARRANTY")
313 (defun describe-prefix-bindings ()
314 "Describe the bindings of the prefix used to reach this command.
315 The prefix described consists of all but the last event
316 of the key sequence that ran this command."
318 (let* ((key (this-command-keys)))
321 (substring key 0 (1- (length key)))
322 (let ((prefix (make-vector (1- (length key)) nil))
324 (while (< i (length prefix))
325 (aset prefix i (aref key i))
328 ;; Make C-h after a prefix, when not specifically bound,
329 ;; run describe-prefix-bindings.
330 (setq prefix-help-command 'describe-prefix-bindings)
332 (defun view-emacs-news (&optional arg)
333 "Display info on recent changes to Emacs.
334 With argument, display info only for the selected version."
337 (view-file (expand-file-name "NEWS" data-directory))
345 (insert-file-contents
346 (expand-file-name file data-directory))
348 (while (re-search-forward
349 (if (string-match "^ONEWS\\.[0-9]+$" file)
350 "Changes in \\(?:Emacs\\|version\\)?[ \t]*\\([0-9]+\\(?:\\.[0-9]+\\)?\\)"
351 "^\* [^0-9\n]*\\([0-9]+\\.[0-9]+\\)") nil t)
352 (setq res (cons (list (match-string-no-properties 1)
355 (append '("NEWS" "ONEWS")
356 (directory-files data-directory nil
357 "^ONEWS\\.[0-9]+$" nil)))))
359 (string< (car b) (car a)))))
361 (version (completing-read
362 (format "Read NEWS for the version (default %s): " current)
363 (mapcar 'car map) nil nil nil nil current))
364 (file (cadr (assoc version map)))
367 (error "No news is good news")
368 (view-file (expand-file-name file data-directory))
370 (goto-char (point-min))
371 (when (re-search-forward
372 (concat (if (string-match "^ONEWS\\.[0-9]+$" file)
373 "Changes in \\(?:Emacs\\|version\\)?[ \t]*"
374 "^\* [^0-9\n]*") version)
380 (while (and (setq res
382 (if (string-match "^ONEWS\\.[0-9]+$" file)
383 "Changes in \\(?:Emacs\\|version\\)?[ \t]*\\([0-9]+\\(?:\\.[0-9]+\\)?\\)"
384 "^\* [^0-9\n]*\\([0-9]+\\.[0-9]+\\)") nil t))
385 (equal (match-string-no-properties 1) version)))
386 (or res (goto-char (point-max)))
390 (defun view-todo (&optional arg)
391 "Display the Emacs TODO list."
393 (view-file (expand-file-name "TODO" data-directory)))
395 (defun view-echo-area-messages ()
396 "View the log of recent echo-area messages: the `*Messages*' buffer.
397 The number of messages retained in that buffer
398 is specified by the variable `message-log-max'."
400 (switch-to-buffer (get-buffer-create "*Messages*")))
402 (defun view-order-manuals ()
403 "Display the Emacs ORDERS file."
405 (view-file (expand-file-name "ORDERS" data-directory))
408 (defun view-emacs-FAQ ()
409 "Display the Emacs Frequently Asked Questions (FAQ) file."
411 ;; (find-file-read-only (expand-file-name "FAQ" data-directory))
414 (defun view-emacs-problems ()
415 "Display info on known problems with Emacs and possible workarounds."
417 (view-file (expand-file-name "PROBLEMS" data-directory)))
419 (defun view-lossage ()
420 "Display last 100 input keystrokes.
422 To record all your input on a file, use `open-dribble-file'."
424 (help-setup-xref (list #'view-lossage) (interactive-p))
425 (with-output-to-temp-buffer (help-buffer)
426 (princ (mapconcat (lambda (key)
427 (if (or (integerp key) (symbolp key) (listp key))
428 (single-key-description key)
429 (prin1-to-string key nil)))
432 (with-current-buffer standard-output
433 (goto-char (point-min))
434 (while (progn (move-to-column 50) (not (eobp)))
435 (search-forward " " nil t)
437 (print-help-return-message)))
442 (defun describe-bindings (&optional prefix buffer)
443 "Show a list of all defined keys, and their definitions.
444 We put that list in a buffer, and display the buffer.
446 The optional argument PREFIX, if non-nil, should be a key sequence;
447 then we display only bindings that start with that prefix.
448 The optional argument BUFFER specifies which buffer's bindings
449 to display (default, the current buffer). BUFFER can be a buffer
452 (or buffer (setq buffer (current-buffer)))
453 (help-setup-xref (list #'describe-bindings prefix buffer) (interactive-p))
454 (with-current-buffer buffer
455 (describe-bindings-internal nil prefix)))
457 ;; This function used to be in keymap.c.
458 (defun describe-bindings-internal (&optional menus prefix)
459 "Show a list of all defined keys, and their definitions.
460 We put that list in a buffer, and display the buffer.
462 The optional argument MENUS, if non-nil, says to mention menu bindings.
463 \(Ordinarily these are omitted from the output.)
464 The optional argument PREFIX, if non-nil, should be a key sequence;
465 then we display only bindings that start with that prefix."
467 (let ((buf (current-buffer)))
468 (with-output-to-temp-buffer "*Help*"
469 (with-current-buffer standard-output
470 (describe-buffer-bindings buf prefix menus)))))
472 (defun where-is (definition &optional insert)
473 "Print message listing key sequences that invoke the command DEFINITION.
474 Argument is a command definition, usually a symbol with a function definition.
475 If INSERT (the prefix arg) is non-nil, insert the message in the buffer."
477 (let ((fn (function-called-at-point))
478 (enable-recursive-minibuffers t)
480 (setq val (completing-read
482 (format "Where is command (default %s): " fn)
483 "Where is command: ")
484 obarray 'commandp t))
485 (list (if (equal val "") fn (intern val)) current-prefix-arg)))
486 (let ((func (indirect-function definition))
488 (standard-output (if insert (current-buffer) t)))
489 ;; In DEFS, find all symbols that are aliases for DEFINITION.
490 (mapatoms (lambda (symbol)
491 (and (fboundp symbol)
492 (not (eq symbol definition))
493 (eq func (condition-case ()
494 (indirect-function symbol)
496 (push symbol defs))))
497 ;; Look at all the symbols--first DEFINITION,
499 (dolist (symbol (cons definition defs))
500 (let* ((remapped (command-remapping symbol))
501 (keys (where-is-internal
502 symbol overriding-local-map nil nil remapped))
503 (keys (mapconcat 'key-description keys ", "))
507 (if (> (length keys) 0)
509 (format "%s (%s) (remapped from %s)"
510 keys remapped symbol)
511 (format "%s (%s)" keys symbol))
512 (format "M-x %s RET" symbol))
513 (if (> (length keys) 0)
515 (format "%s is remapped to %s which is on %s"
516 definition symbol keys)
517 (format "%s is on %s" symbol keys))
518 ;; If this is the command the user asked about,
519 ;; and it is not on any key, say so.
520 ;; For other symbols, its aliases, say nothing
521 ;; about them unless they are on keys.
522 (if (eq symbol definition)
523 (format "%s is not on any key" symbol)))))
525 (unless (eq symbol definition)
526 (princ ";\n its alias "))
530 (defun string-key-binding (key)
531 "Value is the binding of KEY in a string.
532 If KEY is an event on a string, and that string has a `local-map'
533 or `keymap' property, return the binding of KEY in the string's keymap."
535 (start (when (vectorp key)
536 (if (memq (aref key 0)
537 '(mode-line header-line left-margin right-margin))
538 (event-start (aref key 1))
539 (and (consp (aref key 0))
540 (event-start (aref key 0))))))
541 (string-info (and (consp start) (nth 4 start))))
543 (let* ((string (car string-info))
544 (pos (cdr string-info))
545 (local-map (and (>= pos 0)
546 (< pos (length string))
547 (or (get-text-property pos 'local-map string)
548 (get-text-property pos 'keymap string)))))
549 (setq defn (and local-map (lookup-key local-map key)))))
552 (defun help-key-description (key untranslated)
553 (let ((string (key-description key)))
554 (if (or (not untranslated)
555 (and (eq (aref untranslated 0) ?\e) (not (eq (aref key 0) ?\e))))
557 (let ((otherstring (key-description untranslated)))
558 (if (equal string otherstring)
560 (format "%s (translated from %s)" string otherstring))))))
562 (defun describe-key-briefly (key &optional insert untranslated)
563 "Print the name of the function KEY invokes. KEY is a string.
564 If INSERT (the prefix arg) is non-nil, insert the message in the buffer.
565 If non-nil UNTRANSLATED is a vector of the untranslated events.
566 It can also be a number in which case the untranslated events from
567 the last key hit are used."
568 (interactive "kDescribe key briefly: \nP\np")
569 (if (numberp untranslated)
570 (setq untranslated (this-single-command-raw-keys)))
572 (let ((modifiers (event-modifiers (aref key 0)))
573 (standard-output (if insert (current-buffer) t))
575 ;; For a mouse button event, go to the button it applies to
576 ;; to get the right key bindings. And go to the right place
577 ;; in case the keymap depends on where you clicked.
578 (if (or (memq 'click modifiers) (memq 'down modifiers)
579 (memq 'drag modifiers))
580 (setq window (posn-window (event-start (aref key 0)))
581 position (posn-point (event-start (aref key 0)))))
584 (set-buffer (window-buffer window))
585 (goto-char position)))
586 ;; Ok, now look up the key and name the command.
587 (let ((defn (or (string-key-binding key)
590 ;; Don't bother user with strings from (e.g.) the select-paste menu.
591 (if (stringp (aref key (1- (length key))))
592 (aset key (1- (length key)) "(any string)"))
593 (if (and (> (length untranslated) 0)
594 (stringp (aref untranslated (1- (length untranslated)))))
595 (aset untranslated (1- (length untranslated))
597 ;; Now describe the key, perhaps as changed.
598 (setq key-desc (help-key-description key untranslated))
599 (if (or (null defn) (integerp defn) (equal defn 'undefined))
600 (princ (format "%s is undefined" key-desc))
601 (princ (format (if (windowp window)
602 "%s at that spot runs the command %s"
603 "%s runs the command %s")
605 (if (symbolp defn) defn (prin1-to-string defn)))))))))
607 (defun describe-key (key &optional untranslated up-event)
608 "Display documentation of the function invoked by KEY.
609 KEY should be a key sequence--when calling from a program,
610 pass a string or a vector.
611 If non-nil UNTRANSLATED is a vector of the untranslated events.
612 It can also be a number in which case the untranslated events from
613 the last key hit are used."
614 ;; UP-EVENT is the up-event that was discarded by reading KEY, or nil.
615 (interactive "kDescribe key: \np\nU")
616 (if (numberp untranslated)
617 (setq untranslated (this-single-command-raw-keys)))
619 (let ((modifiers (event-modifiers (aref key 0)))
621 ;; For a mouse button event, go to the button it applies to
622 ;; to get the right key bindings. And go to the right place
623 ;; in case the keymap depends on where you clicked.
624 (if (or (memq 'click modifiers) (memq 'down modifiers)
625 (memq 'drag modifiers))
626 (setq window (posn-window (event-start (aref key 0)))
627 position (posn-point (event-start (aref key 0)))))
628 (when (windowp window)
629 (set-buffer (window-buffer window))
630 (goto-char position))
631 (let ((defn (or (string-key-binding key) (key-binding key))))
632 (if (or (null defn) (integerp defn) (equal defn 'undefined))
633 (message "%s is undefined" (help-key-description key untranslated))
634 (help-setup-xref (list #'describe-function defn) (interactive-p))
635 ;; Don't bother user with strings from (e.g.) the select-paste menu.
636 (if (stringp (aref key (1- (length key))))
637 (aset key (1- (length key)) "(any string)"))
638 (if (and untranslated
639 (stringp (aref untranslated (1- (length untranslated)))))
640 (aset untranslated (1- (length untranslated))
642 (with-output-to-temp-buffer (help-buffer)
643 (princ (help-key-description key untranslated))
645 (princ " at that spot"))
646 (princ " runs the command ")
648 (princ "\n which is ")
649 (describe-function-1 defn)
651 (let ((ev (aref up-event 0))
652 (descr (key-description up-event))
653 (hdr "\n\n-------------- up event ---------------\n\n")
655 mouse-1-tricky mouse-1-remapped)
656 (when (and (consp ev)
657 (eq (car ev) 'mouse-1)
659 mouse-1-click-follows-link
660 (not (eq mouse-1-click-follows-link 'double))
661 (with-current-buffer (window-buffer window)
662 (mouse-on-link-p (posn-point (event-start ev)))))
663 (setq mouse-1-tricky (integerp mouse-1-click-follows-link)
664 mouse-1-remapped (or (not mouse-1-tricky)
665 (> mouse-1-click-follows-link 0)))
667 (setcar ev 'mouse-2)))
668 (setq defn (or (string-key-binding up-event) (key-binding up-event)))
669 (unless (or (null defn) (integerp defn) (equal defn 'undefined))
670 (princ (if mouse-1-tricky
671 "\n\n----------------- up-event (short click) ----------------\n\n"
676 (princ " at that spot"))
678 (princ " is remapped to <mouse-2>\n which" ))
679 (princ " runs the command ")
681 (princ "\n which is ")
682 (describe-function-1 defn))
685 (if (> mouse-1-click-follows-link 0) 'mouse-1 'mouse-2))
686 (setq defn (or (string-key-binding up-event) (key-binding up-event)))
687 (unless (or (null defn) (integerp defn) (equal defn 'undefined))
689 "\n\n----------------- up-event (long click) ----------------\n\n"))
693 (princ " at that spot"))
694 (princ (format " for longer than %d milli-seconds\n"
695 (abs mouse-1-click-follows-link)))
696 (if (not mouse-1-remapped)
697 (princ " remaps it to <mouse-2> which" ))
698 (princ " runs the command ")
700 (princ "\n which is ")
701 (describe-function-1 defn))))
702 (print-help-return-message))))))))
705 (defun describe-mode (&optional buffer)
706 "Display documentation of current major mode and minor modes.
707 A brief summary of the minor modes comes first, followed by the
708 major mode description. This is followed by detailed
709 descriptions of the minor modes, each on a separate page.
711 For this to work correctly for a minor mode, the mode's indicator
712 variable \(listed in `minor-mode-alist') must also be a function
713 whose documentation describes the minor mode."
715 (unless buffer (setq buffer (current-buffer)))
716 (help-setup-xref (list #'describe-mode buffer)
718 ;; For the sake of help-do-xref and help-xref-go-back,
719 ;; don't switch buffers before calling `help-buffer'.
720 (with-output-to-temp-buffer (help-buffer)
721 (with-current-buffer buffer
723 ;; Older packages do not register in minor-mode-list but only in
725 (dolist (x minor-mode-alist)
727 (unless (memq x minor-mode-list)
728 (push x minor-mode-list)))
729 ;; Find enabled minor mode we will want to mention.
730 (dolist (mode minor-mode-list)
731 ;; Document a minor mode if it is listed in minor-mode-alist,
732 ;; non-nil, and has a function definition.
733 (let ((fmode (or (get mode :minor-mode-function) mode)))
734 (and (boundp mode) (symbol-value mode)
736 (let ((pretty-minor-mode
737 (if (string-match "\\(\\(-minor\\)?-mode\\)?\\'"
740 (substring (symbol-name fmode)
741 0 (match-beginning 0)))
743 (push (list fmode pretty-minor-mode
744 (format-mode-line (assq mode minor-mode-alist)))
748 (lambda (a b) (string-lessp (cadr a) (cadr b)))))
750 (princ "Summary of minor modes:\n")
751 (make-local-variable 'help-button-cache)
752 (with-current-buffer standard-output
753 (dolist (mode minor-modes)
754 (let ((mode-function (nth 0 mode))
755 (pretty-minor-mode (nth 1 mode))
756 (indicator (nth 2 mode)))
757 (setq indicator (if (zerop (length indicator))
759 (format "indicator%s" indicator)))
760 (add-text-properties 0 (length pretty-minor-mode)
761 '(face bold) pretty-minor-mode)
763 (goto-char (point-max))
765 (push (point-marker) help-button-cache)
766 ;; Document the minor modes fully.
767 (insert pretty-minor-mode)
768 (princ (format " minor mode (%s):\n" indicator))
769 (princ (documentation mode-function)))
771 (insert-button pretty-minor-mode
772 'action (car help-button-cache)
774 'help-echo "mouse-2, RET: show full information")
775 (princ (format " minor mode (%s):\n" indicator)))))
776 (princ "\n(Full information about these minor modes
777 follows the description of the major mode.)\n\n"))
778 ;; Document the major mode.
779 (let ((mode mode-name))
780 (with-current-buffer standard-output
782 (add-text-properties (- (point) (length mode)) (point) '(face bold))))
784 (princ (documentation major-mode)))
785 (print-help-return-message))))
788 (defun describe-minor-mode (minor-mode)
789 "Display documentation of a minor mode given as MINOR-MODE.
790 MINOR-MODE can be a minor mode symbol or a minor mode indicator string
791 appeared on the mode-line."
792 (interactive (list (completing-read
795 (describe-minor-mode-completion-table-for-symbol)
796 (describe-minor-mode-completion-table-for-indicator)
798 (if (symbolp minor-mode)
799 (setq minor-mode (symbol-name minor-mode)))
800 (let ((symbols (describe-minor-mode-completion-table-for-symbol))
801 (indicators (describe-minor-mode-completion-table-for-indicator)))
803 ((member minor-mode symbols)
804 (describe-minor-mode-from-symbol (intern minor-mode)))
805 ((member minor-mode indicators)
806 (describe-minor-mode-from-indicator minor-mode))
808 (error "No such minor mode: %s" minor-mode)))))
811 (defun describe-minor-mode-completion-table-for-symbol ()
812 ;; In order to list up all minor modes, minor-mode-list
813 ;; is used here instead of minor-mode-alist.
814 (delq nil (mapcar 'symbol-name minor-mode-list)))
815 (defun describe-minor-mode-from-symbol (symbol)
816 "Display documentation of a minor mode given as a symbol, SYMBOL"
817 (interactive (list (intern (completing-read
818 "Minor mode symbol: "
819 (describe-minor-mode-completion-table-for-symbol)))))
821 (describe-function symbol)
822 (describe-variable symbol)))
825 (defun describe-minor-mode-completion-table-for-indicator ()
828 (let ((i (format-mode-line x)))
829 ;; remove first space if existed
838 (defun describe-minor-mode-from-indicator (indicator)
839 "Display documentation of a minor mode specified by INDICATOR.
840 If you call this function interactively, you can give indicator which
841 is currently activated with completion."
844 "Minor mode indicator: "
845 (describe-minor-mode-completion-table-for-indicator))))
846 (let ((minor-mode (lookup-minor-mode-from-indicator indicator)))
848 (describe-minor-mode-from-symbol minor-mode)
849 (error "Cannot find minor mode for `%s'" indicator))))
851 (defun lookup-minor-mode-from-indicator (indicator)
852 "Return a minor mode symbol from its indicator on the modeline."
853 ;; remove first space if existed
854 (if (and (< 0 (length indicator))
855 (eq (aref indicator 0) ?\ ))
856 (setq indicator (substring indicator 1)))
857 (let ((minor-modes minor-mode-alist)
860 (let* ((minor-mode (car (car minor-modes)))
861 (anindicator (format-mode-line
862 (car (cdr (car minor-modes))))))
863 ;; remove first space if existed
864 (if (and (stringp anindicator)
865 (> (length anindicator) 0)
866 (eq (aref anindicator 0) ?\ ))
867 (setq anindicator (substring anindicator 1)))
868 (if (equal indicator anindicator)
869 (setq result minor-mode
871 (setq minor-modes (cdr minor-modes)))))
875 ;;; Automatic resizing of temporary buffers.
877 (defcustom temp-buffer-max-height (lambda (buffer) (/ (- (frame-height) 2) 2))
878 "*Maximum height of a window displaying a temporary buffer.
879 This is the maximum height (in text lines) which `resize-temp-buffer-window'
880 will give to a window displaying a temporary buffer.
881 It can also be a function which will be called with the object corresponding
882 to the buffer to be displayed as argument and should return an integer
884 :type '(choice integer function)
888 (define-minor-mode temp-buffer-resize-mode
889 "Toggle the mode which makes windows smaller for temporary buffers.
890 With prefix argument ARG, turn the resizing of windows displaying temporary
891 buffers on if ARG is positive or off otherwise.
892 This makes the window the right height for its contents, but never
893 more than `temp-buffer-max-height' nor less than `window-min-height'.
894 This applies to `help', `apropos' and `completion' buffers, and some others."
895 :global t :group 'help
896 (if temp-buffer-resize-mode
897 ;; `help-make-xrefs' may add a `back' button and thus increase the
898 ;; text size, so `resize-temp-buffer-window' must be run *after* it.
899 (add-hook 'temp-buffer-show-hook 'resize-temp-buffer-window 'append)
900 (remove-hook 'temp-buffer-show-hook 'resize-temp-buffer-window)))
902 (defun resize-temp-buffer-window ()
903 "Resize the current window to fit its contents.
904 Will not make it higher than `temp-buffer-max-height' nor smaller than
905 `window-min-height'. Do nothing if it is the only window on its frame, if it
906 is not as wide as the frame or if some of the window's contents are scrolled
908 (unless (or (one-window-p 'nomini)
909 (not (pos-visible-in-window-p (point-min)))
910 (/= (frame-width) (window-width)))
911 (fit-window-to-buffer
913 (if (functionp temp-buffer-max-height)
914 (funcall temp-buffer-max-height (current-buffer))
915 temp-buffer-max-height))))
917 ;; Provide this for the sake of define-minor-mode which generates
918 ;; defcustoms which require 'help'.
921 ;; arch-tag: cf427352-27e9-49b7-9a6f-741ebab02423
922 ;;; help.el ends here