annotate lisp/prim/keydefs.el @ 136:b980b6286996 r20-2b2

Import from CVS: tag r20-2b2
author cvs
date Mon, 13 Aug 2007 09:31:12 +0200
parents cf808b4c4290
children 585fb297b004
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;; Define standard keybindings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 ;; Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ;; This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ;; XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; XEmacs is distributed in the hope that it will be useful, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; You should have received a copy of the GNU General Public License
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
17 ;; along with XEmacs; see the file COPYING. If not, write to the
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 52
diff changeset
18 ;; Free Software Foundation, 59 Temple Place - Suite 330,
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
19 ;; Boston, MA 02111-1307, USA.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; All the global bindings should be here so that one can reload things
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; like files.el without trashing one's personal bindings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;;; Synched up with: Not synched with FSF.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
26 ;;; Commentary:
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
27
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
28 ;;; Code:
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
29
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ;; created by C code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 (defvar global-map (current-global-map) "\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 Default global keymap mapping XEmacs keyboard input into commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 The value is a keymap which is usually (but not necessarily) XEmacs's
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 global map.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 ;; created by C code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 (defvar esc-map (symbol-function 'ESC-prefix) "\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 Default keymap for ESC (meta) commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 The normal global definition of the character ESC indirects to this keymap.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 (set-keymap-name global-map 'global-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 (set-keymap-name esc-map 'ESC-prefix)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 (define-prefix-command 'Control-X-prefix t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 (defvar ctl-x-map (symbol-function 'Control-X-prefix) "\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 Default keymap for C-x commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 The normal global definition of the character C-x indirects to this keymap.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 (define-key global-map "\C-x" 'Control-X-prefix)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 (define-prefix-command 'ctl-x-4-prefix t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 (defvar ctl-x-4-map (symbol-function 'ctl-x-4-prefix) "\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 Keymap for subcommands of C-x 4")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 (define-key global-map "\C-x4" 'ctl-x-4-prefix)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 (define-prefix-command 'ctl-x-5-prefix t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 (defvar ctl-x-5-map (symbol-function 'ctl-x-5-prefix) "\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 Keymap for subcommands of C-x 5")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 (define-key global-map "\C-x5" 'ctl-x-5-prefix)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 (define-prefix-command 'mode-specific-command-prefix t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 (defvar mode-specific-map (symbol-function 'mode-specific-command-prefix) "\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 Keymap for characters following C-c.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 (define-key global-map "\C-c" 'mode-specific-command-prefix)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 ;; FSFmacs buffer.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 (define-key global-map "\C-xb" 'switch-to-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 (define-key global-map "\C-xk" 'kill-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 (define-key global-map "\C-x\C-b" 'list-buffers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 (put 'erase-buffer 'disabled t) ;from buffer.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 ;; FSFmacs casefiddle.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 (define-key global-map "\C-x\C-u" 'upcase-region)
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 98
diff changeset
75 ;; This is silly with zmacs regions
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 98
diff changeset
76 ;(put 'upcase-region 'disabled t)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 (define-key global-map "\C-x\C-l" 'downcase-region)
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 98
diff changeset
78 ;; This is silly with zmacs regions
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 98
diff changeset
79 ;(put 'downcase-region 'disabled t)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 (define-key global-map "\M-u" 'upcase-region-or-word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 (define-key global-map "\M-l" 'downcase-region-or-word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 (define-key global-map "\M-c" 'capitalize-region-or-word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 ;; FSFmacs cmds.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 (let ((n 33))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 (while (<= n 255)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 (if (not (= n 127))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 (define-key global-map n 'self-insert-command))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 (setq n (1+ n))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 (define-key global-map " " 'self-insert-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 (define-key global-map "\C-a" 'beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 (define-key global-map "\C-b" 'backward-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 (define-key global-map "\C-e" 'end-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 (define-key global-map "\C-f" 'forward-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 (define-key global-map "\C-d" 'delete-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 (define-key global-map "\177" 'delete-backward-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 ;; FSFmacs files.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 (define-key global-map "\C-x\C-f" 'find-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 (define-key global-map "\C-x\C-q" 'toggle-read-only)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 (define-key global-map "\C-x\C-r" 'find-file-read-only)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 (define-key global-map "\C-x\C-v" 'find-alternate-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 (define-key global-map "\C-x\C-s" 'save-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 (define-key global-map "\C-xs" 'save-some-buffers)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 (define-key global-map "\C-x\C-w" 'write-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 (define-key global-map "\C-xi" 'insert-file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 (define-key global-map "\M-~" 'not-modified)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 (define-key global-map "\C-x\C-d" 'list-directory)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 (define-key global-map "\C-x\C-c" 'save-buffers-kill-emacs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 (define-key global-map "\C-x4f" 'find-file-other-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 (define-key global-map "\C-x4r" 'find-file-read-only-other-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 (define-key global-map "\C-x4\C-f" 'find-file-other-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 (define-key global-map "\C-x4b" 'switch-to-buffer-other-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 (define-key global-map "\C-x4\C-o" 'display-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 (define-key global-map "\C-x5b" 'switch-to-buffer-other-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 (define-key global-map "\C-x5f" 'find-file-other-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 (define-key global-map "\C-x5\C-f" 'find-file-other-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 (define-key global-map "\C-x5r" 'find-file-read-only-other-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 ;; FSFmacs frame.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 ;FSFmacs has these. It's probably a good idea to provide ways of hooking
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 ;these events, but it's unlikely that it's a good idea to do it this way.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 ;Just provide a hook, like the existing `select-frame-hook',
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 ;`deselect-frame-hook', `map-frame-hook', and `unmap-frame-hook'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 ;#### ergo need hooks for delete-frame and iconify-frame
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 ;(define-key global-map 'switch-frame 'handle-switch-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 ;(define-key global-map 'delete-frame 'handle-delete-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 ;(define-key global-map 'iconify-frame 'ignore-event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 ;(define-key global-map 'make-frame-visible 'ignore-event)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 ;; FSFmacs frame.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 ;; New FSF19 bindings: C-x 5 as prefix for window commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 (define-key global-map "\C-x52" 'make-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 (define-key global-map "\C-x50" 'delete-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 (define-key global-map "\C-x5o" 'other-frame)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 ;; XEmacs addition:
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 52
diff changeset
143 (define-key global-map "\C-x5m" 'mail-other-frame)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 ;; FSFmacs help.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
98
0d2f883870bc Import from CVS: tag r20-1b1
cvs
parents: 74
diff changeset
147 (define-key global-map (vector help-char) 'help-command)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 (define-key global-map 'help 'help-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 (define-key global-map 'f1 'help-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 ;; FSFmacs indent.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 ;;(define-key global-map "\t" 'self-insert-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (define-key global-map "\t" 'indent-for-tab-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 (define-key global-map "\M-\C-\\" 'indent-region)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 (define-key global-map "\C-x\t" 'indent-rigidly)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 (define-key global-map "\M-i" 'tab-to-tab-stop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 ;; XEmacs addition:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 (define-key global-map [(shift tab)] 'tab-to-tab-stop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 ;; FSFmacs isearch.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 (define-key global-map "\C-s" 'isearch-forward)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 (define-key global-map "\C-r" 'isearch-backward)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 (define-key global-map "\M-\C-s" 'isearch-forward-regexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 (define-key global-map "\M-\C-r" 'isearch-backward-regexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 ;; FSFmacs keyboard.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169
136
b980b6286996 Import from CVS: tag r20-2b2
cvs
parents: 104
diff changeset
170 (define-key global-map "\C-z" 'suspend-emacs-or-iconify-frame)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 (define-key global-map "\C-x\C-z" 'suspend-or-iconify-emacs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 ;; FSFmacs loaddefs.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 ;; New FSF19 bindings: C-x n as a prefix for narrowing commands.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 (define-key global-map "\C-xn" (let ((map (make-sparse-keymap)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 (set-keymap-name map 'narrowing-prefix)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 (put 'narrow-to-region 'disabled t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 (define-key global-map "\C-xnn" 'narrow-to-region)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 (define-key global-map "\C-xnw" 'widen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 ;; Old v18 bindings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 ;(define-key global-map "\C-xn" 'narrow-to-region)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 ;(define-key global-map "\C-xw" 'widen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 (define-key global-map "\C-j" 'newline-and-indent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 (define-key global-map "\C-m" 'newline)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 (define-key global-map "\C-o" 'open-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 (define-key global-map "\M-\C-o" 'split-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 (define-key global-map "\C-q" 'quoted-insert)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 (define-key global-map "\M-^" 'delete-indentation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 (define-key global-map "\M-\\" 'delete-horizontal-space)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 (define-key global-map "\M-m" 'back-to-indentation)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 (define-key global-map "\C-x\C-o" 'delete-blank-lines)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 (define-key global-map "\M- " 'just-one-space)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 (define-key global-map "\M-z" 'zap-to-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 (define-key global-map "\M-=" 'count-lines-region)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 (define-key global-map "\C-x=" 'what-cursor-position)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 (define-key global-map "\M-:" 'eval-expression)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 ;; Define ESC ESC : like ESC : for people who type ESC ESC out of habit.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 (define-key global-map "\M-\e:" 'eval-expression)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 ;(define-key global-map "\M-\e" 'eval-expression)
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 98
diff changeset
203 ;; Do we really need to disable this now that it is harder to type
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 98
diff changeset
204 ;; by accident?
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 98
diff changeset
205 ;; (put 'eval-expression 'disabled t)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 ;; Changed from C-x ESC so that function keys work following C-x.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 (define-key global-map "\C-x\e\e" 'repeat-complex-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 ;(define-key global-map "\C-x\e" 'repeat-complex-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 (define-key global-map "\C-xu" 'advertised-undo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 ;; Many people are used to typing C-/ on X terminals and getting C-_.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 (define-key global-map '(control /) 'undo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 (define-key global-map "\C-_" 'undo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 (define-key global-map "\M-!" 'shell-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 (define-key global-map "\M-|" 'shell-command-on-region)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 (define-key global-map "\C-u" 'universal-argument)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 ;; Make Control-0 - Control-9 set the prefix argument, like Meta-0.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 (let ((i ?0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 (while (<= i ?9)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 (define-key global-map (list 'meta i) 'digit-argument)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 (define-key global-map (list 'control i) 'digit-argument)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 (define-key global-map (list 'control 'meta i) 'digit-argument)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 (setq i (1+ i))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 (define-key global-map '(meta -) 'negative-argument)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 (define-key global-map '(control -) 'negative-argument)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 (define-key global-map '(control meta -) 'negative-argument)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 (define-key global-map "\C-k" 'kill-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 (define-key global-map "\C-w" 'kill-region)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 (define-key global-map "\M-w" 'kill-ring-save)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 (define-key global-map "\M-\C-w" 'append-next-kill)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 (define-key global-map "\C-y" 'yank)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 (define-key global-map "\M-y" 'yank-pop)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 ;; Old v18 binding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 ;(define-key global-map "\C-xa" 'append-to-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 (define-key global-map "\C-@" 'set-mark-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 ;; Many people are used to typing C-SPC and getting C-@.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 (define-key global-map '(control ? ) 'set-mark-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 (define-key global-map "\C-x\C-x" 'exchange-point-and-mark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 (define-key global-map "\C-x\C-@" 'pop-global-mark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 (define-key global-map [(control x) (control ? )] 'pop-global-mark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 (define-key global-map "\C-n" 'next-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 (define-key global-map "\C-p" 'previous-line)
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 98
diff changeset
247 ;(define-key global-map "\C-x\C-n" 'set-goal-column)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 ;; XEmacs:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 ;;; Many people have said they rarely use this feature, and often type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 ;;; it by accident. Maybe it shouldn't even be on a key.
104
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 98
diff changeset
251 ;;; Done. -hniksic
cf808b4c4290 Import from CVS: tag r20-1b4
cvs
parents: 98
diff changeset
252 ;(put 'set-goal-column 'disabled t)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 (define-key global-map [menu] 'execute-extended-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 (define-key global-map [find] 'search-forward)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 (define-key global-map "\C-t" 'transpose-chars)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 (define-key global-map "\M-t" 'transpose-words)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 (define-key global-map "\M-\C-t" 'transpose-sexps)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 (define-key global-map "\C-x\C-t" 'transpose-lines)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 (define-key global-map "\M-;" 'indent-for-comment)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 (define-key global-map "\M-j" 'indent-new-comment-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 (define-key global-map "\M-\C-j" 'indent-new-comment-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 (define-key global-map "\C-x;" 'set-comment-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 (define-key global-map "\C-xf" 'set-fill-column)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 (define-key global-map "\C-x$" 'set-selective-display)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 (define-key global-map "\M-@" 'mark-word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 (define-key global-map "\M-f" 'forward-word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 (define-key global-map "\M-b" 'backward-word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 (define-key global-map "\M-d" 'kill-word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 (define-key global-map "\M-\177" 'backward-kill-word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 (define-key global-map "\M-<" 'beginning-of-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 (define-key global-map "\M->" 'end-of-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 (define-key global-map "\C-xh" 'mark-whole-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 (define-key global-map "\M-\\" 'delete-horizontal-space)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 (define-key global-map "\M-\C-f" 'forward-sexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 (define-key global-map "\M-\C-b" 'backward-sexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 (define-key global-map "\M-\C-u" 'backward-up-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 (define-key global-map "\M-\C-@" 'mark-sexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 (define-key global-map "\M-\C-d" 'down-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 (define-key global-map "\M-\C-k" 'kill-sexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 (define-key global-map "\M-\C-n" 'forward-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 (define-key global-map "\M-\C-p" 'backward-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 (define-key global-map "\M-\C-a" 'beginning-of-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 (define-key global-map "\M-\C-e" 'end-of-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 (define-key global-map "\M-\C-h" 'mark-defun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 (define-key global-map "\M-\(" 'insert-parentheses)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 (define-key global-map "\M-\)" 'move-past-close-and-reindent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 (define-key global-map "\M-\t" 'lisp-complete-symbol)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 (define-key global-map '(control meta delete) 'backward-kill-sexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 (define-key global-map "\C-x/" 'point-to-register)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 (define-key global-map "\C-xj" 'jump-to-register)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 (define-key global-map "\C-xx" 'copy-to-register)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 (define-key global-map "\C-xg" 'insert-register)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 ;; Old v18 binding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 ;(define-key global-map "\C-xr" 'copy-rectangle-to-register)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 ;; New FSF19 bindings: C-x r as a prefix for register commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 (define-key global-map "\C-xr" (let ((map (make-sparse-keymap)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 (set-keymap-name map 'rectangle-prefix)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 (define-key global-map "\C-xr\C-@" 'point-to-register)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 (define-key global-map "\C-xr " 'point-to-register)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 (define-key global-map "\C-xrj" 'jump-to-register)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 (define-key global-map "\C-xrs" 'copy-to-register)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 (define-key global-map "\C-xrx" 'copy-to-register)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 (define-key global-map "\C-xri" 'insert-register)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 (define-key global-map "\C-xrg" 'insert-register)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 (define-key global-map "\C-xrr" 'copy-rectangle-to-register)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 (define-key global-map "\C-xrc" 'clear-rectangle)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 (define-key global-map "\C-xrk" 'kill-rectangle)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 (define-key global-map "\C-xry" 'yank-rectangle)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 (define-key global-map "\C-xro" 'open-rectangle)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 (define-key global-map "\C-xrt" 'string-rectangle)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 (define-key global-map "\C-xrw" 'window-configuration-to-register)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 ;(define-key global-map "\C-xrf" 'frame-configuration-to-register)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 (define-key global-map "\M-q" 'fill-paragraph-or-region)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 ;(define-key global-map "\M-q" 'fill-paragraph)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 ;(define-key global-map "\M-g" 'fill-region) ;now bound to goto-line
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 (define-key global-map "\C-x." 'set-fill-prefix)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 ; Using {} instead of [] is 1) FSF compatible and 2) allows function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 ; keys to work on ttys. M-[ is the beginning of most the function key
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 ; sequences.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 (define-key global-map "\M-{" 'backward-paragraph)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 (define-key global-map "\M-}" 'forward-paragraph)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 (define-key global-map "\M-h" 'mark-paragraph)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 (define-key global-map "\M-a" 'backward-sentence)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 (define-key global-map "\M-e" 'forward-sentence)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 (define-key global-map "\M-k" 'kill-sentence)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 (define-key global-map "\C-x\177" 'backward-kill-sentence)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 (define-key global-map "\C-x[" 'backward-page)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 (define-key global-map "\C-x]" 'forward-page)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 (define-key global-map "\C-x\C-p" 'mark-page)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 (define-key global-map "\C-xl" 'count-lines-page)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 (define-key global-map "\C-xnp" 'narrow-to-page)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 ;; Old v18 bindings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 ;(define-key global-map "\C-xp" 'narrow-to-page)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 (put 'narrow-to-page 'disabled t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 ;; Old v18 bindings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 ;(define-key global-map "\C-x\C-a" 'add-mode-abbrev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 ;(define-key global-map "\C-x+" 'add-global-abbrev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 ;(define-key global-map "\C-x\C-h" 'inverse-add-mode-abbrev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 ;(define-key global-map "\C-x-" 'inverse-add-global-abbrev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 (define-key global-map "\M-'" 'abbrev-prefix-mark)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 (define-key global-map "\C-x'" 'expand-abbrev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 ;; New FSF19 bindings: C-x a as a prefix for abbrev commands
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 (define-key global-map "\C-xal" 'add-mode-abbrev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 (define-key global-map "\C-xa\C-a" 'add-mode-abbrev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 (define-key global-map "\C-xag" 'add-global-abbrev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 (define-key global-map "\C-xa+" 'add-mode-abbrev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 (define-key global-map "\C-xaig" 'inverse-add-global-abbrev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 (define-key global-map "\C-xail" 'inverse-add-mode-abbrev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 (define-key global-map "\C-xa-" 'inverse-add-global-abbrev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 (define-key global-map "\C-xae" 'expand-abbrev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 (define-key global-map "\C-xa'" 'expand-abbrev)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 (define-key global-map "\M-\C-l" 'switch-to-other-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 ;; Default binding of "Backspace" is the same as delete.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 ;; Default binding of "Control-h" is help.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 (define-key global-map 'backspace '[delete])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 (define-key global-map '(meta backspace) '[(meta delete)])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 (define-key global-map '(control backspace) '[(control delete)])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 (define-key global-map '(control meta backspace) '[(control meta delete)])
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 (define-key global-map "\M-\C-z" 'activate-region)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 ;; FSFmacs macros.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 (define-key global-map "\C-xe" 'call-last-kbd-macro)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 (define-key global-map "\C-x\(" 'start-kbd-macro)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 (define-key global-map "\C-x\)" 'end-kbd-macro)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 ;; FSFmacs macros.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 (define-key global-map "\C-xq" 'kbd-macro-query)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 ;; FSFmacs minibuffer.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 ; see also minibuf.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 (define-key global-map "\M-\C-c" 'exit-recursive-edit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 (define-key global-map "\C-]" 'abort-recursive-edit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 (define-key global-map "\M-x" 'execute-extended-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 ;; FSFmacs window.c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 (define-key global-map "\C-x0" 'delete-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 (define-key global-map "\C-x1" 'delete-other-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 (define-key global-map "\C-x2" 'split-window-vertically)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 (define-key global-map "\C-x3" 'split-window-horizontally)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 ;; Old XEmacs binding
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 ;;(define-key global-map "\C-x5" 'split-window-horizontally)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 (define-key global-map "\C-xo" 'other-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 (define-key global-map "\C-x^" 'enlarge-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 (define-key global-map "\C-x<" 'scroll-left)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 (define-key global-map "\C-x>" 'scroll-right)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 (define-key global-map "\C-v" 'scroll-up)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 (define-key global-map "\M-v" 'scroll-down)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 (define-key global-map "\M-\C-v" 'scroll-other-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 ; meta-shift-V, that is.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 (define-key global-map '(meta V) 'scroll-other-window-down)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 (define-key global-map "\C-l" 'recenter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 (define-key global-map "\M-r" 'move-to-window-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 ;; FSFmacs window.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 (define-key global-map "\C-x6" 'window-configuration-to-register)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 ;(define-key global-map "\C-x7" 'jump-to-register);ie register-to-window-config
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 (define-key global-map "\C-x}" 'enlarge-window-horizontally)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 (define-key global-map "\C-x{" 'shrink-window-horizontally)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 ;; New FSF19 bindings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 (define-key global-map "\C-x-" 'shrink-window-if-larger-than-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 (define-key global-map "\C-x+" 'balance-windows)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 ;;(define-key global-map "\C-g" 'keyboard-quit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 (let ((ch (quit-char)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 (if (or (characterp ch) (integerp ch))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 (setq ch (char-to-string ch)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 (define-key global-map ch 'keyboard-quit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 (define-key global-map "\e\e\e" 'keyboard-escape-quit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 (define-key global-map "\M-%" 'query-replace)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 ; autoloaded
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 ;(define-key global-map "\C-x4a" 'add-change-log-entry-other-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 ; autoloaded
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 ;(define-key global-map "\C-x`" 'next-error)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 ; autoloaded
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 ;(define-key global-map "\M-/" 'dabbrev-expand)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 ; autoloaded
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 ;(define-key global-map "\C-xd" 'dired)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 ; autoloaded
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 ;(define-key global-map "\C-x4d" 'dired-other-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 (define-key global-map "\M-$" 'ispell-word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 (define-key global-map "\C-x4m" 'mail-other-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 (define-key global-map "\C-xm" 'mail)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 (define-key global-map "\M-." 'find-tag)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 (define-key global-map "\C-x4." 'find-tag-other-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 (define-key global-map "\M-," 'tags-loop-continue)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 (define-key global-map '(control <) 'mark-beginning-of-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 (define-key global-map '(control >) 'mark-end-of-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 (define-key global-map "\C-x\C-e" 'eval-last-sexp) ;bogus!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 (define-key global-map "\M-g" 'goto-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 ;; Keypad type things
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 ;; I removed all the fkey crap, because where-is is now smart enough
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 ;; to show all bindings. --ben
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 ;;; These aren't bound to kbd macros like "\C-b" so that they have the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 ;; expected behavior even in, for example, vi-mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 ;; We use here symbolic names, assuming that the corresponding keys will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 ;; generate these keysyms. This is not true on Suns, but x-win-sun.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 ;; fixes that. If it turns out that the semantics of these keys should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 ;; differ from server to server, this should be moved into server-specific
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 ;; files, but these appear to be the standard Motif and PC bindings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 ;; movement by units
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 (define-key global-map 'left 'backward-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 (define-key global-map 'up 'previous-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 (define-key global-map 'right 'forward-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 (define-key global-map 'down 'next-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 ;; movement by pages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 (define-key global-map 'prior 'scroll-down)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 (define-key global-map 'next 'scroll-up)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 ;; movement to the limits
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 (define-key global-map 'home 'beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 (define-key global-map 'end 'end-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 ;;; Miscellaneous key bindings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 (define-key global-map 'again 'repeat-complex-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 (define-key global-map 'insert 'overwrite-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 ;;; These aren't bound to kbd macros like "\C-b" so that they have the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 ;; expected behavior even in, for example, vi-mode.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 ;; We use here symbolic names, assuming that the corresponding keys will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 ;; generate these keysyms. This is not true on Suns, but x-win-sun.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 ;; fixes that. If it turns out that the semantics of these keys should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 ;; differ from server to server, this should be moved into server-specific
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 ;; files, but these appear to be the standard Motif and PC bindings.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 ;; potential R6isms
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
525 (define-key global-map 'kp-left 'backward-char)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
526 (define-key global-map 'kp-up 'previous-line)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
527 (define-key global-map 'kp-right 'forward-char)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
528 (define-key global-map 'kp-down 'next-line)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 ;; movement by larger blocks
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 (define-key global-map '(control left) 'backward-word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 (define-key global-map '(control up) #'(lambda ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 (interactive "_")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 (forward-line -6)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 (define-key global-map '(control right) 'forward-word)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 (define-key global-map '(control down) #'(lambda ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 (interactive "_")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 (forward-line 6)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 ;; context-sensitive movement
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 (define-key global-map '(meta left) 'backward-sexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 (define-key global-map '(meta right) 'forward-sexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 (define-key global-map '(meta up) 'backward-paragraph)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 (define-key global-map '(meta down) 'forward-paragraph)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 ;; movement by pages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 (define-key global-map '(control prior) 'scroll-right)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 (define-key global-map '(control next) 'scroll-left)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 ;; potential R6isms
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
551 (define-key global-map 'kp-prior 'scroll-down)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
552 (define-key global-map 'kp-next 'scroll-up)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
553 (define-key global-map '(control kp-prior) 'scroll-right)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
554 (define-key global-map '(control kp-next) 'scroll-left)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 ;; movement to the limits
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 (define-key global-map '(control home) 'beginning-of-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 (define-key global-map '(control end) 'end-of-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 (define-key global-map 'begin 'beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 (define-key global-map '(control begin) 'beginning-of-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 ;; potential R6isms
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
563 (define-key global-map 'kp-home 'beginning-of-line)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
564 (define-key global-map '(control kp-home) 'beginning-of-buffer)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
565 (define-key global-map 'kp-end 'end-of-line)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
566 (define-key global-map '(control kp-end) 'end-of-buffer)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 ;; movement between windows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 (define-key global-map '(control tab) 'other-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 (define-key global-map '(control shift tab) 'backward-other-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 ;; movement in other windows
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 (define-key global-map '(meta next) 'scroll-other-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 (define-key global-map '(meta prior) 'scroll-other-window-down)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 (define-key global-map '(meta home) 'beginning-of-buffer-other-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 (define-key global-map '(meta end) 'end-of-buffer-other-window)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 ;; potential R6isms
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
578 (define-key global-map '(meta kp-next) 'scroll-other-window)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
579 (define-key global-map '(meta kp-prior) 'scroll-other-window-down)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
580 (define-key global-map '(meta kp-home) 'beginning-of-buffer-other-window)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
581 (define-key global-map '(meta kp-end) 'end-of-buffer-other-window)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 ;; potential R6isms
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 (define-key global-map 'redo 'repeat-complex-command)
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
585 (define-key global-map 'kp-insert 'overwrite-mode)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
586 (define-key global-map 'kp-delete 'backward-delete-char-untabify)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
588 (define-key global-map 'kp-enter [return]) ; do whatever RET does now
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
589 (define-key global-map 'kp-tab [tab])
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 (define-key global-map 'undo 'undo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 (define-key global-map 'help 'help-for-help)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
594 (define-key global-map 'kp-space 'self-insert-command)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
595 (define-key global-map 'kp-equal 'self-insert-command)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
596 (define-key global-map 'kp-multiply 'self-insert-command)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
597 (define-key global-map 'kp-add 'self-insert-command)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
598 (define-key global-map 'kp-separator 'self-insert-command)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
599 (define-key global-map 'kp-subtract 'self-insert-command)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
600 (define-key global-map 'kp-decimal 'self-insert-command)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
601 (define-key global-map 'kp-divide 'self-insert-command)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
603 (define-key global-map 'kp-0 'self-insert-command)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
604 (define-key global-map 'kp-1 'self-insert-command)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
605 (define-key global-map 'kp-2 'self-insert-command)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
606 (define-key global-map 'kp-3 'self-insert-command)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
607 (define-key global-map 'kp-4 'self-insert-command)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
608 (define-key global-map 'kp-5 'self-insert-command)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
609 (define-key global-map 'kp-6 'self-insert-command)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
610 (define-key global-map 'kp-7 'self-insert-command)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
611 (define-key global-map 'kp-8 'self-insert-command)
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
612 (define-key global-map 'kp-9 'self-insert-command)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 (define-key global-map 'select 'function-key-error)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 (define-key global-map 'print 'function-key-error)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 (define-key global-map 'execute 'execute-extended-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 (define-key global-map 'clearline 'function-key-error)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 (define-key global-map 'insertline 'open-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 (define-key global-map 'deleteline 'kill-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 (define-key global-map 'insertchar 'function-key-error)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 (define-key global-map 'deletechar 'delete-char)
74
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
622
54cc21c15cbb Import from CVS: tag r20-0b32
cvs
parents: 70
diff changeset
623 ;;; keydefs.el ends here