summaryrefslogtreecommitdiff
path: root/lisp/tutorial.el
Commit message (Collapse)AuthorAgeFilesLines
* Switch license to GPLv3 or later.Glenn Morris2007-07-251-1/+1
|
* (tutorial--find-changed-keys): Handle C-x specially like ESC.Richard M. Stallman2007-07-151-1/+7
|
* (get-lang-string, tutorial--find-changed-keys): Fix typos in docstrings.Juanma Barranquero2007-05-161-6/+6
|
* (tutorial--describe-nonstandard-key): Tweak text in the menus case.Glenn Morris2007-02-281-1/+4
|
* (tutorial--detailed-help): Make the list of changed keys look nicer.Richard M. Stallman2007-01-301-14/+10
|
* (tutorial--default-keys): Check M-DEL, not `M-backspace'.Richard M. Stallman2007-01-281-88/+91
| | | | | | Don't check `backspace'. (tutorial--find-changed-keys): Look up bindings in a temp buffer in Fundamental mode.
* Add 2007 to copyright years.Glenn Morris2007-01-211-1/+1
|
* (tutorial--display-changes): Show M-x sequence if noChong Yidong2007-01-091-1/+4
| | | | | | keybinding is found. (tutorial--find-changed-keys): Never treat null keybinding as a remapping.
* (tutorial--describe-nonstandard-key): Fix typo.Juanma Barranquero2007-01-031-1/+1
|
* (tutorial--save-tutorial): Prompt before saving tutorial state.Chong Yidong2006-12-221-3/+4
|
* (tutorial--detailed-help): Remove unnecessary linkChong Yidong2006-12-221-87/+70
| | | | | | | | | | to the Emacs Lisp reference manual. (tutorial--tab-map): Remove. All callers changed. (tutorial--find-changed-keys): New elt QUIET, used to... (tutorial--display-changes): ...ensure that warning messages are only issued once per changed key. (tutorial--remove-remarks): Delete unused code-path. (lang-strings): Remove extraneous formatting.
* Remove `cl' requirement. Clean up whitespace.Chong Yidong2006-12-211-179/+105
| | | | | | | | | | | | Replace '?\ ' by '?\s' throughout. (tutorial-warning-face): Inherit font-lock-warning-face. Move to `help' custom group. (tutorial--key-description): New function. (tutorial--display-changes): Remove redundant arg. Scan for all key sequences to avoid false matches. Cleanup. (tutorial--saved-dir): Save to a subdirectory in .emacs.d to reduce homedir pollution. (help-with-tutorial): Call tutorial--display-changes with no arg.
* (tutorial--default-keys): Add newline and delete-backward-char bindings.Chong Yidong2006-11-211-8/+23
| | | | | | | (tutorial--detailed-help): Save excursion when finding keys. Correct warning string for M-x FOO case. (tutorial--display-changes): Print special keys in tutorial style. Tweak search regexp for changed keys.
* (tutorial-warning-face): New face.Chong Yidong2006-11-201-19/+29
| | | | | | (tutorial--detailed-help, tutorial--display-changes): Use it. (tutorial--find-changed-keys): Check ESC-prefix binding specially. Improve search pattern for occurrences of changed keys.
* Add arch taglineMiles Bader2006-10-311-0/+1
|
* Fix last fix.Chong Yidong2006-10-301-155/+155
|
* * tutorial.el: Move defvars to avoid bytecomp warnings.Chong Yidong2006-10-301-175/+173
| | | | | | | (tutorial--find-changed-keys): Check if viper-current-state is bound before using it. (help-with-tutorial): Check if viper-tutorial is defined before using it.
* * help-fns.el (help-with-tutorial): Moved to tutorial.el.Chong Yidong2006-10-301-0/+1006
* tutorial.el: New file. (help-with-tutorial): Moved here from help-fns.el. Added help for rebound keys. Fixed resume of tutorial. (tutorial--describe-nonstandard-key, tutorial--sort-keys) (tutorial--find-changed-keys, tutorial--display-changes) (tutorial--saved-dir, tutorial--saved-file) (tutorial--save-tutorial): New functions to support the changes in help-with-tutorial.