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