diff options
author | Juri Linkov <juri@jurta.org> | 2010-04-14 03:33:32 +0300 |
---|---|---|
committer | Juri Linkov <juri@jurta.org> | 2010-04-14 03:33:32 +0300 |
commit | 3212974649ca9415a3a4a5197a169a0160a6b36f (patch) | |
tree | c4190e720ab70aa0950e0193c7a1d5fb7c3032cb /lisp/tutorial.el | |
parent | 9013a7f82ede2a309498ae62ac22dce4791b3f4a (diff) | |
download | emacs-3212974649ca9415a3a4a5197a169a0160a6b36f.tar.gz |
Bind `C-v' to `scroll-up-command' and `M-v' to `scroll-down-command'.
http://lists.gnu.org/archive/html/emacs-devel/2010-04/msg00403.html
* window.c (keys_of_window): Rebind `C-v' from `scroll-up' to
`scroll-up-command' and `M-v' from `scroll-down' to
`scroll-down-command'.
* tutorial.el (tutorial--default-keys): Rebind `C-v' to
`scroll-up-command' and `M-v' to `scroll-down-command'.
* emulation/cua-rect.el (cua--init-rectangles):
* forms.el (forms--change-commands):
* image-mode.el (image-mode-map):
Remap scroll-down-command and scroll-up-command
in addition to scroll-down and scroll-up.
Diffstat (limited to 'lisp/tutorial.el')
-rw-r--r-- | lisp/tutorial.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/tutorial.el b/lisp/tutorial.el index de7f7ab4a3c..0ac315ac6dc 100644 --- a/lisp/tutorial.el +++ b/lisp/tutorial.el @@ -218,8 +218,8 @@ LEFT and RIGHT are the elements to compare." (save-buffers-kill-terminal [?\C-x ?\C-c]) ;; * SUMMARY - (scroll-up [?\C-v]) - (scroll-down [?\M-v]) + (scroll-up-command [?\C-v]) + (scroll-down-command [?\M-v]) (recenter-top-bottom [?\C-l]) ;; * BASIC CURSOR CONTROL |