89909
|
1 ;;; help-at-pt.el --- local help through the keyboard
|
|
2
|
|
3 ;; Copyright (C) 2003 Free Software Foundation, Inc.
|
|
4
|
|
5 ;; Author: Luc Teirlinck <teirllm@auburn.edu>
|
|
6 ;; Keywords: help
|
|
7
|
|
8 ;; This file is part of GNU Emacs.
|
|
9
|
|
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
11 ;; it under the terms of the GNU General Public License as published by
|
|
12 ;; the Free Software Foundation; either version 2, or (at your option)
|
|
13 ;; any later version.
|
|
14
|
|
15 ;; GNU Emacs is distributed in the hope that it will be useful,
|
|
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
18 ;; GNU General Public License for more details.
|
|
19
|
|
20 ;; You should have received a copy of the GNU General Public License
|
|
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
|
|
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
23 ;; Boston, MA 02111-1307, USA.
|
|
24
|
|
25 ;;; Commentary:
|
|
26
|
|
27 ;; This file contains functionality to make the help provided by the
|
|
28 ;; help-echo text or overlay property available to the keyboard user.
|
|
29 ;; It also supports a more keyboard oriented alternative to
|
|
30 ;; `help-echo', namely a new text or overlay property `kbd-help'.
|
|
31 ;;
|
|
32 ;; It provides facilities to access the local help available at point
|
|
33 ;; either on demand, using the command `display-local-help', or
|
|
34 ;; automatically after a suitable idle time, through the customizable
|
|
35 ;; variable `help-at-pt-display-when-idle'.
|
|
36 ;;
|
|
37 ;; You can get a more global overview of the local help available in
|
|
38 ;; the buffer, using the commands `scan-buf-next-region' and
|
|
39 ;; `scan-buf-previous-region', which move to the start of the next or
|
|
40 ;; previous region with available local help and print the help found
|
|
41 ;; there.
|
|
42 ;;
|
|
43 ;; Suggested key bindings:
|
|
44 ;;
|
|
45 ;; (global-set-key [C-tab] 'scan-buf-next-region)
|
|
46 ;; (global-set-key [C-M-tab] 'scan-buf-previous-region)
|
|
47 ;;
|
|
48 ;; You do not have to do anything special to use the functionality
|
|
49 ;; provided by this file, because all important functions autoload.
|
|
50
|
|
51 ;;; Code:
|
|
52
|
|
53 (defgroup help-at-pt nil
|
|
54 "Features for displaying local help."
|
|
55 :group 'help
|
|
56 :version "21.4")
|
|
57
|
|
58 ;;;###autoload
|
|
59 (defun help-at-pt-string (&optional kbd)
|
|
60 "Return the help-echo string at point.
|
|
61 Normally, the string produced by the `help-echo' text or overlay
|
|
62 property, or nil, is returned.
|
|
63 If KBD is non-nil, `kbd-help' is used instead, and any
|
|
64 `help-echo' property is ignored. In this case, the return value
|
|
65 can also be t, if that is the value of the `kbd-help' property."
|
|
66 (let* ((prop (if kbd 'kbd-help 'help-echo))
|
|
67 (pair (get-char-property-and-overlay (point) prop))
|
|
68 (val (car pair))
|
|
69 (ov (cdr pair)))
|
|
70 (if (functionp val)
|
|
71 (funcall val (selected-window) (if ov ov (current-buffer)) (point))
|
|
72 (eval val))))
|
|
73
|
|
74 ;;;###autoload
|
|
75 (defun help-at-pt-kbd-string ()
|
|
76 "Return the keyboard help string at point.
|
|
77 If the `kbd-help' text or overlay property at point produces a
|
|
78 string, return it. Otherwise, use the `help-echo' property. If
|
|
79 this produces no string either, return nil."
|
|
80 (let ((kbd (help-at-pt-string t))
|
|
81 (echo (help-at-pt-string)))
|
|
82 (if (and kbd (not (eq kbd t))) kbd echo)))
|
|
83
|
|
84 ;;;###autoload
|
|
85 (defun display-local-help (&optional arg)
|
|
86 "Display local help in the echo area.
|
|
87 This displays a short help message, namely the string produced by
|
|
88 the `kbd-help' property at point. If `kbd-help' does not produce
|
|
89 a string, but the `help-echo' property does, then that string is
|
|
90 printed instead.
|
|
91
|
|
92 A numeric argument ARG prevents display of a message in case
|
|
93 there is no help. While ARG can be used interactively, it is
|
|
94 mainly meant for use from Lisp."
|
|
95 (interactive "P")
|
|
96 (let ((help (help-at-pt-kbd-string)))
|
|
97 (if help
|
|
98 (message "%s" help)
|
|
99 (if (not arg) (message "No local help at point")))))
|
|
100
|
|
101 (defcustom help-at-pt-timer-delay 1
|
|
102 "*Delay before displaying local help.
|
|
103 This is used if `help-at-pt-display-when-idle' is enabled.
|
|
104 The value may be an integer or floating point number.
|
|
105
|
|
106 If a timer is already active, there are two ways to make the new
|
|
107 value take effect immediately. After setting the value, you can
|
|
108 first call `help-at-pt-cancel-timer' and then set a new timer
|
|
109 with `help-at-pt-set-timer'. Alternatively, you can set this
|
|
110 variable through Custom. This will not set a timer if none is
|
|
111 active, but if one is already active, Custom will make it use the
|
|
112 new value."
|
|
113 :group 'help-at-pt
|
|
114 :type 'number
|
|
115 :set (lambda (variable value)
|
|
116 (set-default variable value)
|
|
117 (when (and (boundp 'help-at-pt-timer) help-at-pt-timer)
|
|
118 (timer-set-idle-time help-at-pt-timer value t))))
|
|
119
|
|
120 (defvar help-at-pt-timer nil
|
|
121 "Non-nil means that a timer is set that checks for local help.
|
|
122 If non-nil, this is the value returned by the call of
|
|
123 `run-with-idle-timer' that set that timer. This variable is used
|
|
124 internally to enable `help-at-pt-display-when-idle'. Do not set it
|
|
125 yourself.")
|
|
126
|
|
127 ;;;###autoload
|
|
128 (defun help-at-pt-cancel-timer ()
|
|
129 "Cancel any timer set by `help-at-pt-set-timer'.
|
|
130 This disables `help-at-pt-display-when-idle'."
|
|
131 (interactive)
|
|
132 (let ((inhibit-quit t))
|
|
133 (when help-at-pt-timer
|
|
134 (cancel-timer help-at-pt-timer)
|
|
135 (setq help-at-pt-timer nil))))
|
|
136
|
|
137 ;;;###autoload
|
|
138 (defun help-at-pt-set-timer ()
|
|
139 "Enable `help-at-pt-display-when-idle'.
|
|
140 This is done by setting a timer, if none is currently active."
|
|
141 (interactive)
|
|
142 (unless help-at-pt-timer
|
|
143 (setq help-at-pt-timer
|
|
144 (run-with-idle-timer
|
|
145 help-at-pt-timer-delay t #'help-at-pt-maybe-display))))
|
|
146
|
|
147 ;;;###autoload
|
|
148 (defcustom help-at-pt-display-when-idle 'never
|
|
149 "*Automatically show local help on point-over.
|
|
150 If the value is t, the string obtained from any `kbd-help' or
|
|
151 `help-echo' property at point is automatically printed in the
|
|
152 echo area, if nothing else is already displayed there, or after a
|
|
153 quit. If both `kbd-help' and `help-echo' produce help strings,
|
|
154 `kbd-help' is used. If the value is a list, the help only gets
|
|
155 printed if there is a text or overlay property at point that is
|
|
156 included in this list. Suggested properties are `keymap',
|
|
157 `local-map', `button' and `kbd-help'. Any value other than t or
|
|
158 a non-empty list disables the feature.
|
|
159
|
|
160 This variable only takes effect after a call to
|
|
161 `help-at-pt-set-timer'. The help gets printed after Emacs has
|
|
162 been idle for `help-at-pt-timer-delay' seconds. You can call
|
|
163 `help-at-pt-cancel-timer' to cancel the timer set by, and the
|
|
164 effect of, `help-at-pt-set-timer'.
|
|
165
|
|
166 When this variable is set through Custom, `help-at-pt-set-timer'
|
|
167 is called automatically, unless the value is `never', in which
|
|
168 case `help-at-pt-cancel-timer' is called. Specifying an empty
|
|
169 list of properties through Custom will set the timer, thus
|
|
170 enabling buffer local values. It sets the actual value to nil.
|
|
171 Thus, Custom distinguishes between a nil value and other values
|
|
172 that disable the feature, which Custom identifies with `never'.
|
|
173 The default is `never'."
|
|
174 :group 'help-at-pt
|
|
175 :type '(choice (const :tag "Always"
|
|
176 :format "%t\n%h"
|
|
177 :doc
|
|
178 "This choice can get noisy.
|
|
179 The text printed from the `help-echo' property is often only
|
|
180 relevant when using the mouse. If you mind about too many
|
|
181 messages getting printed in the echo area, use \"In certain
|
|
182 situations\". See the documentation there for more information."
|
|
183 t)
|
|
184 (repeat :tag "In certain situations"
|
|
185 ;; unless we specify 0 offset the doc string
|
|
186 ;; for this choice gets indented very
|
|
187 ;; differently than for the other two
|
|
188 ;; choices, when "More" is selected.
|
|
189 :offset 0
|
|
190 :format "%{%t%}:\n%v%i\n%h"
|
|
191 :doc
|
|
192 "This choice lets you specify a list of \
|
|
193 text properties.
|
|
194 Presence of any of these properties will trigger display of
|
|
195 available local help on point-over.
|
|
196 If you use this alternative through Custom without listing any
|
|
197 properties, a timer will be set anyway. This will enable buffer
|
|
198 local values. Use \"Never\" if you do not want a timer to be set.
|
|
199
|
|
200 Suggested properties:
|
|
201 The `keymap' and `local-map' properties change keybindings in
|
|
202 parts of the buffer. Some of these keymaps are mode independent
|
|
203 and are not mentioned in the mode documentation. Hence, the help
|
|
204 text is likely to be useful.
|
|
205 Specifying `button' is relevant in Custom and similar buffers.
|
|
206 In these buffers, most, but not all, of the text shown this way is
|
|
207 available by default when using tab, but not on regular point-over.
|
|
208 The presence of a `kbd-help' property guarantees that non mouse
|
|
209 specific help is available."
|
|
210 :value (keymap local-map button kbd-help)
|
|
211 symbol)
|
|
212 (other :tag "Never"
|
|
213 :format "%t\n%h"
|
|
214 :doc
|
|
215 "This choice normally disables buffer local values.
|
|
216 If you choose this value through Custom and a timer checking for
|
|
217 local help is currently active, it will be canceled. No new
|
|
218 timer will be set. Call `help-at-pt-set-timer' after choosing
|
|
219 this option, or use \"In certain situations\" and specify no text
|
|
220 properties, to enable buffer local values."
|
|
221 never))
|
|
222 :initialize 'custom-initialize-default
|
|
223 :set #'(lambda (variable value)
|
|
224 (set-default variable value)
|
|
225 (if (eq value 'never)
|
|
226 (help-at-pt-cancel-timer)
|
|
227 (help-at-pt-set-timer)))
|
|
228 :set-after '(help-at-pt-timer-delay)
|
|
229 :require 'help-at-pt)
|
|
230
|
|
231 ;; Function for use in `help-at-pt-set-timer'.
|
|
232 (defun help-at-pt-maybe-display ()
|
|
233 (and (or (eq help-at-pt-display-when-idle t)
|
|
234 (and (consp help-at-pt-display-when-idle)
|
|
235 (catch 'found
|
|
236 (dolist (prop help-at-pt-display-when-idle)
|
|
237 (if (get-char-property (point) prop)
|
|
238 (throw 'found t))))))
|
|
239 (or (not (current-message))
|
|
240 (string= (current-message) "Quit"))
|
|
241 (display-local-help t)))
|
|
242
|
|
243 ;;;###autoload
|
|
244 (defun scan-buf-move-to-region (prop &optional arg hook)
|
|
245 "Go to the start of the next region with non-nil PROP property.
|
|
246 Then run HOOK, which should be a quoted symbol that is a normal
|
|
247 hook.variable, or an expression evaluating to such a symbol.
|
|
248 Adjacent areas with different non-nil PROP properties are
|
|
249 considered different regions.
|
|
250
|
|
251 With numeric argument ARG, move to the start of the ARGth next
|
|
252 such region, then run HOOK. If ARG is negative, move backward.
|
|
253 If point is already in a region, then that region does not count
|
|
254 toward ARG. If ARG is 0 and point is inside a region, move to
|
|
255 the start of that region. If ARG is 0 and point is not in a
|
|
256 region, print a message to that effect, but do not move point and
|
|
257 do not run HOOK. If there are not enough regions to move over,
|
|
258 an error results and the number of available regions is mentioned
|
|
259 in the error message. Point is not moved and HOOK is not run."
|
|
260 (cond ((> arg 0)
|
|
261 (if (= (point) (point-max))
|
|
262 (error "No further `%s' regions" prop))
|
|
263 (let ((pos (point)))
|
|
264 (dotimes (x arg)
|
|
265 (setq pos (next-single-char-property-change pos prop))
|
|
266 (unless (get-char-property pos prop)
|
|
267 (setq pos (next-single-char-property-change pos prop))
|
|
268 (unless (get-char-property pos prop)
|
|
269 (cond ((= x 0)
|
|
270 (error "No further `%s' regions" prop))
|
|
271 ((= x 1)
|
|
272 (error "There is only one further `%s' region" prop))
|
|
273 (t
|
|
274 (error
|
|
275 "There are only %d further `%s' regions"
|
|
276 x prop))))))
|
|
277 (goto-char pos)
|
|
278 (run-hooks hook)))
|
|
279 ((= arg 0)
|
|
280 (let ((val (get-char-property (point) prop)))
|
|
281 (cond ((not val)
|
|
282 (message "Point is not in a `%s' region" prop))
|
|
283 ((eq val (get-char-property (1- (point)) prop))
|
|
284 (goto-char
|
|
285 (previous-single-char-property-change (point) prop))
|
|
286 (run-hooks hook))
|
|
287 (t (run-hooks hook)))))
|
|
288 ((< arg 0)
|
|
289 (let ((pos (point)) (val (get-char-property (point) prop)))
|
|
290 (and val
|
|
291 (eq val (get-char-property (1- pos) prop))
|
|
292 (setq pos
|
|
293 (previous-single-char-property-change pos prop)))
|
|
294 (if (= pos (point-min))
|
|
295 (error "No prior `%s' regions" prop))
|
|
296 (dotimes (x (- arg))
|
|
297 (setq pos (previous-single-char-property-change pos prop))
|
|
298 (unless (get-char-property pos prop)
|
|
299 (setq pos (previous-single-char-property-change pos prop))
|
|
300 (unless (get-char-property pos prop)
|
|
301 (cond ((= x 0)
|
|
302 (error "No prior `%s' regions" prop))
|
|
303 ((= x 1)
|
|
304 (error "There is only one prior `%s' region" prop))
|
|
305 (t
|
|
306 (error "There are only %d prior `%s' regions"
|
|
307 x prop))))))
|
|
308 (goto-char pos)
|
|
309 (run-hooks hook)))))
|
|
310
|
|
311 ;; To be moved to a different file and replaced by a defcustom in a
|
|
312 ;; future version.
|
|
313 (defvar scan-buf-move-hook '(display-local-help)
|
|
314 "Normal hook run by `scan-buf-next-region'.
|
|
315 Also used by `scan-buf-previous-region'. The hook is run after
|
|
316 positioning point.")
|
|
317
|
|
318 ;;;###autoload
|
|
319 (defun scan-buf-next-region (&optional arg)
|
|
320 "Go to the start of the next region with non-nil help-echo.
|
|
321 Print the help found there using `display-local-help'. Adjacent
|
|
322 areas with different non-nil help-echo properties are considered
|
|
323 different regions.
|
|
324
|
|
325 With numeric argument ARG, move to the start of the ARGth next
|
|
326 help-echo region. If ARG is negative, move backward. If point
|
|
327 is already in a help-echo region, then that region does not count
|
|
328 toward ARG. If ARG is 0 and point is inside a help-echo region,
|
|
329 move to the start of that region. If ARG is 0 and point is not
|
|
330 in such a region, just print a message to that effect. If there
|
|
331 are not enough regions to move over, an error results and the
|
|
332 number of available regions is mentioned in the error message.
|
|
333
|
|
334 A potentially confusing subtlety is that point can be in a
|
|
335 help-echo region without any local help being available. This is
|
|
336 because `help-echo' can be a function evaluating to nil. This
|
|
337 rarely happens in practice."
|
|
338 (interactive "p")
|
|
339 (scan-buf-move-to-region 'help-echo arg 'scan-buf-move-hook))
|
|
340
|
|
341 ;;;###autoload
|
|
342 (defun scan-buf-previous-region (&optional arg)
|
|
343 "Go to the start of the previous region with non-nil help-echo.
|
|
344 Print the help found there using `display-local-help'. Adjacent
|
|
345 areas with different non-nil help-echo properties are considered
|
|
346 different regions. With numeric argument ARG, behaves like
|
|
347 `scan-buf-next-region' with argument -ARG.."
|
|
348 (interactive "p")
|
|
349 (scan-buf-move-to-region 'help-echo (- arg) 'scan-buf-move-hook))
|
|
350
|
|
351 (defvar help-at-pt-unload-hook '(help-at-pt-cancel-timer)
|
|
352 "Normal hook run when `help-at-pt' is unloaded.")
|
|
353
|
|
354 (provide 'help-at-pt)
|
|
355
|
|
356 ;;; arch-tag: d0b8b86d-d23f-45d0-a82d-208d6205a583
|
|
357 ;;; help-at-pt.el ends here
|