Add "Package:" file headers to denote built-in packages.
[emacs.git] / lisp / emacs-lisp / helper.el
blob6a5974293289c93855e1d5e6257b02f1d6775f9f
1 ;;; helper.el --- utility help package supporting help in electric modes
3 ;; Copyright (C) 1985, 2001, 2002, 2003, 2004, 2005,
4 ;; 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
6 ;; Author: K. Shane Hartman
7 ;; Maintainer: FSF
8 ;; Keywords: help
9 ;; Package: emacs
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
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.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;;; Commentary:
28 ;;; Code:
30 ;; hey, here's a helping hand.
32 ;; Bind this to a string for <blank> in "... Other keys <blank>".
33 ;; Helper-help uses this to construct help string when scrolling.
34 ;; Defaults to "return"
35 (defvar Helper-return-blurb nil)
37 ;; Keymap implementation doesn't work too well for non-standard loops.
38 ;; But define it anyway for those who can use it. Non-standard loops
39 ;; will probably have to use Helper-help. You can't autoload the
40 ;; keymap either.
43 (defvar Helper-help-map nil)
44 (if Helper-help-map
45 nil
46 (setq Helper-help-map (make-keymap))
47 ;(fillarray Helper-help-map 'undefined)
48 (define-key Helper-help-map "m" 'Helper-describe-mode)
49 (define-key Helper-help-map "b" 'Helper-describe-bindings)
50 (define-key Helper-help-map "c" 'Helper-describe-key-briefly)
51 (define-key Helper-help-map "k" 'Helper-describe-key)
52 ;(define-key Helper-help-map "f" 'Helper-describe-function)
53 ;(define-key Helper-help-map "v" 'Helper-describe-variable)
54 (define-key Helper-help-map "?" 'Helper-help-options)
55 (define-key Helper-help-map (char-to-string help-char) 'Helper-help-options)
56 (fset 'Helper-help-map Helper-help-map))
58 (defun Helper-help-scroller ()
59 (let ((blurb (or (and (boundp 'Helper-return-blurb)
60 Helper-return-blurb)
61 "return")))
62 (save-window-excursion
63 (goto-char (window-start (selected-window)))
64 (if (get-buffer-window "*Help*")
65 (pop-to-buffer "*Help*")
66 (switch-to-buffer "*Help*"))
67 (goto-char (point-min))
68 (let ((continue t) state)
69 (while continue
70 (setq state (+ (* 2 (if (pos-visible-in-window-p (point-max)) 1 0))
71 (if (pos-visible-in-window-p (point-min)) 1 0)))
72 (message
73 (nth state
74 '("Space forward, Delete back. Other keys %s"
75 "Space scrolls forward. Other keys %s"
76 "Delete scrolls back. Other keys %s"
77 "Type anything to %s"))
78 blurb)
79 (setq continue (read-event))
80 (cond ((and (memq continue '(?\s ?\C-v)) (< state 2))
81 (scroll-up))
82 ((= continue ?\C-l)
83 (recenter))
84 ((and (= continue ?\177) (zerop (% state 2)))
85 (scroll-down))
86 (t (setq continue nil))))))))
88 (defun Helper-help-options ()
89 "Describe help options."
90 (interactive)
91 (message "c (key briefly), m (mode), k (key), b (bindings)")
92 ;(message "c (key briefly), m (mode), k (key), v (variable), f (function)")
93 (sit-for 4))
95 (defun Helper-describe-key-briefly (key)
96 "Briefly describe binding of KEY."
97 (interactive "kDescribe key briefly: ")
98 (describe-key-briefly key)
99 (sit-for 4))
101 (defun Helper-describe-key (key)
102 "Describe binding of KEY."
103 (interactive "kDescribe key: ")
104 (save-window-excursion (describe-key key))
105 (Helper-help-scroller))
107 (defun Helper-describe-function ()
108 "Describe a function. Name read interactively."
109 (interactive)
110 (save-window-excursion (call-interactively 'describe-function))
111 (Helper-help-scroller))
113 (defun Helper-describe-variable ()
114 "Describe a variable. Name read interactively."
115 (interactive)
116 (save-window-excursion (call-interactively 'describe-variable))
117 (Helper-help-scroller))
119 (defun Helper-describe-mode ()
120 "Describe the current mode."
121 (interactive)
122 (let ((name (format-mode-line mode-name))
123 (documentation (documentation major-mode)))
124 (with-current-buffer (get-buffer-create "*Help*")
125 (setq buffer-read-only nil)
126 (erase-buffer)
127 (insert name " Mode\n" documentation)
128 (help-mode)))
129 (Helper-help-scroller))
131 ;;;###autoload
132 (defun Helper-describe-bindings ()
133 "Describe local key bindings of current mode."
134 (interactive)
135 (message "Making binding list...")
136 (save-window-excursion (describe-bindings))
137 (Helper-help-scroller))
139 ;;;###autoload
140 (defun Helper-help ()
141 "Provide help for current mode."
142 (interactive)
143 (let ((continue t) c)
144 (while continue
145 (message "Help (Type ? for further options)")
146 (setq c (read-key-sequence nil))
147 (setq c (lookup-key Helper-help-map c))
148 (cond ((eq c 'Helper-help-options)
149 (Helper-help-options))
150 ((commandp c)
151 (call-interactively c)
152 (setq continue nil))
154 (ding)
155 (setq continue nil))))))
157 (provide 'helper)
159 ;; arch-tag: a0984577-d3e9-4124-ae0d-c46fe740f6a9
160 ;;; helper.el ends here