* textmodes/ispell.el (ispell-check-version, ispell-send-string):
[bpt/emacs.git] / lisp / ehelp.el
CommitLineData
c0274f38
ER
1;;; ehelp.el --- bindings for electric-help mode
2
4aebd88f
GM
3;; Copyright (C) 1986, 1995, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
4;; 2007, 2008, 2009 Free Software Foundation, Inc.
3a801d0c 5
4aebd88f
GM
6;; Author: Richard Mlynarik
7;; (according to ack.texi and authors.el)
e5167999 8;; Maintainer: FSF
fd7fa35a 9;; Keywords: help, extensions
e5167999 10
a2535589
JA
11;; This file is part of GNU Emacs.
12
eb3fa2cf 13;; GNU Emacs is free software: you can redistribute it and/or modify
a2535589 14;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
15;; the Free Software Foundation, either version 3 of the License, or
16;; (at your option) any later version.
a2535589
JA
17
18;; GNU Emacs is distributed in the hope that it will be useful,
19;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21;; GNU General Public License for more details.
22
23;; You should have received a copy of the GNU General Public License
eb3fa2cf 24;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
a2535589 25
e41b2db1
ER
26;;; Commentary:
27
28;; This package provides a pre-packaged `Electric Help Mode' for
29;; browsing on-line help screens. There is one entry point,
9dd2b34e 30;; `with-electric-help'; all you have to give it is a no-argument
1b3250ab 31;; function that generates the actual text of the help into the current
e41b2db1
ER
32;; buffer.
33
bbe2ecf6
RS
34;; To make this the default, you must do
35;; (require 'ehelp)
36;; (define-key global-map "\C-h" 'ehelp-command)
37;; (define-key global-map [help] 'ehelp-command)
38;; (define-key global-map [f1] 'ehelp-command)
39
e5167999
ER
40;;; Code:
41
a2535589 42(require 'electric)
a2535589 43
db30b383
RS
44(defvar electric-help-form-to-execute nil)
45
d05c87ac
GM
46(defgroup electric-help ()
47 "Electric help facility."
48 :version "21.1"
49 :group 'help)
50
51(defcustom electric-help-shrink-window t
52 "If set, adjust help window sizes to buffer sizes when displaying help."
53 :type 'boolean
54 :group 'electric-help)
55
d1842b2b
GM
56(defcustom electric-help-mode-hook nil
57 "Hook run by `with-electric-help' after initializing the buffer."
58 :type 'hook
59 :group 'electric-help)
60
a2535589 61(put 'electric-help-undefined 'suppress-keymap t)
3fd29551
JB
62
63(defvar electric-help-map
a2535589 64 (let ((map (make-keymap)))
f98e758c
RS
65 ;; allow all non-self-inserting keys - search, scroll, etc, but
66 ;; let M-x and C-x exit ehelp mode and retain buffer:
e27ef4db 67 (suppress-keymap map)
f98e758c
RS
68 (define-key map "\C-u" 'electric-help-undefined)
69 (define-key map [?\C-0] 'electric-help-undefined)
70 (define-key map [?\C-1] 'electric-help-undefined)
71 (define-key map [?\C-2] 'electric-help-undefined)
72 (define-key map [?\C-3] 'electric-help-undefined)
73 (define-key map [?\C-4] 'electric-help-undefined)
74 (define-key map [?\C-5] 'electric-help-undefined)
75 (define-key map [?\C-6] 'electric-help-undefined)
76 (define-key map [?\C-7] 'electric-help-undefined)
77 (define-key map [?\C-8] 'electric-help-undefined)
78 (define-key map [?\C-9] 'electric-help-undefined)
a2535589
JA
79 (define-key map (char-to-string help-char) 'electric-help-help)
80 (define-key map "?" 'electric-help-help)
81 (define-key map " " 'scroll-up)
82 (define-key map "\^?" 'scroll-down)
83 (define-key map "." 'beginning-of-buffer)
84 (define-key map "<" 'beginning-of-buffer)
85 (define-key map ">" 'end-of-buffer)
86 ;(define-key map "\C-g" 'electric-help-exit)
a2535589 87 (define-key map "Q" 'electric-help-exit)
ad8d994c 88 (define-key map "q" 'electric-help-exit)
a2535589 89 ;;a better key than this?
e27ef4db 90 (define-key map "R" 'electric-help-retain)
ad8d994c 91 (define-key map "r" 'electric-help-retain)
f98e758c
RS
92 (define-key map "\ex" 'electric-help-execute-extended)
93 (define-key map "\C-x" 'electric-help-ctrl-x-prefix)
3fd29551
JB
94 map)
95 "Keymap defining commands available in `electric-help-mode'.")
f98e758c 96
a2535589 97(defun electric-help-mode ()
d5b9d1d8
JB
98 "`with-electric-help' temporarily places its buffer in this mode.
99\(On exit from `with-electric-help', the buffer is put in `default-major-mode'.)"
a2535589
JA
100 (setq buffer-read-only t)
101 (setq mode-name "Help")
102 (setq major-mode 'help)
103 (setq mode-line-buffer-identification '(" Help: %b"))
104 (use-local-map electric-help-map)
2e8174d2 105 (add-hook 'mouse-leave-buffer-hook 'electric-help-retain)
db30b383 106 (view-mode -1)
a2535589
JA
107 ;; this is done below in with-electric-help
108 ;(run-hooks 'electric-help-mode-hook)
109 )
110
9dd2b34e 111;;;###autoload
483a5ec0 112(defun with-electric-help (thunk &optional buffer noerase minheight)
bbe2ecf6 113 "Pop up an \"electric\" help buffer.
f98e758c
RS
114THUNK is a function of no arguments which is called to initialize the
115contents of BUFFER. BUFFER defaults to `*Help*'. BUFFER will be
116erased before THUNK is called unless NOERASE is non-nil. THUNK will
117be called while BUFFER is current and with `standard-output' bound to
bbe2ecf6
RS
118the buffer specified by BUFFER.
119
3fd29551
JB
120If THUNK returns nil, we display BUFFER starting at the top, and shrink
121the window to fit. If THUNK returns non-nil, we don't do those things.
a2535589 122
3fd29551
JB
123After THUNK has been called, this function \"electrically\" pops up a
124window in which BUFFER is displayed and allows the user to scroll
125through that buffer in `electric-help-mode'. The window's height will
126be at least MINHEIGHT if this value is non-nil.
f98e758c
RS
127
128If THUNK returns nil, we display BUFFER starting at the top, and
d05c87ac
GM
129shrink the window to fit if `electric-help-shrink-window' is non-nil.
130If THUNK returns non-nil, we don't do those things.
f98e758c 131
f55e4a7e
EZ
132When the user exits (with `electric-help-exit', or otherwise), the help
133buffer's window disappears (i.e., we use `save-window-excursion'), and
24501f03 134BUFFER is put into `default-major-mode' (or `fundamental-mode')."
a2535589
JA
135 (setq buffer (get-buffer-create (or buffer "*Help*")))
136 (let ((one (one-window-p t))
88c269cb 137 (config (current-window-configuration))
f98e758c 138 (bury nil)
db30b383 139 (electric-help-form-to-execute nil))
88c269cb 140 (unwind-protect
141 (save-excursion
d05c87ac
GM
142 (when one
143 (goto-char (window-start (selected-window))))
88c269cb 144 (let ((pop-up-windows t))
145 (pop-to-buffer buffer))
146 (save-excursion
147 (set-buffer buffer)
d05c87ac
GM
148 (when (and minheight (< (window-height) minheight))
149 (enlarge-window (- minheight (window-height))))
88c269cb 150 (electric-help-mode)
e024a2f4 151 (setq buffer-read-only nil)
d05c87ac
GM
152 (unless noerase
153 (erase-buffer)))
88c269cb 154 (let ((standard-output buffer))
d05c87ac
GM
155 (unless (funcall thunk)
156 (set-buffer buffer)
157 (set-buffer-modified-p nil)
158 (goto-char (point-min))
159 (when (and one electric-help-shrink-window)
160 (shrink-window-if-larger-than-buffer))))
88c269cb 161 (set-buffer buffer)
162 (run-hooks 'electric-help-mode-hook)
e024a2f4 163 (setq buffer-read-only t)
d05c87ac 164 (if (eq (car-safe (electric-help-command-loop)) 'retain)
88c269cb 165 (setq config (current-window-configuration))
d05c87ac 166 (setq bury t))
9201fa06 167 ;; Remove the hook.
d05c87ac
GM
168 (when (memq 'electric-help-retain mouse-leave-buffer-hook)
169 (remove-hook 'mouse-leave-buffer-hook 'electric-help-retain)))
88c269cb 170 (message "")
171 (set-buffer buffer)
172 (setq buffer-read-only nil)
d05c87ac
GM
173
174 ;; We should really get a usable *Help* buffer when retaining
175 ;; the electric one with `r'. The problem is that a simple
f55e4a7e 176 ;; call to help-mode won't cut it; at least RET is bound wrong
d05c87ac
GM
177 ;; afterwards. It's also not clear that `help-mode' is always
178 ;; the right thing, maybe we should add an optional parameter.
88c269cb 179 (condition-case ()
180 (funcall (or default-major-mode 'fundamental-mode))
181 (error nil))
71296446 182
88c269cb 183 (set-window-configuration config)
d05c87ac 184 (when bury
f55e4a7e 185 ;;>> Perhaps this shouldn't be done,
d05c87ac
GM
186 ;; so that when we say "Press space to bury" we mean it
187 (replace-buffer-in-windows buffer)
188 ;; must do this outside of save-window-excursion
189 (bury-buffer buffer))
db30b383 190 (eval electric-help-form-to-execute))))
a2535589
JA
191
192(defun electric-help-command-loop ()
193 (catch 'exit
194 (if (pos-visible-in-window-p (point-max))
7bccdfbc 195 (progn (message "%s" (substitute-command-keys "<<< Press Space to bury the help buffer, Press \\[electric-help-retain] to retain it >>>"))
70447f8c 196 (if (equal (setq unread-command-events (list (read-event)))
3d5b307e 197 '(?\s))
dbc4e1c1 198 (progn (setq unread-command-events nil)
a2535589
JA
199 (throw 'exit t)))))
200 (let (up down both neither
e0db3d3f 201 (standard (and (eq (key-binding " " nil t)
a2535589 202 'scroll-up)
e0db3d3f 203 (eq (key-binding "\^?" nil t)
a2535589 204 'scroll-down)
e0db3d3f 205 (eq (key-binding "q" nil t)
e27ef4db 206 'electric-help-exit)
e0db3d3f 207 (eq (key-binding "r" nil t)
e27ef4db 208 'electric-help-retain))))
a2535589
JA
209 (Electric-command-loop
210 'exit
211 (function (lambda ()
71296446
JB
212 (sit-for 0) ;necessary if last command was end-of-buffer or
213 ;beginning-of-buffer - otherwise pos-visible-in-window-p
f98e758c 214 ;will yield a wrong result.
a2535589 215 (let ((min (pos-visible-in-window-p (point-min)))
1d4c1257 216 (max (pos-visible-in-window-p (1- (point-max)))))
f98e758c
RS
217 (cond (isearch-mode 'noprompt)
218 ((and min max)
e27ef4db 219 (cond (standard "Press q to exit, r to retain ")
a2535589 220 (neither)
e27ef4db 221 (t (setq neither (substitute-command-keys "Press \\[electric-help-exit] to exit, \\[electric-help-retain] to retain ")))))
a2535589 222 (min
e27ef4db 223 (cond (standard "Press SPC to scroll, q to exit, r to retain ")
a2535589 224 (up)
e27ef4db 225 (t (setq up (substitute-command-keys "Press \\[scroll-up] to scroll, \\[electric-help-exit] to exit, \\[electric-help-retain] to retain ")))))
a2535589 226 (max
f98e758c 227 (cond (standard "Press DEL to scroll back, q to exit, r to retain ")
a2535589 228 (down)
e27ef4db 229 (t (setq down (substitute-command-keys "Press \\[scroll-down] to scroll back, \\[electric-help-exit] to exit, \\[electric-help-retain] to retain ")))))
a2535589 230 (t
f98e758c 231 (cond (standard "Press SPC to scroll, DEL to scroll back, q to exit, r to retain ")
a2535589 232 (both)
e27ef4db 233 (t (setq both (substitute-command-keys "Press \\[scroll-up] to scroll, \\[scroll-down] to scroll back, \\[electric-help-exit] to exit, \\[electric-help-retain] to retain ")))))))))
a2535589
JA
234 t))))
235
236
237\f
238;(defun electric-help-scroll-up (arg)
239; ">>>Doc"
240; (interactive "P")
241; (if (and (null arg) (pos-visible-in-window-p (point-max)))
242; (electric-help-exit)
243; (scroll-up arg)))
244
245(defun electric-help-exit ()
24501f03 246 "Exit `with-electric-help', restoring the previous window/buffer configuration.
9201fa06 247\(The *Help* buffer will be buried.)"
a2535589 248 (interactive)
9201fa06
RS
249 ;; Make sure that we don't throw twice, even if two events cause
250 ;; calling this function:
251 (if (memq 'electric-help-retain mouse-leave-buffer-hook)
252 (progn
253 (remove-hook 'mouse-leave-buffer-hook 'electric-help-retain)
254 (throw 'exit t))))
a2535589
JA
255
256(defun electric-help-retain ()
24501f03 257 "Exit `with-electric-help', retaining the current window/buffer configuration.
a2535589
JA
258\(The *Help* buffer will not be selected, but \\[switch-to-buffer-other-window] RET
259will select it.)"
260 (interactive)
f98e758c
RS
261 ;; Make sure that we don't throw twice, even if two events cause
262 ;; calling this function:
2e8174d2
RS
263 (if (memq 'electric-help-retain mouse-leave-buffer-hook)
264 (progn
265 (remove-hook 'mouse-leave-buffer-hook 'electric-help-retain)
266 (throw 'exit '(retain)))))
a2535589
JA
267
268
a2535589
JA
269(defun electric-help-undefined ()
270 (interactive)
271 (error "%s is undefined -- Press %s to exit"
272 (mapconcat 'single-key-description (this-command-keys) " ")
e0db3d3f 273 (if (eq (key-binding "q" nil t) 'electric-help-exit)
f98e758c 274 "q"
a2535589
JA
275 (substitute-command-keys "\\[electric-help-exit]"))))
276
277
278;>>> this needs to be hairified (recursive help, anybody?)
279(defun electric-help-help ()
280 (interactive)
e0db3d3f
JB
281 (if (and (eq (key-binding "q" nil t) 'electric-help-exit)
282 (eq (key-binding " " nil t) 'scroll-up)
283 (eq (key-binding "\^?" nil t) 'scroll-down)
284 (eq (key-binding "r" nil t) 'electric-help-retain))
e27ef4db
RS
285 (message "SPC scrolls up, DEL scrolls down, q exits burying help buffer, r exits")
286 (message "%s" (substitute-command-keys "\\[scroll-up] scrolls up, \\[scroll-down] scrolls down, \\[electric-help-exit] exits burying help buffer, \\[electric-help-retain] exits")))
a2535589
JA
287 (sit-for 2))
288
289\f
9dd2b34e 290;;;###autoload
1676b298
RS
291(defun electric-helpify (fun &optional name)
292 (let ((name (or name "*Help*")))
a2535589
JA
293 (if (save-window-excursion
294 ;; kludge-o-rama
d5d105e8 295 (let* ((p (symbol-function 'help-print-return-message))
a2535589
JA
296 (b (get-buffer name))
297 (m (buffer-modified-p b)))
298 (and b (not (get-buffer-window b))
299 (setq b nil))
300 (unwind-protect
301 (progn
302 (message "%s..." (capitalize (symbol-name fun)))
303 ;; with-output-to-temp-buffer marks the buffer as unmodified.
304 ;; kludging excessively and relying on that as some sort
305 ;; of indication leads to the following abomination...
306 ;;>> This would be doable without such icky kludges if either
307 ;;>> (a) there were a function to read the interactive
308 ;;>> args for a command and return a list of those args.
309 ;;>> (To which one would then just apply the command)
310 ;;>> (The only problem with this is that interactive-p
311 ;;>> would break, but that is such a misfeature in
312 ;;>> any case that I don't care)
313 ;;>> It is easy to do this for emacs-lisp functions;
314 ;;>> the only problem is getting the interactive spec
315 ;;>> for subrs
316 ;;>> (b) there were a function which returned a
317 ;;>> modification-tick for a buffer. One could tell
318 ;;>> whether a buffer had changed by whether the
319 ;;>> modification-tick were different.
320 ;;>> (Presumably there would have to be a way to either
321 ;;>> restore the tick to some previous value, or to
322 ;;>> suspend updating of the tick in order to allow
323 ;;>> things like momentary-string-display)
324 (and b
325 (save-excursion
326 (set-buffer b)
327 (set-buffer-modified-p t)))
d5d105e8 328 (fset 'help-print-return-message 'ignore)
a2535589
JA
329 (call-interactively fun)
330 (and (get-buffer name)
331 (get-buffer-window (get-buffer name))
332 (or (not b)
333 (not (eq b (get-buffer name)))
334 (not (buffer-modified-p b)))))
d5d105e8 335 (fset 'help-print-return-message p)
a2535589
JA
336 (and b (buffer-name b)
337 (save-excursion
338 (set-buffer b)
339 (set-buffer-modified-p m))))))
340 (with-electric-help 'ignore name t))))
341
342\f
f98e758c 343
71296446 344;; This is to be bound to M-x in ehelp mode. Retains ehelp buffer and then
f98e758c
RS
345;; continues with execute-extended-command.
346(defun electric-help-execute-extended (prefixarg)
347 (interactive "p")
db30b383 348 (setq electric-help-form-to-execute '(execute-extended-command nil))
f98e758c
RS
349 (electric-help-retain))
350
351;; This is to be buond to C-x in ehelp mode. Retains ehelp buffer and then
352;; continues with ctrl-x prefix.
353(defun electric-help-ctrl-x-prefix (prefixarg)
354 (interactive "p")
db30b383 355 (setq electric-help-form-to-execute '(progn (message nil) (setq unread-command-char ?\C-x)))
f98e758c
RS
356 (electric-help-retain))
357
358\f
a2535589
JA
359(defun electric-describe-key ()
360 (interactive)
361 (electric-helpify 'describe-key))
362
363(defun electric-describe-mode ()
364 (interactive)
365 (electric-helpify 'describe-mode))
366
367(defun electric-view-lossage ()
368 (interactive)
369 (electric-helpify 'view-lossage))
370
371;(defun electric-help-for-help ()
372; "See help-for-help"
373; (interactive)
374; )
375
376(defun electric-describe-function ()
377 (interactive)
378 (electric-helpify 'describe-function))
379
380(defun electric-describe-variable ()
381 (interactive)
382 (electric-helpify 'describe-variable))
383
384(defun electric-describe-bindings ()
385 (interactive)
386 (electric-helpify 'describe-bindings))
387
388(defun electric-describe-syntax ()
389 (interactive)
390 (electric-helpify 'describe-syntax))
391
392(defun electric-command-apropos ()
393 (interactive)
1676b298 394 (electric-helpify 'command-apropos "*Apropos*"))
a2535589
JA
395
396;(define-key help-map "a" 'electric-command-apropos)
397
e27ef4db
RS
398(defun electric-apropos ()
399 (interactive)
400 (electric-helpify 'apropos))
a2535589 401
a2535589
JA
402\f
403;;;; ehelp-map
404
3fd29551 405(defvar ehelp-map
71296446 406 (let ((map (copy-keymap help-map)))
f98e758c 407 (substitute-key-definition 'apropos 'electric-apropos map)
e27ef4db 408 (substitute-key-definition 'command-apropos 'electric-command-apropos map)
a2535589
JA
409 (substitute-key-definition 'describe-key 'electric-describe-key map)
410 (substitute-key-definition 'describe-mode 'electric-describe-mode map)
411 (substitute-key-definition 'view-lossage 'electric-view-lossage map)
412 (substitute-key-definition 'describe-function 'electric-describe-function map)
413 (substitute-key-definition 'describe-variable 'electric-describe-variable map)
414 (substitute-key-definition 'describe-bindings 'electric-describe-bindings map)
415 (substitute-key-definition 'describe-syntax 'electric-describe-syntax map)
3fd29551 416 map))
6e5cbb63
RS
417
418;;;###(autoload 'ehelp-command "ehelp" "Prefix command for ehelp." t 'keymap)
419(defalias 'ehelp-command ehelp-map)
420(put 'ehelp-command 'documentation "Prefix command for ehelp.")
a2535589 421
71296446 422(provide 'ehelp)
49116ac0 423
cbee283d 424;; arch-tag: e0e3037f-42c0-433e-ba18-322c5d951f46
c0274f38 425;;; ehelp.el ends here