]> code.delx.au - gnu-emacs/blob - lisp/tutorial.el
(tutorial--describe-nonstandard-key): Adjust for new
[gnu-emacs] / lisp / tutorial.el
1 ;;; tutorial.el --- tutorial for Emacs
2
3 ;; Copyright (C) 2006, 2007 Free Software Foundation, Inc.
4
5 ;; Maintainer: FSF
6 ;; Keywords: help, internal
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., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
24
25 ;;; Commentary:
26
27 ;; Code for running the Emacs tutorial.
28
29 ;;; History:
30
31 ;; File was created 2006-09.
32
33 ;;; Code:
34
35 (require 'help-mode) ;; for function help-buffer
36
37 (defface tutorial-warning-face
38 '((t :inherit font-lock-warning-face))
39 "Face used to highlight warnings in the tutorial."
40 :group 'help)
41
42 (defvar tutorial--point-before-chkeys 0
43 "Point before display of key changes.")
44 (make-variable-buffer-local 'tutorial--point-before-chkeys)
45
46 (defvar tutorial--point-after-chkeys 0
47 "Point after display of key changes.")
48 (make-variable-buffer-local 'tutorial--point-after-chkeys)
49
50 (defvar tutorial--lang nil
51 "Tutorial language.")
52 (make-variable-buffer-local 'tutorial--lang)
53
54 (defun tutorial--describe-nonstandard-key (value)
55 "Give more information about a changed key binding.
56 This is used in `help-with-tutorial'. The information includes
57 the key sequence that no longer has a default binding, the
58 default binding and the current binding. It also tells in what
59 keymap the new binding has been done and how to access the
60 function in the default binding from the keyboard.
61
62 For `cua-mode' key bindings that try to combine CUA key bindings
63 with default Emacs bindings information about this is shown.
64
65 VALUE should have either of these formats:
66
67 \(cua-mode)
68 \(current-binding KEY-FUN DEF-FUN KEY WHERE)
69
70 Where
71 KEY is a key sequence whose standard binding has been changed
72 KEY-FUN is the actual binding for KEY
73 DEF-FUN is the standard binding of KEY
74 WHERE is a text describing the key sequences to which DEF-FUN is
75 bound now (or, if it is remapped, a key sequence
76 for the function it is remapped to)"
77 (with-output-to-temp-buffer (help-buffer)
78 (help-setup-xref (list #'tutorial--describe-nonstandard-key value)
79 (interactive-p))
80 (with-current-buffer (help-buffer)
81 (insert
82 "Your Emacs customizations override the default binding for this key:"
83 "\n\n")
84 (let ((inhibit-read-only t))
85 (cond
86 ((eq (car value) 'cua-mode)
87 (insert
88 "CUA mode is enabled.
89
90 When CUA mode is enabled, you can use C-z, C-x, C-c, and C-v to
91 undo, cut, copy, and paste in addition to the normal Emacs
92 bindings. The C-x and C-c keys only do cut and copy when the
93 region is active, so in most cases, they do not conflict with the
94 normal function of these prefix keys.
95
96 If you really need to perform a command which starts with one of
97 the prefix keys even when the region is active, you have three
98 options:
99 - press the prefix key twice very quickly (within 0.2 seconds),
100 - press the prefix key and the following key within 0.2 seconds, or
101 - use the SHIFT key with the prefix key, i.e. C-S-x or C-S-c."))
102 ((eq (car value) 'current-binding)
103 (let ((cb (nth 1 value))
104 (db (nth 2 value))
105 (key (nth 3 value))
106 (where (nth 4 value))
107 map
108 (maps (current-active-maps))
109 mapsym)
110 ;; Look at the currently active keymaps and try to find
111 ;; first the keymap where the current binding occurs:
112 (while maps
113 (let* ((m (car maps))
114 (mb (lookup-key m key t)))
115 (setq maps (cdr maps))
116 (when (eq mb cb)
117 (setq map m)
118 (setq maps nil))))
119 ;; Now, if a keymap was found we must found the symbol
120 ;; name for it to display to the user. This can not
121 ;; always be found since all keymaps does not have a
122 ;; symbol pointing to them, but here they should have
123 ;; that:
124 (when map
125 (mapatoms (lambda (s)
126 (and
127 ;; If not already found
128 (not mapsym)
129 ;; and if s is a keymap
130 (and (boundp s)
131 (keymapp (symbol-value s)))
132 ;; and not the local symbol map
133 (not (eq s 'map))
134 ;; and the value of s is map
135 (eq map (symbol-value s))
136 ;; then save this value in mapsym
137 (setq mapsym s)))))
138 (insert "The default Emacs binding for the key "
139 (key-description key)
140 " is the command `")
141 (insert (format "%s" db))
142 (insert "'. "
143 "However, your customizations have rebound it to the command `")
144 (insert (format "%s" cb))
145 (insert "'.")
146 (when mapsym
147 (insert " (For the more advanced user:"
148 " This binding is in the keymap `"
149 (format "%s" mapsym)
150 "'.)"))
151 (if (string= where "")
152 (unless (keymapp db)
153 (insert "\n\nYou can use M-x "
154 (format "%s" db)
155 " RET instead."))
156 (insert "\n\nWith your current key bindings"
157 " you can use "
158 (if (string-match "^the .*menus?$" where)
159 ""
160 "the key")
161 where
162 " to get the function `"
163 (format "%s" db)
164 "'.")))
165 (fill-region (point-min) (point)))))
166 (print-help-return-message))))
167
168 (defun tutorial--sort-keys (left right)
169 "Sort predicate for use with `tutorial--default-keys'.
170 This is a predicate function to `sort'.
171
172 The sorting is for presentation purpose only and is done on the
173 key sequence.
174
175 LEFT and RIGHT are the elements to compare."
176 (let ((x (append (cadr left) nil))
177 (y (append (cadr right) nil)))
178 ;; Skip the front part of the key sequences if they are equal:
179 (while (and x y
180 (listp x) (listp y)
181 (equal (car x) (car y)))
182 (setq x (cdr x))
183 (setq y (cdr y)))
184 ;; Try to make a comparision that is useful for presentation (this
185 ;; could be made nicer perhaps):
186 (let ((cx (car x))
187 (cy (car y)))
188 ;;(message "x=%s, y=%s;;;; cx=%s, cy=%s" x y cx cy)
189 (cond
190 ;; Lists? Then call this again
191 ((and cx cy
192 (listp cx)
193 (listp cy))
194 (tutorial--sort-keys cx cy))
195 ;; Are both numbers? Then just compare them
196 ((and (wholenump cx)
197 (wholenump cy))
198 (> cx cy))
199 ;; Is one of them a number? Let that be bigger then.
200 ((wholenump cx)
201 t)
202 ((wholenump cy)
203 nil)
204 ;; Are both symbols? Compare the names then.
205 ((and (symbolp cx)
206 (symbolp cy))
207 (string< (symbol-name cy)
208 (symbol-name cx)))))))
209
210 (defconst tutorial--default-keys
211 ;; On window system, `suspend-emacs' is replaced in the default
212 ;; keymap
213 (let* ((suspend-emacs (if window-system
214 'iconify-or-deiconify-frame
215 'suspend-emacs))
216 (default-keys
217 `((ESC-prefix [27])
218 (Control-X-prefix [?\C-x])
219 (mode-specific-command-prefix [?\C-c])
220 (save-buffers-kill-emacs [?\C-x ?\C-c])
221
222 ;; * SUMMARY
223 (scroll-up [?\C-v])
224 (scroll-down [?\M-v])
225 (recenter [?\C-l])
226
227 ;; * BASIC CURSOR CONTROL
228 (forward-char [?\C-f])
229 (backward-char [?\C-b])
230 (forward-word [?\M-f])
231 (backward-word [?\M-b])
232 (next-line [?\C-n])
233 (previous-line [?\C-p])
234 (move-beginning-of-line [?\C-a])
235 (move-end-of-line [?\C-e])
236 (backward-sentence [?\M-a])
237 (forward-sentence [?\M-e])
238 (newline "\r")
239 (beginning-of-buffer [?\M-<])
240 (end-of-buffer [?\M->])
241 (universal-argument [?\C-u])
242
243 ;; * WHEN EMACS IS HUNG
244 (keyboard-quit [?\C-g])
245
246 ;; * DISABLED COMMANDS
247 (downcase-region [?\C-x ?\C-l])
248
249 ;; * WINDOWS
250 (delete-other-windows [?\C-x ?1])
251 ;; C-u 0 C-l
252 ;; Type CONTROL-h k CONTROL-f.
253
254 ;; * INSERTING AND DELETING
255 ;; C-u 8 * to insert ********.
256 (delete-backward-char "\d")
257 (delete-char [?\C-d])
258 (backward-kill-word [?\M-\d])
259 (kill-word [?\M-d])
260 (kill-line [?\C-k])
261 (kill-sentence [?\M-k])
262 (set-mark-command [?\C-@])
263 (set-mark-command [?\C- ])
264 (kill-region [?\C-w])
265 (yank [?\C-y])
266 (yank-pop [?\M-y])
267
268 ;; * UNDO
269 (advertised-undo [?\C-x ?u])
270 (advertised-undo [?\C-x ?u])
271
272 ;; * FILES
273 (find-file [?\C-x ?\C-f])
274 (save-buffer [?\C-x ?\C-s])
275
276 ;; * BUFFERS
277 (list-buffers [?\C-x ?\C-b])
278 (switch-to-buffer [?\C-x ?b])
279 (save-some-buffers [?\C-x ?s])
280
281 ;; * EXTENDING THE COMMAND SET
282 ;; C-x Character eXtend. Followed by one character.
283 (execute-extended-command [?\M-x])
284 ;; C-x C-f Find file
285 ;; C-x C-s Save file
286 ;; C-x s Save some buffers
287 ;; C-x C-b List buffers
288 ;; C-x b Switch buffer
289 ;; C-x C-c Quit Emacs
290 ;; C-x 1 Delete all but one window
291 ;; C-x u Undo
292
293 ;; * MODE LINE
294 (describe-mode [?\C-h ?m])
295 (set-fill-column [?\C-x ?f])
296 (fill-paragraph [?\M-q])
297
298 ;; * SEARCHING
299 (isearch-forward [?\C-s])
300 (isearch-backward [?\C-r])
301
302 ;; * MULTIPLE WINDOWS
303 (split-window-vertically [?\C-x ?2])
304 (scroll-other-window [?\C-\M-v])
305 (other-window [?\C-x ?o])
306 (find-file-other-window [?\C-x ?4 ?\C-f])
307
308 ;; * RECURSIVE EDITING LEVELS
309 (keyboard-escape-quit [27 27 27])
310
311 ;; * GETTING MORE HELP
312 ;; The most basic HELP feature is C-h c
313 (describe-key-briefly [?\C-h ?c])
314 (describe-key [?\C-h ?k])
315
316 ;; * MORE FEATURES
317 ;; F10
318
319 ;; * CONCLUSION
320 ;;(iconify-or-deiconify-frame [?\C-z])
321 (,suspend-emacs [?\C-z]))))
322 (sort default-keys 'tutorial--sort-keys))
323 "Default Emacs key bindings that the tutorial depends on.")
324
325 (defun tutorial--detailed-help (button)
326 "Give detailed help about changed keys."
327 (with-output-to-temp-buffer (help-buffer)
328 (help-setup-xref (list #'tutorial--detailed-help button)
329 (interactive-p))
330 (with-current-buffer (help-buffer)
331 (let* ((tutorial-buffer (button-get button 'tutorial-buffer))
332 (explain-key-desc (button-get button 'explain-key-desc))
333 (changed-keys (with-current-buffer tutorial-buffer
334 (save-excursion
335 (goto-char (point-min))
336 (tutorial--find-changed-keys
337 tutorial--default-keys)))))
338 (when changed-keys
339 (insert
340 "The following key bindings used in the tutorial have been changed
341 from the Emacs default:\n\n" )
342 (let ((frm " %-14s %-27s %-16s\n"))
343 (insert (format frm
344 "Standard Key" "Command" "In Your Emacs")))
345 (dolist (tk changed-keys)
346 (let* ((def-fun (nth 1 tk))
347 (key (nth 0 tk))
348 (def-fun-txt (nth 2 tk))
349 (where (nth 3 tk))
350 (remark (nth 4 tk))
351 (rem-fun (command-remapping def-fun))
352 (key-txt (key-description key))
353 (key-fun (with-current-buffer tutorial-buffer (key-binding key)))
354 tot-len)
355 (unless (eq def-fun key-fun)
356 ;; Insert key binding description:
357 (when (string= key-txt explain-key-desc)
358 (put-text-property 0 (length key-txt)
359 'face 'tutorial-warning-face key-txt))
360 (insert " " key-txt " ")
361 (indent-to 18)
362 ;; Insert a link describing the old binding:
363 (insert-button def-fun-txt
364 'value def-fun
365 'action
366 (lambda (button) (interactive)
367 (describe-function
368 (button-get button 'value)))
369 'follow-link t)
370 (indent-to 45)
371 (when (listp where)
372 (setq where "list"))
373 ;; Tell where the old binding is now:
374 (insert (format " %-16s "
375 (if (string= "" where)
376 (format "M-x %s" def-fun-txt)
377 where)))
378 ;; Insert a link with more information, for example
379 ;; current binding and keymap or information about
380 ;; cua-mode replacements:
381 (insert-button (car remark)
382 'action
383 (lambda (b) (interactive)
384 (let ((value (button-get b 'value)))
385 (tutorial--describe-nonstandard-key value)))
386 'value (cdr remark)
387 'follow-link t)
388 (insert "\n")))))
389
390 (insert "
391 It is OK to change key bindings, but changed bindings do not
392 correspond to what the tutorial says.\n\n")
393 (print-help-return-message)))))
394
395 (defun tutorial--find-changed-keys (default-keys)
396 "Find the key bindings used in the tutorial that have changed.
397 Return a list with elements of the form
398
399 '(KEY DEF-FUN DEF-FUN-TXT WHERE REMARK QUIET)
400
401 where
402
403 KEY is a key sequence whose standard binding has been changed
404 DEF-FUN is the standard binding of KEY
405 DEF-FUN-TXT is a short descriptive text for DEF-FUN
406 WHERE is a text describing the key sequences to which DEF-FUN is
407 bound now (or, if it is remapped, a key sequence
408 for the function it is remapped to)
409 REMARK is a list with info about rebinding. It has either of
410 these formats:
411
412 \(TEXT cua-mode)
413 \(TEXT current-binding KEY-FUN DEF-FUN KEY WHERE)
414
415 Here TEXT is a link text to show to the user. The
416 rest of the list is used to show information when
417 the user clicks the link.
418
419 KEY-FUN is the actual binding for KEY.
420 QUIET is t if this changed keybinding should be handled quietly.
421 This is used by `tutorial--display-changes'."
422 (let (changed-keys remark)
423 ;; Look up the bindings in a Fundamental mode buffer
424 ;; so we do not get fooled by some other major mode.
425 (with-temp-buffer
426 (fundamental-mode)
427 (dolist (kdf default-keys)
428 ;; The variables below corresponds to those with the same names
429 ;; described in the doc string.
430 (let* ((key (nth 1 kdf))
431 (def-fun (nth 0 kdf))
432 (def-fun-txt (format "%s" def-fun))
433 (rem-fun (command-remapping def-fun))
434 (key-fun (if (eq def-fun 'ESC-prefix)
435 (lookup-key global-map [27])
436 (key-binding key)))
437 (where (where-is-internal (if rem-fun rem-fun def-fun)))
438 cwhere)
439 (if where
440 (progn
441 (setq cwhere (car where)
442 where (key-description cwhere))
443 (when (and (< 10 (length where))
444 (string= (substring where 0 (length "<menu-bar>"))
445 "<menu-bar>"))
446 (setq where
447 (if (and (vectorp cwhere)
448 (setq cwhere (elt cwhere 1))
449 (setq cwhere
450 (cadr
451 (assoc cwhere
452 (lookup-key global-map
453 [menu-bar]))))
454 (stringp cwhere))
455 (format "the `%s' menu" cwhere)
456 "the menus"))))
457 (setq where ""))
458 (setq remark nil)
459 (unless
460 (cond ((eq key-fun def-fun)
461 ;; No rebinding, return t
462 t)
463 ((and key-fun
464 (eq key-fun (command-remapping def-fun)))
465 ;; Just a remapping, return t
466 t)
467 ;; cua-mode specials:
468 ((and cua-mode
469 (or (and
470 (equal key [?\C-v])
471 (eq key-fun 'cua-paste))
472 (and
473 (equal key [?\C-z])
474 (eq key-fun 'undo))))
475 (setq remark (list "cua-mode, more info" 'cua-mode))
476 nil)
477 ((and cua-mode
478 (or (and (eq def-fun 'ESC-prefix)
479 (equal key-fun
480 `(keymap
481 (118 . cua-repeat-replace-region)))
482 (setq def-fun-txt "\"ESC prefix\""))
483 (and (eq def-fun 'mode-specific-command-prefix)
484 (equal key-fun
485 '(keymap
486 (timeout . copy-region-as-kill)))
487 (setq def-fun-txt "\"C-c prefix\""))
488 (and (eq def-fun 'Control-X-prefix)
489 (equal key-fun
490 '(keymap (timeout . kill-region)))
491 (setq def-fun-txt "\"C-x prefix\""))))
492 (setq remark (list "cua-mode replacement" 'cua-mode))
493 (setq where "Same key")
494 nil)
495 ;; viper-mode specials:
496 ((and (boundp 'viper-mode-string)
497 (boundp 'viper-current-state)
498 (eq viper-current-state 'vi-state)
499 (or (and (eq def-fun 'isearch-forward)
500 (eq key-fun 'viper-isearch-forward))
501 (and (eq def-fun 'isearch-backward)
502 (eq key-fun 'viper-isearch-backward))))
503 ;; These bindings works as the default bindings,
504 ;; return t
505 t)
506 ((when normal-erase-is-backspace
507 (or (and (equal key [C-delete])
508 (equal key-fun 'kill-word))
509 (and (equal key [C-backspace])
510 (equal key-fun 'backward-kill-word))))
511 ;; This is the strange handling of C-delete and
512 ;; C-backspace, return t
513 t)
514 (t
515 ;; This key has indeed been rebound. Put information
516 ;; in `remark' and return nil
517 (setq remark
518 (list "more info" 'current-binding
519 key-fun def-fun key where))
520 nil))
521 (add-to-list 'changed-keys
522 (list key def-fun def-fun-txt where remark nil))))))
523 changed-keys))
524
525 (defun tutorial--key-description (key)
526 (let ((desc (key-description key)))
527 (cond ((string= "ESC" desc) "<ESC>")
528 ((string= "RET" desc) "<Return>")
529 ((string= "DEL" desc) "<Delback>")
530 (t desc))))
531
532 (defun tutorial--display-changes ()
533 "Display changes to some default key bindings.
534 If some of the default key bindings that the tutorial depends on
535 have been changed then display the changes in the tutorial buffer
536 with some explanatory links."
537 (let* ((changed-keys (tutorial--find-changed-keys
538 tutorial--default-keys))
539 ;; Alist of element (DESC . CK) where DESC is the
540 ;; key-description of a changed key and CK is the
541 ;; corresponding element in `changed-keys'.
542 (changed-keys-alist
543 (mapcar (lambda (ck) (cons (tutorial--key-description (car ck)) ck))
544 changed-keys))
545 changed-key
546 (start (point))
547 (case-fold-search nil)
548 (keybindings-regexp
549 (concat "[[:space:]]\\("
550 (mapconcat (lambda (kdf) (regexp-quote
551 (tutorial--key-description
552 (nth 1 kdf))))
553 tutorial--default-keys
554 "\\|")
555 "\\)[[:punct:][:space:]]")))
556 ;; Need the custom button face for viper buttons:
557 (if (boundp 'viper-mode-string) (require 'cus-edit))
558
559 (if (or changed-keys (boundp 'viper-mode-string))
560 (let ((head (get-lang-string tutorial--lang 'tut-chgdhead))
561 (head2 (get-lang-string tutorial--lang 'tut-chgdhead2)))
562 (when (and head head2)
563 (goto-char tutorial--point-before-chkeys)
564 (insert head " [")
565 (insert-button head2 'tutorial-buffer (current-buffer)
566 'action 'tutorial--detailed-help
567 'follow-link t 'face 'link)
568 (insert "]\n\n")
569 (add-text-properties tutorial--point-before-chkeys (point)
570 '(tutorial-remark remark
571 face tutorial-warning-face
572 read-only t)))))
573
574 ;; Scan the tutorial for all key sequences.
575 (goto-char (point-min))
576 (while (re-search-forward keybindings-regexp (point-max) t)
577 ;; Then highlight each rebound key sequence.
578 ;; This avoids issuing a warning for, e.g., C-x C-b if C-b is rebound.
579 (setq changed-key (assoc (match-string 1) changed-keys-alist))
580 (and changed-key
581 (not (get-text-property (match-beginning 1) 'tutorial-remark))
582 (let* ((desc (car changed-key))
583 (ck (cdr changed-key))
584 (key (nth 0 ck))
585 (def-fun (nth 1 ck))
586 (where (nth 3 ck))
587 s1 s2 help-string)
588 (unless (string= where "Same key")
589 (when (string= where "")
590 (setq where (format "M-x %s" def-fun)))
591 (setq tutorial--point-after-chkeys (point-marker)
592 s1 (get-lang-string tutorial--lang 'tut-chgdkey)
593 s2 (get-lang-string tutorial--lang 'tut-chgdkey2)
594 help-string (and s1 s2 (format s1 desc where)))
595 (add-text-properties (match-beginning 1) (match-end 1)
596 '(face tutorial-warning-face
597 tutorial-remark key-sequence))
598 (if help-string
599 (if (nth 5 ck)
600 ;; Put help string in the tooltip.
601 (put-text-property (match-beginning 1) (match-end 1)
602 'help-echo help-string)
603 ;; Put help string in the buffer.
604 (save-excursion
605 (setcar (nthcdr 5 ck) t)
606 (forward-line)
607 ;; Two or more changed keys were on the same line.
608 (while (eq (get-text-property (point) 'tutorial-remark)
609 'remark)
610 (forward-line))
611 (setq start (point))
612 (insert "** " help-string " [")
613 (insert-button s2 'tutorial-buffer (current-buffer)
614 'action 'tutorial--detailed-help
615 'explain-key-desc desc 'follow-link t
616 'face 'link)
617 (insert "] **\n")
618 (add-text-properties start (point)
619 '(tutorial-remark remark
620 rear-nonsticky t
621 face tutorial-warning-face
622 read-only t)))))))))))
623
624 (defun tutorial--saved-dir ()
625 "Directory to which tutorials are saved."
626 (expand-file-name "tutorial"
627 (if (eq system-type 'ms-dos) "~/_emacs.d/" "~/.emacs.d/")))
628
629 (defun tutorial--saved-file ()
630 "File name in which to save tutorials."
631 (let ((file-name tutorial--lang)
632 (ext (file-name-extension tutorial--lang)))
633 (when (or (not ext)
634 (string= ext ""))
635 (setq file-name (concat file-name ".tut")))
636 (expand-file-name file-name (tutorial--saved-dir))))
637
638 (defun tutorial--remove-remarks ()
639 "Remove the remark lines that was added to the tutorial buffer."
640 (save-excursion
641 (goto-char (point-min))
642 (let (prop-start
643 prop-end
644 prop-val)
645 ;; Catch the case when we already are on a remark line
646 (while (if (get-text-property (point) 'tutorial-remark)
647 (setq prop-start (point))
648 (setq prop-start (next-single-property-change (point) 'tutorial-remark)))
649 (setq prop-end (next-single-property-change prop-start 'tutorial-remark))
650 (setq prop-val (get-text-property prop-start 'tutorial-remark))
651 (unless prop-end
652 (setq prop-end (point-max)))
653 (goto-char prop-end)
654 (unless (eq prop-val 'key-sequence)
655 (delete-region prop-start prop-end))))))
656
657 (defun tutorial--save-tutorial ()
658 "Save the tutorial buffer.
659 This saves the part of the tutorial before and after the area
660 showing changed keys. It also saves the point position and the
661 position where the display of changed bindings was inserted."
662 ;; This runs in a hook so protect it:
663 (condition-case err
664 (if (y-or-n-p "Save your position in the tutorial? ")
665 (tutorial--save-tutorial-to (tutorial--saved-file)))
666 (error (message "Error saving tutorial state: %s"
667 (error-message-string err)))))
668
669 (defun tutorial--save-tutorial-to (saved-file)
670 "Save the tutorial buffer to SAVED-FILE.
671 See `tutorial--save-tutorial' for more information."
672 ;; Anything to save?
673 (when (or (buffer-modified-p)
674 (< 1 (point)))
675 (let ((tutorial-dir (tutorial--saved-dir))
676 save-err)
677 ;; The tutorial is saved in a subdirectory in the user home
678 ;; directory. Create this subdirectory first.
679 (unless (file-directory-p tutorial-dir)
680 (condition-case err
681 (make-directory tutorial-dir nil)
682 (error (setq save-err t)
683 (warn "Could not create directory %s: %s" tutorial-dir
684 (error-message-string err)))))
685 ;; Make sure we have that directory.
686 (if (file-directory-p tutorial-dir)
687 (let ((tut-point (if (= 0 tutorial--point-after-chkeys)
688 ;; No info about changed keys is
689 ;; displayed.
690 (point)
691 (if (< (point) tutorial--point-after-chkeys)
692 (- (point))
693 (- (point) tutorial--point-after-chkeys))))
694 (old-point (point))
695 ;; Use a special undo list so that we easily can undo
696 ;; the changes we make to the tutorial buffer. This is
697 ;; currently not needed since we now delete the buffer
698 ;; after saving, but kept for possible future use of
699 ;; this function.
700 buffer-undo-list
701 (inhibit-read-only t))
702 ;; Delete the area displaying info about changed keys.
703 ;; (when (< 0 tutorial--point-after-chkeys)
704 ;; (delete-region tutorial--point-before-chkeys
705 ;; tutorial--point-after-chkeys))
706 ;; Delete the remarks:
707 (tutorial--remove-remarks)
708 ;; Put the value of point first in the buffer so it will
709 ;; be saved with the tutorial.
710 (goto-char (point-min))
711 (insert (number-to-string tut-point)
712 "\n"
713 (number-to-string (marker-position
714 tutorial--point-before-chkeys))
715 "\n")
716 (condition-case err
717 (write-region nil nil saved-file)
718 (error (setq save-err t)
719 (warn "Could not save tutorial to %s: %s"
720 saved-file
721 (error-message-string err))))
722 ;; An error is raised here?? Is this a bug?
723 (condition-case err
724 (undo-only)
725 (error nil))
726 ;; Restore point
727 (goto-char old-point)
728 (if save-err
729 (message "Could not save tutorial state.")
730 (message "Saved tutorial state.")))
731 (message "Can't save tutorial: %s is not a directory"
732 tutorial-dir)))))
733
734
735 ;;;###autoload
736 (defun help-with-tutorial (&optional arg dont-ask-for-revert)
737 "Select the Emacs learn-by-doing tutorial.
738 If there is a tutorial version written in the language
739 of the selected language environment, that version is used.
740 If there's no tutorial in that language, `TUTORIAL' is selected.
741 With ARG, you are asked to choose which language.
742 If DONT-ASK-FOR-REVERT is non-nil the buffer is reverted without
743 any question when restarting the tutorial.
744
745 If any of the standard Emacs key bindings that are used in the
746 tutorial have been changed then an explanatory note about this is
747 shown in the beginning of the tutorial buffer.
748
749 When the tutorial buffer is killed the content and the point
750 position in the buffer is saved so that the tutorial may be
751 resumed later."
752 (interactive "P")
753 (if (boundp 'viper-current-state)
754 (let ((prompt1
755 "You can not run the Emacs tutorial directly because you have \
756 enabled Viper.")
757 (prompt2 "\nThere is however a Viper tutorial you can run instead.
758 Run the Viper tutorial? "))
759 (if (fboundp 'viper-tutorial)
760 (if (y-or-n-p (concat prompt1 prompt2))
761 (progn (message "")
762 (funcall 'viper-tutorial 0))
763 (message "Tutorial aborted by user"))
764 (message prompt1)))
765 (let* ((lang (if arg
766 (let ((minibuffer-setup-hook minibuffer-setup-hook))
767 (add-hook 'minibuffer-setup-hook
768 'minibuffer-completion-help)
769 (read-language-name 'tutorial "Language: " "English"))
770 (if (get-language-info current-language-environment 'tutorial)
771 current-language-environment
772 "English")))
773 (filename (get-language-info lang 'tutorial))
774 ;; Choose a buffer name including the language so that
775 ;; several languages can be tested simultaneously:
776 (tut-buf-name (concat "TUTORIAL (" lang ")"))
777 (old-tut-buf (get-buffer tut-buf-name))
778 (old-tut-win (when old-tut-buf (get-buffer-window old-tut-buf t)))
779 (old-tut-is-ok (when old-tut-buf
780 (not (buffer-modified-p old-tut-buf))))
781 old-tut-file
782 (old-tut-point 1))
783 (setq tutorial--point-after-chkeys (point-min))
784 ;; Try to display the tutorial buffer before asking to revert it.
785 ;; If the tutorial buffer is shown in some window make sure it is
786 ;; selected and displayed:
787 (if old-tut-win
788 (raise-frame
789 (window-frame
790 (select-window (get-buffer-window old-tut-buf t))))
791 ;; Else, is there an old tutorial buffer? Then display it:
792 (when old-tut-buf
793 (switch-to-buffer old-tut-buf)))
794 ;; Use whole frame for tutorial
795 (delete-other-windows)
796 ;; If the tutorial buffer has been changed then ask if it should
797 ;; be reverted:
798 (when (and old-tut-buf
799 (not old-tut-is-ok))
800 (setq old-tut-is-ok
801 (if dont-ask-for-revert
802 nil
803 (not (y-or-n-p
804 "You have changed the Tutorial buffer. Revert it? ")))))
805 ;; (Re)build the tutorial buffer if it is not ok
806 (unless old-tut-is-ok
807 (switch-to-buffer (get-buffer-create tut-buf-name))
808 (unless old-tut-buf (text-mode))
809 (unless lang (error "Variable lang is nil"))
810 (setq tutorial--lang lang)
811 (setq old-tut-file (file-exists-p (tutorial--saved-file)))
812 (let ((inhibit-read-only t))
813 (erase-buffer))
814 (message "Preparing tutorial ...") (sit-for 0)
815
816 ;; Do not associate the tutorial buffer with a file. Instead use
817 ;; a hook to save it when the buffer is killed.
818 (setq buffer-auto-save-file-name nil)
819 (add-hook 'kill-buffer-hook 'tutorial--save-tutorial nil t)
820
821 ;; Insert the tutorial. First offer to resume last tutorial
822 ;; editing session.
823 (when dont-ask-for-revert
824 (setq old-tut-file nil))
825 (when old-tut-file
826 (setq old-tut-file
827 (y-or-n-p "Resume your last saved tutorial? ")))
828 (if old-tut-file
829 (progn
830 (insert-file-contents (tutorial--saved-file))
831 (goto-char (point-min))
832 (setq old-tut-point
833 (string-to-number
834 (buffer-substring-no-properties
835 (line-beginning-position) (line-end-position))))
836 (forward-line)
837 (setq tutorial--point-before-chkeys
838 (string-to-number
839 (buffer-substring-no-properties
840 (line-beginning-position) (line-end-position))))
841 (forward-line)
842 (delete-region (point-min) (point))
843 (goto-char tutorial--point-before-chkeys)
844 (setq tutorial--point-before-chkeys (point-marker)))
845 (insert-file-contents (expand-file-name filename data-directory))
846 (forward-line)
847 (setq tutorial--point-before-chkeys (point-marker)))
848
849 (tutorial--display-changes)
850
851 ;; Clear message:
852 (unless dont-ask-for-revert
853 (message "") (sit-for 0))
854
855
856 (if old-tut-file
857 ;; Just move to old point in saved tutorial.
858 (let ((old-point
859 (if (> 0 old-tut-point)
860 (- old-tut-point)
861 (+ old-tut-point tutorial--point-after-chkeys))))
862 (when (< old-point 1)
863 (setq old-point 1))
864 (goto-char old-point))
865 (goto-char (point-min))
866 (search-forward "\n<<")
867 (beginning-of-line)
868 ;; Convert the <<...>> line to the proper [...] line,
869 ;; or just delete the <<...>> line if a [...] line follows.
870 (cond ((save-excursion
871 (forward-line 1)
872 (looking-at "\\["))
873 (delete-region (point) (progn (forward-line 1) (point))))
874 ((looking-at "<<Blank lines inserted.*>>")
875 (replace-match "[Middle of page left blank for didactic purposes. Text continues below]"))
876 (t
877 (looking-at "<<")
878 (replace-match "[")
879 (search-forward ">>")
880 (replace-match "]")))
881 (beginning-of-line)
882 (let ((n (- (window-height (selected-window))
883 (count-lines (point-min) (point))
884 6)))
885 (if (< n 8)
886 (progn
887 ;; For a short gap, we don't need the [...] line,
888 ;; so delete it.
889 (delete-region (point) (progn (end-of-line) (point)))
890 (newline n))
891 ;; Some people get confused by the large gap.
892 (newline (/ n 2))
893
894 ;; Skip the [...] line (don't delete it).
895 (forward-line 1)
896 (newline (- n (/ n 2)))))
897 (goto-char (point-min)))
898 (setq buffer-undo-list nil)
899 (set-buffer-modified-p nil)))))
900
901
902 ;; Below is some attempt to handle language specific strings. These
903 ;; are currently only used in the tutorial.
904
905 (defconst lang-strings
906 '(("English" .
907 ((tut-chgdkey . "%s has been rebound, but you can use %s instead")
908 (tut-chgdkey2 . "More")
909 (tut-chgdhead . "
910 NOTICE: The main purpose of the Emacs tutorial is to teach you
911 the most important standard Emacs commands (key bindings).
912 However, your Emacs has been customized by changing some of
913 these basic editing commands, so it doesn't correspond to the
914 tutorial. We have inserted colored notices where the altered
915 commands have been introduced.")
916 (tut-chgdhead2 . "More"))))
917 "Language specific strings for Emacs.
918 This is an association list with the keys equal to the strings
919 that can be returned by `read-language-name'. The elements in
920 the list are themselves association lists with keys that are
921 string ids and values that are the language specific strings.
922
923 See `get-lang-string' for more information.")
924
925 (defun get-lang-string (lang stringid &optional no-eng-fallback)
926 "Get a language specific string for Emacs.
927 In certain places Emacs can replace a string shown to the user with
928 a language specific string. This function retrieves such strings.
929
930 LANG is the language specification. It should be one of those
931 strings that can be returned by `read-language-name'. STRINGID
932 is a symbol that specifies the string to retrieve.
933
934 If no string is found for STRINGID in the chosen language then
935 the English string is returned unless NO-ENG-FALLBACK is non-nil.
936
937 See `lang-strings' for more information.
938
939 Currently this feature is only used in `help-with-tutorial'."
940 (let ((my-lang-strings (assoc lang lang-strings))
941 (found-string))
942 (when my-lang-strings
943 (let ((entry (assoc stringid (cdr my-lang-strings))))
944 (when entry
945 (setq found-string (cdr entry)))))
946 ;; Fallback to English strings
947 (unless (or found-string
948 no-eng-fallback)
949 (setq found-string (get-lang-string "English" stringid t)))
950 found-string))
951
952 ;;(get-lang-string "English" 'tut-chgdkey)
953
954 (provide 'tutorial)
955
956 ;; arch-tag: c8e80aef-c3bb-4ffb-8af6-22171bf0c100
957 ;;; tutorial.el ends here