* scroll-bar.el (toggle-scroll-bar, scroll-bar-mode): Have
[bpt/emacs.git] / lisp / emacs-lisp / eldoc.el
CommitLineData
1b09702a
NF
1;;; eldoc.el --- show function arglist or variable docstring in echo area
2
03a9c6d0 3;; Copyright (C) 1996, 97, 98, 99, 2000 Free Software Foundation, Inc.
1b09702a 4
44faf981
NF
5;; Author: Noah Friedman <friedman@splode.com>
6;; Maintainer: friedman@splode.com
1b09702a 7;; Keywords: extensions
1b09702a
NF
8;; Created: 1995-10-06
9
a2dff4d3 10;; $Id: eldoc.el,v 1.20 2002/01/08 23:57:30 rms Exp $
1b09702a 11
332ae8db 12;; This file is part of GNU Emacs.
1b09702a 13
332ae8db 14;; GNU Emacs is free software; you can redistribute it and/or modify
1b09702a
NF
15;; it under the terms of the GNU General Public License as published by
16;; the Free Software Foundation; either version 2, or (at your option)
17;; any later version.
332ae8db
NF
18
19;; GNU Emacs is distributed in the hope that it will be useful,
1b09702a
NF
20;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22;; GNU General Public License for more details.
332ae8db 23
1b09702a 24;; You should have received a copy of the GNU General Public License
332ae8db
NF
25;; along with GNU Emacs; see the file COPYING. If not, write to the
26;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
27;; Boston, MA 02111-1307, USA.
1b09702a
NF
28
29;;; Commentary:
30
332ae8db
NF
31;; This program was inspired by the behavior of the "mouse documentation
32;; window" on many Lisp Machine systems; as you type a function's symbol
33;; name as part of a sexp, it will print the argument list for that
34;; function. Behavior is not identical; for example, you need not actually
35;; type the function name, you need only move point around in a sexp that
36;; calls it. Also, if point is over a documented variable, it will print
37;; the one-line documentation for that variable instead, to remind you of
38;; that variable's meaning.
1b09702a
NF
39
40;; One useful way to enable this minor mode is to put the following in your
41;; .emacs:
42;;
43;; (autoload 'turn-on-eldoc-mode "eldoc" nil t)
44;; (add-hook 'emacs-lisp-mode-hook 'turn-on-eldoc-mode)
45;; (add-hook 'lisp-interaction-mode-hook 'turn-on-eldoc-mode)
4fa07364 46;; (add-hook 'ielm-mode-hook 'turn-on-eldoc-mode)
1b09702a
NF
47
48;;; Code:
49
a2dff4d3
SM
50(require 'help-fns) ;For fundoc-usage handling functions.
51
332ae8db 52;; Use idle timers if available in the version of emacs running.
03a9c6d0
NF
53;; Please don't change this to use `require'; this package works
54;; as-is in XEmacs 19.14 and later and I am striving to maintain
55;; compatibility between emacs variants.
332ae8db
NF
56(or (featurep 'timer)
57 (load "timer" t))
58
a326c090
RS
59(defgroup eldoc nil
60 "Show function arglist or variable docstring in echo area."
03a9c6d0 61 :group 'lisp
a326c090
RS
62 :group 'extensions)
63
a326c090 64(defcustom eldoc-idle-delay 0.50
1b09702a
NF
65 "*Number of seconds of idle time to wait before printing.
66If user input arrives before this interval of time has elapsed after the
67last input, no documentation will be printed.
68
a326c090
RS
69If this variable is set to 0, no idle time is required."
70 :type 'number
71 :group 'eldoc)
1b09702a 72
03a9c6d0 73;;;###autoload
a326c090 74(defcustom eldoc-minor-mode-string " ElDoc"
e3b2eba1
RS
75 "*String to display in mode line when Eldoc Mode is enabled; nil for none."
76 :type '(choice string (const :tag "None" nil))
a326c090 77 :group 'eldoc)
332ae8db 78
a326c090 79(defcustom eldoc-argument-case 'upcase
1b09702a
NF
80 "Case to display argument names of functions, as a symbol.
81This has two preferred values: `upcase' or `downcase'.
82Actually, any name of a function which takes a string as an argument and
a326c090 83returns another string is acceptable."
03a9c6d0
NF
84 :type '(radio (function-item upcase)
85 (function-item downcase)
86 function)
a326c090 87 :group 'eldoc)
1b09702a 88
03a9c6d0
NF
89(defcustom eldoc-echo-area-use-multiline-p 'truncate-sym-name-if-fit
90 "*Allow long eldoc messages to resize echo area display.
91If value is `t', never attempt to truncate messages; complete symbol name
92and function arglist or 1-line variable documentation will be displayed
93even if echo area must be resized to fit.
94
95If value is any non-nil value other than `t', symbol name may be truncated
96if it will enable the function arglist or documentation string to fit on a
97single line without resizing window. Otherwise, behavior is just like
98former case.
99
100If value is nil, messages are always truncated to fit in a single line of
101display in the echo area. Function or variable symbol name may be
102truncated to make more of the arglist or documentation string visible.
103
104Non-nil values for this variable have no effect unless
105`eldoc-echo-area-multiline-supported-p' is non-nil."
106 :type '(radio (const :tag "Always" t)
107 (const :tag "Never" nil)
108 (const :tag "Yes, but truncate symbol names if it will\
109 enable argument list to fit on one line" truncate-sym-name-if-fit))
110 :group 'eldoc)
111
112;;; No user options below here.
113
114;; Non-nil if this version of emacs supports dynamically resizable echo areas.
115(defvar eldoc-echo-area-multiline-supported-p
116 (and (string-lessp "21" emacs-version)
117 (save-match-data
118 (numberp (string-match "^GNU Emacs" (emacs-version))))))
9d497c01 119
c1286376
NF
120;; Commands after which it is appropriate to print in the echo area.
121;; Eldoc does not try to print function arglists, etc. after just any command,
122;; because some commands print their own messages in the echo area and these
123;; functions would instantly overwrite them. But self-insert-command as well
124;; as most motion commands are good candidates.
125;; This variable contains an obarray of symbols; do not manipulate it
126;; directly. Instead, use `eldoc-add-command' and `eldoc-remove-command'.
127(defvar eldoc-message-commands nil)
1b09702a 128
9d497c01
NF
129;; This is used by eldoc-add-command to initialize eldoc-message-commands
130;; as an obarray.
c1286376
NF
131;; It should probably never be necessary to do so, but if you
132;; choose to increase the number of buckets, you must do so before loading
133;; this file since the obarray is initialized at load time.
134;; Remember to keep it a prime number to improve hash performance.
135(defvar eldoc-message-commands-table-size 31)
1b09702a 136
44faf981
NF
137;; Bookkeeping; elements are as follows:
138;; 0 - contains the last symbol read from the buffer.
139;; 1 - contains the string last displayed in the echo area for that
140;; symbol, so it can be printed again if necessary without reconsing.
141;; 2 - 'function if function args, 'variable if variable documentation.
142(defvar eldoc-last-data (make-vector 3 nil))
9d497c01 143(defvar eldoc-last-message nil)
1b09702a 144
332ae8db 145;; Idle timers are supported in Emacs 19.31 and later.
c1286376 146(defvar eldoc-use-idle-timer-p (fboundp 'run-with-idle-timer))
bd3e1759 147
332ae8db
NF
148;; eldoc's timer object, if using idle timers
149(defvar eldoc-timer nil)
150
151;; idle time delay currently in use by timer.
152;; This is used to determine if eldoc-idle-delay is changed by the user.
153(defvar eldoc-current-idle-delay eldoc-idle-delay)
1b09702a
NF
154
155\f
156;;;###autoload
95193cc5
SM
157(define-minor-mode eldoc-mode
158 "Toggle ElDoc mode on or off.
159Show the defined parameters for the elisp function near point.
160
161For the emacs lisp function at the beginning of the sexp which point is
162within, show the defined parameters for the function in the echo area.
163This information is extracted directly from the function or macro if it is
164in pure lisp. If the emacs function is a subr, the parameters are obtained
165from the documentation string if possible.
166
167If point is over a documented variable, print that variable's docstring
168instead.
169
170With prefix ARG, turn ElDoc mode on if and only if ARG is positive."
171 nil eldoc-minor-mode-string nil
9d497c01 172 (setq eldoc-last-message nil)
332ae8db 173 (cond (eldoc-use-idle-timer-p
9d497c01
NF
174 (add-hook 'post-command-hook 'eldoc-schedule-timer)
175 (add-hook 'pre-command-hook 'eldoc-pre-command-refresh-echo-area))
332ae8db
NF
176 (t
177 ;; Use post-command-idle-hook if defined, otherwise use
178 ;; post-command-hook. The former is only proper to use in Emacs
179 ;; 19.30; that is the first version in which it appeared, but it
180 ;; was obsolesced by idle timers in Emacs 19.31.
181 (add-hook (if (boundp 'post-command-idle-hook)
03a9c6d0
NF
182 'post-command-idle-hook
183 'post-command-hook)
184 'eldoc-print-current-symbol-info t t)
9d497c01
NF
185 ;; quick and dirty hack for seeing if this is XEmacs
186 (and (fboundp 'display-message)
187 (add-hook 'pre-command-hook
95193cc5 188 'eldoc-pre-command-refresh-echo-area t t)))))
1b09702a
NF
189
190;;;###autoload
191(defun turn-on-eldoc-mode ()
192 "Unequivocally turn on eldoc-mode (see variable documentation)."
193 (interactive)
194 (eldoc-mode 1))
195
44faf981 196\f
332ae8db
NF
197;; Idle timers are part of Emacs 19.31 and later.
198(defun eldoc-schedule-timer ()
199 (or (and eldoc-timer
200 (memq eldoc-timer timer-idle-list))
201 (setq eldoc-timer
202 (run-with-idle-timer eldoc-idle-delay t
203 'eldoc-print-current-symbol-info)))
204
205 ;; If user has changed the idle delay, update the timer.
206 (cond ((not (= eldoc-idle-delay eldoc-current-idle-delay))
207 (setq eldoc-current-idle-delay eldoc-idle-delay)
208 (timer-set-idle-time eldoc-timer eldoc-idle-delay t))))
209
9d497c01
NF
210(defun eldoc-message (&rest args)
211 (let ((omessage eldoc-last-message))
212 (cond ((eq (car args) eldoc-last-message))
213 ((or (null args)
214 (null (car args)))
215 (setq eldoc-last-message nil))
44faf981
NF
216 ;; If only one arg, no formatting to do so put it in
217 ;; eldoc-last-message so eq test above might succeed on
218 ;; subsequent calls.
219 ((null (cdr args))
220 (setq eldoc-last-message (car args)))
9d497c01
NF
221 (t
222 (setq eldoc-last-message (apply 'format args))))
223 ;; In emacs 19.29 and later, and XEmacs 19.13 and later, all messages
224 ;; are recorded in a log. Do not put eldoc messages in that log since
225 ;; they are Legion.
44faf981
NF
226 (cond ((fboundp 'display-message)
227 ;; XEmacs 19.13 way of preventing log messages.
228 (cond (eldoc-last-message
229 (display-message 'no-log eldoc-last-message))
230 (omessage
231 (clear-message 'no-log))))
232 (t
233 ;; Emacs way of preventing log messages.
234 (let ((message-log-max nil))
235 (cond (eldoc-last-message
236 (message "%s" eldoc-last-message))
237 (omessage
238 (message nil)))))))
9d497c01
NF
239 eldoc-last-message)
240
44faf981
NF
241;; This function goes on pre-command-hook for XEmacs or when using idle
242;; timers in Emacs. Motion commands clear the echo area for some reason,
243;; which make eldoc messages flicker or disappear just before motion
244;; begins. This function reprints the last eldoc message immediately
245;; before the next command executes, which does away with the flicker.
246;; This doesn't seem to be required for Emacs 19.28 and earlier.
247(defun eldoc-pre-command-refresh-echo-area ()
248 (and eldoc-last-message
249 (if (eldoc-display-message-no-interference-p)
250 (eldoc-message eldoc-last-message)
251 (setq eldoc-last-message nil))))
4fa07364
NF
252
253;; Decide whether now is a good time to display a message.
254(defun eldoc-display-message-p ()
9d497c01 255 (and (eldoc-display-message-no-interference-p)
332ae8db 256 (cond (eldoc-use-idle-timer-p
4fa07364
NF
257 ;; If this-command is non-nil while running via an idle
258 ;; timer, we're still in the middle of executing a command,
259 ;; e.g. a query-replace where it would be annoying to
260 ;; overwrite the echo area.
261 (and (not this-command)
262 (symbolp last-command)
332ae8db
NF
263 (intern-soft (symbol-name last-command)
264 eldoc-message-commands)))
265 (t
266 ;; If we don't have idle timers, this function is
267 ;; running on post-command-hook directly; that means the
268 ;; user's last command is still on `this-command', and we
269 ;; must wait briefly for input to see whether to do display.
270 (and (symbolp this-command)
271 (intern-soft (symbol-name this-command)
272 eldoc-message-commands)
4fa07364 273 (sit-for eldoc-idle-delay))))))
1b09702a 274
03a9c6d0
NF
275;; Check various conditions about the current environment that might make
276;; it undesirable to print eldoc messages right this instant.
9d497c01
NF
277(defun eldoc-display-message-no-interference-p ()
278 (and eldoc-mode
279 (not executing-kbd-macro)
03a9c6d0 280 (not (and (boundp 'edebug-active) edebug-active))
9d497c01
NF
281 ;; Having this mode operate in an active minibuffer/echo area causes
282 ;; interference with what's going on there.
283 (not cursor-in-echo-area)
284 (not (eq (selected-window) (minibuffer-window)))))
285
44faf981
NF
286\f
287(defun eldoc-print-current-symbol-info ()
a2dff4d3
SM
288 (condition-case err
289 (and (eldoc-display-message-p)
290 (let* ((current-symbol (eldoc-current-symbol))
291 (current-fnsym (eldoc-fnsym-in-current-sexp))
292 (doc (cond
293 ((eq current-symbol current-fnsym)
294 (or (eldoc-get-fnsym-args-string current-fnsym)
295 (eldoc-get-var-docstring current-symbol)))
296 (t
297 (or (eldoc-get-var-docstring current-symbol)
298 (eldoc-get-fnsym-args-string current-fnsym))))))
299 (eldoc-message doc)))
300 ;; This is run from post-command-hook or some idle timer thing,
301 ;; so we need to be careful that errors aren't ignored.
302 (error (message "eldoc error: %s" err))))
44faf981
NF
303
304;; Return a string containing the function parameter list, or 1-line
305;; docstring if function is a subr and no arglist is obtainable from the
306;; docstring or elsewhere.
307(defun eldoc-get-fnsym-args-string (sym)
308 (let ((args nil)
309 (doc nil))
9d497c01
NF
310 (cond ((not (and sym
311 (symbolp sym)
1b09702a 312 (fboundp sym))))
44faf981
NF
313 ((and (eq sym (aref eldoc-last-data 0))
314 (eq 'function (aref eldoc-last-data 2)))
315 (setq doc (aref eldoc-last-data 1)))
a2dff4d3
SM
316 ((setq doc (help-split-fundoc (documentation sym t) sym))
317 (setq args (car doc))
318 (string-match "\\`[^ )]* ?" args)
319 (setq args (concat "(" (substring args (match-end 0)))))
1b09702a 320 (t
44faf981
NF
321 (setq args (eldoc-function-argstring sym))))
322 (cond (args
323 (setq doc (eldoc-docstring-format-sym-doc sym args))
324 (eldoc-last-data-store sym doc 'function)))
325 doc))
326
327;; Return a string containing a brief (one-line) documentation string for
328;; the variable.
329(defun eldoc-get-var-docstring (sym)
330 (cond ((and (eq sym (aref eldoc-last-data 0))
331 (eq 'variable (aref eldoc-last-data 2)))
332 (aref eldoc-last-data 1))
333 (t
334 (let ((doc (documentation-property sym 'variable-documentation t)))
335 (cond (doc
336 (setq doc (eldoc-docstring-format-sym-doc
337 sym (eldoc-docstring-first-line doc)))
338 (eldoc-last-data-store sym doc 'variable)))
339 doc))))
340
341(defun eldoc-last-data-store (symbol doc type)
342 (aset eldoc-last-data 0 symbol)
343 (aset eldoc-last-data 1 doc)
344 (aset eldoc-last-data 2 type))
345
346;; Note that any leading `*' in the docstring (which indicates the variable
347;; is a user option) is removed.
348(defun eldoc-docstring-first-line (doc)
349 (and (stringp doc)
350 (substitute-command-keys
351 (save-match-data
352 (let ((start (if (string-match "^\\*" doc) (match-end 0) 0)))
353 (cond ((string-match "\n" doc)
354 (substring doc start (match-beginning 0)))
355 ((zerop start) doc)
356 (t (substring doc start))))))))
357
358;; If the entire line cannot fit in the echo area, the symbol name may be
359;; truncated or eliminated entirely from the output to make room for the
360;; description.
361(defun eldoc-docstring-format-sym-doc (sym doc)
362 (save-match-data
363 (let* ((name (symbol-name sym))
03a9c6d0
NF
364 (ea-multi (and eldoc-echo-area-multiline-supported-p
365 eldoc-echo-area-use-multiline-p))
366 ;; Subtract 1 from window width since emacs will not write
367 ;; any chars to the last column, or in later versions, will
368 ;; cause a wraparound and resize of the echo area.
369 (ea-width (1- (window-width (minibuffer-window))))
370 (strip (- (+ (length name) (length ": ") (length doc)) ea-width)))
371 (cond ((or (<= strip 0)
372 (eq ea-multi t)
373 (and ea-multi (> (length doc) ea-width)))
374 (format "%s: %s" sym doc))
375 ((> (length doc) ea-width)
376 (substring (format "%s" doc) 0 ea-width))
377 ((>= strip (length name))
378 (format "%s" doc))
44faf981 379 (t
03a9c6d0
NF
380 ;; Show the end of the partial symbol name, rather
381 ;; than the beginning, since the former is more likely
382 ;; to be unique given package namespace conventions.
383 (setq name (substring name strip))
384 (format "%s: %s" name doc))))))
1b09702a 385
44faf981 386\f
1b09702a 387(defun eldoc-fnsym-in-current-sexp ()
9d497c01
NF
388 (let ((p (point)))
389 (eldoc-beginning-of-sexp)
390 (prog1
391 ;; Don't do anything if current word is inside a string.
392 (if (= (or (char-after (1- (point))) 0) ?\")
393 nil
394 (eldoc-current-symbol))
395 (goto-char p))))
396
397(defun eldoc-beginning-of-sexp ()
398 (let ((parse-sexp-ignore-comments t))
399 (condition-case err
400 (while (progn
401 (forward-sexp -1)
a2dff4d3 402 (or (= (char-before) ?\")
9d497c01
NF
403 (> (point) (point-min)))))
404 (error nil))))
405
406;; returns nil unless current word is an interned symbol.
407(defun eldoc-current-symbol ()
408 (let ((c (char-after (point))))
409 (and c
410 (memq (char-syntax c) '(?w ?_))
411 (intern-soft (current-word)))))
412
413;; Do indirect function resolution if possible.
414(defun eldoc-symbol-function (fsym)
415 (let ((defn (and (fboundp fsym)
416 (symbol-function fsym))))
417 (and (symbolp defn)
418 (condition-case err
419 (setq defn (indirect-function fsym))
420 (error (setq defn nil))))
421 defn))
1b09702a 422
03a9c6d0 423(defun eldoc-function-argstring (fn)
a2dff4d3 424 (eldoc-function-argstring-format (help-function-arglist fn)))
1b09702a 425
332ae8db
NF
426(defun eldoc-function-argstring-format (arglist)
427 (cond ((not (listp arglist))
428 (setq arglist nil))
429 ((symbolp (car arglist))
430 (setq arglist
431 (mapcar (function (lambda (s)
432 (if (memq s '(&optional &rest))
433 (symbol-name s)
434 (funcall eldoc-argument-case
435 (symbol-name s)))))
436 arglist)))
437 ((stringp (car arglist))
438 (setq arglist
439 (mapcar (function (lambda (s)
440 (if (member s '("&optional" "&rest"))
441 s
442 (funcall eldoc-argument-case s))))
443 arglist))))
444 (concat "(" (mapconcat 'identity arglist " ") ")"))
445
446\f
9d497c01
NF
447;; When point is in a sexp, the function args are not reprinted in the echo
448;; area after every possible interactive command because some of them print
449;; their own messages in the echo area; the eldoc functions would instantly
450;; overwrite them unless it is more restrained.
451;; These functions do display-command table management.
452
453(defun eldoc-add-command (&rest cmds)
454 (or eldoc-message-commands
455 (setq eldoc-message-commands
456 (make-vector eldoc-message-commands-table-size 0)))
457
458 (let (name sym)
459 (while cmds
460 (setq name (car cmds))
461 (setq cmds (cdr cmds))
462
463 (cond ((symbolp name)
464 (setq sym name)
465 (setq name (symbol-name sym)))
466 ((stringp name)
467 (setq sym (intern-soft name))))
468
469 (and (symbolp sym)
470 (fboundp sym)
471 (set (intern name eldoc-message-commands) t)))))
472
473(defun eldoc-add-command-completions (&rest names)
474 (while names
475 (apply 'eldoc-add-command
476 (all-completions (car names) obarray 'fboundp))
477 (setq names (cdr names))))
478
479(defun eldoc-remove-command (&rest cmds)
480 (let (name)
481 (while cmds
482 (setq name (car cmds))
483 (setq cmds (cdr cmds))
484
485 (and (symbolp name)
486 (setq name (symbol-name name)))
487
488 (if (fboundp 'unintern)
489 (unintern name eldoc-message-commands)
490 (let ((s (intern-soft name eldoc-message-commands)))
491 (and s
492 (makunbound s)))))))
493
494(defun eldoc-remove-command-completions (&rest names)
495 (while names
496 (apply 'eldoc-remove-command
497 (all-completions (car names) eldoc-message-commands))
498 (setq names (cdr names))))
499
44faf981 500\f
9d497c01
NF
501;; Prime the command list.
502(eldoc-add-command-completions
503 "backward-" "beginning-of-" "delete-other-windows" "delete-window"
c1286376
NF
504 "end-of-" "forward-" "indent-for-tab-command" "goto-" "mouse-set-point"
505 "next-" "other-window" "previous-" "recenter" "scroll-"
bc74e94e
NF
506 "self-insert-command" "split-window-"
507 "up-list" "down-list")
1b09702a
NF
508
509(provide 'eldoc)
510
511;;; eldoc.el ends here