Mercurial > emacs
annotate lisp/bindings.el @ 17605:83850481ae70
(init_lread): Don't add ../lisp to the dump-time load path.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 30 Apr 1997 18:41:53 +0000 |
parents | eaad8bd00b12 |
children | 5b2fa4a13a8b |
rev | line source |
---|---|
16164 | 1 ;;; bindings.el --- define standard key bindings and some variables. |
2 | |
3 ;; Copyright (C) 1985,86,87,92,93,94,95,96 Free Software Foundation, Inc. | |
4 | |
5 ;; Maintainer: FSF | |
6 ;; Keywords: 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 | |
22 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
24 | |
25 ;;; Commentary: | |
26 | |
27 ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
28 ;;; Special formatting conventions are used in this file! | |
29 ;;; | |
30 ;;; a backslash-newline is used at the beginning of a documentation string | |
31 ;;; when that string should be stored in the file etc/DOCnnn, not in core. | |
32 ;;; | |
33 ;;; Such strings read into Lisp as numbers (during the pure-loading phase). | |
34 ;;; | |
35 ;;; But you must obey certain rules to make sure the string is understood | |
36 ;;; and goes into etc/DOCnnn properly. Otherwise, the string will not go | |
37 ;;; anywhere! | |
38 ;;; | |
39 ;;; The doc string must appear in the standard place in a call to | |
40 ;;; defun, autoload, defvar or defconst. No Lisp macros are recognized. | |
41 ;;; The open-paren starting the definition must appear in column 0. | |
42 ;;; | |
43 ;;; In defvar and defconst, there is an additional rule: | |
44 ;;; The double-quote that starts the string must be on the same | |
45 ;;; line as the defvar or defconst. | |
46 ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | |
47 | |
48 ;;; Code: | |
49 | |
17058
8d2ff69b0c0a
(mode-line-mule-info): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
16776
diff
changeset
|
50 (defconst mode-line-mule-info |
8d2ff69b0c0a
(mode-line-mule-info): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
16776
diff
changeset
|
51 (purecopy '(enable-multibyte-characters |
8d2ff69b0c0a
(mode-line-mule-info): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
16776
diff
changeset
|
52 ((current-input-method ("[" current-input-method-title "]")) |
8d2ff69b0c0a
(mode-line-mule-info): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
16776
diff
changeset
|
53 "%z:"))) |
8d2ff69b0c0a
(mode-line-mule-info): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
16776
diff
changeset
|
54 "Mode-line control for displaying information of multilingual environment.") |
8d2ff69b0c0a
(mode-line-mule-info): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
16776
diff
changeset
|
55 |
8d2ff69b0c0a
(mode-line-mule-info): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
16776
diff
changeset
|
56 (make-variable-buffer-local 'mode-line-mule-info) |
8d2ff69b0c0a
(mode-line-mule-info): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
16776
diff
changeset
|
57 |
16691
285f4e41d163
Change defconsts to defvars.
Richard M. Stallman <rms@gnu.org>
parents:
16523
diff
changeset
|
58 (defvar mode-line-buffer-identification (purecopy '("%F: %12b")) |
16164 | 59 "Mode-line control for identifying the buffer being displayed. |
60 Its default value is (\"%F: %12b\"). Under X, `%F' is replaced with `Emacs'. | |
61 Major modes that edit things other than ordinary files may change this | |
62 \(e.g. Info, Dired,...)") | |
63 | |
64 (make-variable-buffer-local 'mode-line-buffer-identification) | |
65 | |
16691
285f4e41d163
Change defconsts to defvars.
Richard M. Stallman <rms@gnu.org>
parents:
16523
diff
changeset
|
66 (defvar mode-line-process nil |
16164 | 67 "Mode-line control for displaying info on process status. |
68 Normally nil in most modes, since there is no process to display.") | |
69 | |
70 (make-variable-buffer-local 'mode-line-process) | |
71 | |
16691
285f4e41d163
Change defconsts to defvars.
Richard M. Stallman <rms@gnu.org>
parents:
16523
diff
changeset
|
72 (defvar mode-line-modified (purecopy '("--%1*%1+-")) |
16164 | 73 "Mode-line control for displaying whether current buffer is modified.") |
74 | |
75 (make-variable-buffer-local 'mode-line-modified) | |
76 | |
77 (setq-default mode-line-format | |
78 (list (purecopy "") | |
17058
8d2ff69b0c0a
(mode-line-mule-info): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
16776
diff
changeset
|
79 'mode-line-mule-info |
16164 | 80 'mode-line-modified |
81 'mode-line-buffer-identification | |
82 (purecopy " ") | |
83 'global-mode-string | |
84 (purecopy " %[(") | |
85 'mode-name 'mode-line-process 'minor-mode-alist | |
86 (purecopy "%n") | |
87 (purecopy ")%]--") | |
88 (purecopy '(line-number-mode "L%l--")) | |
89 (purecopy '(column-number-mode "C%c--")) | |
90 (purecopy '(-3 . "%p")) | |
91 (purecopy "-%-"))) | |
92 | |
93 (defvar minor-mode-alist nil "\ | |
94 Alist saying how to show minor modes in the mode line. | |
95 Each element looks like (VARIABLE STRING); | |
96 STRING is included in the mode line iff VARIABLE's value is non-nil. | |
97 | |
98 Actually, STRING need not be a string; any possible mode-line element | |
99 is okay. See `mode-line-format'.") | |
16523
53306ee8953d
(minor-mode-alist): Don't use purecopy.
Richard M. Stallman <rms@gnu.org>
parents:
16164
diff
changeset
|
100 ;; Don't use purecopy here--some people want to change these strings. |
53306ee8953d
(minor-mode-alist): Don't use purecopy.
Richard M. Stallman <rms@gnu.org>
parents:
16164
diff
changeset
|
101 (setq minor-mode-alist '((abbrev-mode " Abbrev") |
53306ee8953d
(minor-mode-alist): Don't use purecopy.
Richard M. Stallman <rms@gnu.org>
parents:
16164
diff
changeset
|
102 (overwrite-mode overwrite-mode) |
53306ee8953d
(minor-mode-alist): Don't use purecopy.
Richard M. Stallman <rms@gnu.org>
parents:
16164
diff
changeset
|
103 (auto-fill-function " Fill") |
53306ee8953d
(minor-mode-alist): Don't use purecopy.
Richard M. Stallman <rms@gnu.org>
parents:
16164
diff
changeset
|
104 ;; not really a minor mode... |
53306ee8953d
(minor-mode-alist): Don't use purecopy.
Richard M. Stallman <rms@gnu.org>
parents:
16164
diff
changeset
|
105 (defining-kbd-macro " Def"))) |
16164 | 106 |
107 ;; These variables are used by autoloadable packages. | |
108 ;; They are defined here so that they do not get overridden | |
109 ;; by the loading of those packages. | |
110 | |
111 ;; Names in directory that end in one of these | |
112 ;; are ignored in completion, | |
113 ;; making it more likely you will get a unique match. | |
114 (setq completion-ignored-extensions | |
16776
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
115 (append |
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
116 (cond ((or (eq system-type 'ms-dos) (eq system-type 'windows-nt)) |
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
117 '(".o" "~" ".bin" ".bak" ".obj" ".map" |
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
118 ".a" ".ln" ".blg" ".bbl")) |
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
119 ((eq system-type 'vax-vms) |
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
120 '(".obj" ".exe" ".bin" ".lbin" ".sbin" |
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
121 ".brn" ".rnt" ".mem" ".lni" ".lis" |
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
122 ".olb" ".tlb" ".mlb" ".hlb")) |
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
123 (t |
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
124 '(".o" "~" ".bin" ".lbin" ".fasl" |
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
125 ".a" ".ln" ".blg" ".bbl"))) |
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
126 '(".elc" ".lof" |
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
127 ".glo" ".idx" ".lot" |
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
128 ;; TeX-related |
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
129 ".dvi" ".fmt" |
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
130 ;; Texinfo-related |
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
131 ".toc" ".log" ".aux" |
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
132 ".cp" ".fn" ".ky" ".pg" ".tp" ".vr" |
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
133 ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs"))) |
16164 | 134 |
135 (setq debug-ignored-errors | |
136 '(beginning-of-line beginning-of-buffer end-of-line | |
137 end-of-buffer end-of-file buffer-read-only | |
138 "^Previous command was not a yank$" | |
139 "^Minibuffer window is not active$" | |
140 "^End of history; no next item$" | |
141 "^Beginning of history; no preceding item$" | |
142 "^No recursive edit is in progress$" | |
143 "^Changes to be undone are outside visible portion of buffer$" | |
144 "^No undo information in this buffer$" | |
145 "^No further undo information$" | |
146 "^Save not confirmed$" | |
147 "^Recover-file cancelled\\.$" | |
148 | |
149 ;; comint | |
150 "^Not at command line$" | |
151 "^Empty input ring$" | |
152 "^No history$" | |
153 "^Not found$";; To common? | |
154 "^Current buffer has no process$" | |
155 | |
156 ;; dabbrev | |
17537
353927a72c58
(debug-ignored-errors): Update the regexps for
Richard M. Stallman <rms@gnu.org>
parents:
17058
diff
changeset
|
157 "^No dynamic expansion for .* found$" |
353927a72c58
(debug-ignored-errors): Update the regexps for
Richard M. Stallman <rms@gnu.org>
parents:
17058
diff
changeset
|
158 "^No further dynamic expansion for .* found$" |
16164 | 159 |
160 ;; Completion | |
161 "^To complete, the point must be after a symbol at least [0-9]* character long\\.$" | |
162 "^The string \".*\" is too short to be saved as a completion\\.$" | |
163 | |
164 ;; Compile | |
165 "^No more errors\\( yet\\|\\)$" | |
166 | |
167 ;; Gnus | |
168 "^NNTP: Connection closed\\.$" | |
169 | |
170 ;; info | |
171 "^Node has no Previous$" | |
172 "^No \".*\" in index$" | |
173 | |
174 ;; imenu | |
175 "^No items suitable for an index found in this buffer\\.$" | |
176 "^The mode \".*\" does not take full advantage of imenu\\.el yet\\.$" | |
177 | |
178 ;; ispell | |
179 "^No word found to check!$" | |
180 | |
181 ;; mh-e | |
182 "^Cursor not pointing to message$" | |
183 "^There is no other window$" | |
184 | |
185 ;; man | |
186 "^No manpage [0-9]* found$" | |
187 | |
188 ;; etags | |
189 "^No tags table in use! Use .* to select one\\.$" | |
190 "^There is no default tag$" | |
191 "^No previous tag locations$" | |
192 "^File .* is not a valid tags table$" | |
193 "^No \\(more \\|\\)tags \\(matching\\|containing\\) " | |
194 "^Rerun etags: `.*' not found in " | |
195 "^All files processed\\.$" | |
196 "^No .* or .* in progress.$" | |
197 "^File .* not in current tags tables$" | |
198 "No tags table loaded." | |
199 "^Nothing to complete$" | |
200 | |
201 ;; BBDB | |
202 "^no previous record$" | |
203 "^no next record$")) | |
204 | |
205 | |
206 (make-variable-buffer-local 'indent-tabs-mode) | |
207 | |
208 ;; This is here to avoid autoloading etags on M-TAB. | |
209 ;; M-x visit-tags-table will autoload etags, which will redefine complete-tag. | |
210 (defun complete-tag () | |
211 "Perform tags completion on the text around point. | |
212 Completes to the set of names listed in the current tags table. | |
213 The string to complete is chosen in the same way as the default | |
214 for \\[find-tag] (which see)." | |
215 (interactive) | |
216 (error (substitute-command-keys | |
217 "No tags table loaded. Try \\[visit-tags-table]."))) | |
218 | |
219 ;; Reduce total amount of space we must allocate during this function | |
220 ;; that we will not need to keep permanently. | |
221 (garbage-collect) | |
222 | |
223 (define-key ctl-x-map "n" (make-sparse-keymap)) | |
224 (define-key ctl-x-map "r" (make-sparse-keymap)) | |
225 | |
226 (setq help-event-list '(help f1)) | |
227 | |
228 ;These commands are defined in editfns.c | |
229 ;but they are not assigned to keys there. | |
230 (put 'narrow-to-region 'disabled t) | |
231 (define-key ctl-x-map "nn" 'narrow-to-region) | |
232 (define-key ctl-x-map "nw" 'widen) | |
233 ;; (define-key ctl-x-map "n" 'narrow-to-region) | |
234 ;; (define-key ctl-x-map "w" 'widen) | |
235 | |
236 (define-key global-map "\C-j" 'newline-and-indent) | |
237 (define-key global-map "\C-m" 'newline) | |
238 (define-key global-map "\C-o" 'open-line) | |
239 (define-key esc-map "\C-o" 'split-line) | |
240 (define-key global-map "\C-q" 'quoted-insert) | |
241 (define-key esc-map "^" 'delete-indentation) | |
242 (define-key esc-map "\\" 'delete-horizontal-space) | |
243 (define-key esc-map "m" 'back-to-indentation) | |
244 (define-key ctl-x-map "\C-o" 'delete-blank-lines) | |
245 (define-key esc-map " " 'just-one-space) | |
246 (define-key esc-map "z" 'zap-to-char) | |
247 (define-key esc-map "=" 'count-lines-region) | |
248 (define-key ctl-x-map "=" 'what-cursor-position) | |
249 (define-key esc-map ":" 'eval-expression) | |
250 ;; Define ESC ESC : like ESC : for people who type ESC ESC out of habit. | |
251 (define-key esc-map "\M-:" 'eval-expression) | |
252 ;; Changed from C-x ESC so that function keys work following C-x. | |
253 (define-key ctl-x-map "\e\e" 'repeat-complex-command) | |
254 ;; New binding analogous to M-:. | |
255 (define-key ctl-x-map "\M-:" 'repeat-complex-command) | |
256 (define-key ctl-x-map "u" 'advertised-undo) | |
257 ;; Many people are used to typing C-/ on X terminals and getting C-_. | |
258 (define-key global-map [?\C-/] 'undo) | |
259 (define-key global-map "\C-_" 'undo) | |
260 (define-key esc-map "!" 'shell-command) | |
261 (define-key esc-map "|" 'shell-command-on-region) | |
262 | |
263 ;; This is an experiment--make up and down arrows do history. | |
264 (define-key minibuffer-local-map [up] 'previous-history-element) | |
265 (define-key minibuffer-local-map [down] 'next-history-element) | |
266 (define-key minibuffer-local-ns-map [up] 'previous-history-element) | |
267 (define-key minibuffer-local-ns-map [down] 'next-history-element) | |
268 (define-key minibuffer-local-completion-map [up] 'previous-history-element) | |
269 (define-key minibuffer-local-completion-map [down] 'next-history-element) | |
270 (define-key minibuffer-local-must-match-map [up] 'previous-history-element) | |
271 (define-key minibuffer-local-must-match-map [down] 'next-history-element) | |
272 | |
273 (define-key global-map "\C-u" 'universal-argument) | |
274 (let ((i ?0)) | |
275 (while (<= i ?9) | |
276 (define-key esc-map (char-to-string i) 'digit-argument) | |
277 (setq i (1+ i)))) | |
278 (define-key esc-map "-" 'negative-argument) | |
279 ;; Define control-digits. | |
280 (let ((i ?0)) | |
281 (while (<= i ?9) | |
282 (define-key global-map (read (format "[?\\C-%c]" i)) 'digit-argument) | |
283 (setq i (1+ i)))) | |
284 (define-key global-map [?\C--] 'negative-argument) | |
285 ;; Define control-meta-digits. | |
286 (let ((i ?0)) | |
287 (while (<= i ?9) | |
288 (define-key esc-map (read (format "[?\\C-%c]" i)) 'digit-argument) | |
289 (setq i (1+ i)))) | |
290 (define-key global-map [?\C-\M--] 'negative-argument) | |
291 | |
292 (define-key global-map "\C-k" 'kill-line) | |
293 (define-key global-map "\C-w" 'kill-region) | |
294 (define-key esc-map "w" 'kill-ring-save) | |
295 (define-key esc-map "\C-w" 'append-next-kill) | |
296 (define-key global-map "\C-y" 'yank) | |
297 (define-key esc-map "y" 'yank-pop) | |
298 | |
299 ;; (define-key ctl-x-map "a" 'append-to-buffer) | |
300 | |
301 (define-key global-map "\C-@" 'set-mark-command) | |
302 ;; Many people are used to typing C-SPC and getting C-@. | |
303 (define-key global-map [?\C-\ ] 'set-mark-command) | |
304 (define-key ctl-x-map "\C-x" 'exchange-point-and-mark) | |
305 (define-key ctl-x-map "\C-@" 'pop-global-mark) | |
306 (define-key ctl-x-map [?\C-\ ] 'pop-global-mark) | |
307 | |
308 (define-key global-map "\C-n" 'next-line) | |
309 (define-key global-map "\C-p" 'previous-line) | |
310 (define-key ctl-x-map "\C-n" 'set-goal-column) | |
311 | |
312 ;;(defun function-key-error () | |
313 ;; (interactive) | |
314 ;; (error "That function key is not bound to anything.")) | |
315 | |
316 (define-key global-map [menu] 'execute-extended-command) | |
317 (define-key global-map [find] 'search-forward) | |
318 | |
319 ;; natural bindings for terminal keycaps --- defined in X keysym order | |
320 (define-key global-map [home] 'beginning-of-buffer) | |
321 (define-key global-map [M-home] 'beginning-of-buffer-other-window) | |
322 (define-key global-map [left] 'backward-char) | |
323 (define-key global-map [up] 'previous-line) | |
324 (define-key global-map [right] 'forward-char) | |
325 (define-key global-map [down] 'next-line) | |
326 (define-key global-map [prior] 'scroll-down) | |
327 (define-key global-map [next] 'scroll-up) | |
328 (define-key global-map [C-up] 'backward-paragraph) | |
329 (define-key global-map [C-down] 'forward-paragraph) | |
330 (define-key global-map [C-prior] 'scroll-right) | |
331 (define-key global-map [C-next] 'scroll-left) | |
332 (define-key global-map [M-next] 'scroll-other-window) | |
333 (define-key global-map [M-prior] 'scroll-other-window-down) | |
334 (define-key global-map [end] 'end-of-buffer) | |
335 (define-key global-map [M-end] 'end-of-buffer-other-window) | |
336 (define-key global-map [begin] 'beginning-of-buffer) | |
337 (define-key global-map [M-begin] 'beginning-of-buffer-other-window) | |
338 ;; (define-key global-map [select] 'function-key-error) | |
339 ;; (define-key global-map [print] 'function-key-error) | |
340 (define-key global-map [execute] 'execute-extended-command) | |
341 (define-key global-map [insert] 'overwrite-mode) | |
342 (define-key global-map [C-insert] 'kill-ring-save) | |
343 (define-key global-map [S-insert] 'yank) | |
344 (define-key global-map [undo] 'undo) | |
345 (define-key global-map [redo] 'repeat-complex-command) | |
346 ;; (define-key global-map [clearline] 'function-key-error) | |
347 (define-key global-map [insertline] 'open-line) | |
348 (define-key global-map [deleteline] 'kill-line) | |
349 ;; (define-key global-map [insertchar] 'function-key-error) | |
350 (define-key global-map [deletechar] 'delete-char) | |
351 ;; (define-key global-map [backtab] 'function-key-error) | |
352 ;; (define-key global-map [f1] 'function-key-error) | |
353 ;; (define-key global-map [f2] 'function-key-error) | |
354 ;; (define-key global-map [f3] 'function-key-error) | |
355 ;; (define-key global-map [f4] 'function-key-error) | |
356 ;; (define-key global-map [f5] 'function-key-error) | |
357 ;; (define-key global-map [f6] 'function-key-error) | |
358 ;; (define-key global-map [f7] 'function-key-error) | |
359 ;; (define-key global-map [f8] 'function-key-error) | |
360 ;; (define-key global-map [f9] 'function-key-error) | |
361 ;; (define-key global-map [f10] 'function-key-error) | |
362 ;; (define-key global-map [f11] 'function-key-error) | |
363 ;; (define-key global-map [f12] 'function-key-error) | |
364 ;; (define-key global-map [f13] 'function-key-error) | |
365 ;; (define-key global-map [f14] 'function-key-error) | |
366 ;; (define-key global-map [f15] 'function-key-error) | |
367 ;; (define-key global-map [f16] 'function-key-error) | |
368 ;; (define-key global-map [f17] 'function-key-error) | |
369 ;; (define-key global-map [f18] 'function-key-error) | |
370 ;; (define-key global-map [f19] 'function-key-error) | |
371 ;; (define-key global-map [f20] 'function-key-error) | |
372 ;; (define-key global-map [f21] 'function-key-error) | |
373 ;; (define-key global-map [f22] 'function-key-error) | |
374 ;; (define-key global-map [f23] 'function-key-error) | |
375 ;; (define-key global-map [f24] 'function-key-error) | |
376 ;; (define-key global-map [f25] 'function-key-error) | |
377 ;; (define-key global-map [f26] 'function-key-error) | |
378 ;; (define-key global-map [f27] 'function-key-error) | |
379 ;; (define-key global-map [f28] 'function-key-error) | |
380 ;; (define-key global-map [f29] 'function-key-error) | |
381 ;; (define-key global-map [f30] 'function-key-error) | |
382 ;; (define-key global-map [f31] 'function-key-error) | |
383 ;; (define-key global-map [f32] 'function-key-error) | |
384 ;; (define-key global-map [f33] 'function-key-error) | |
385 ;; (define-key global-map [f34] 'function-key-error) | |
386 ;; (define-key global-map [f35] 'function-key-error) | |
387 ;; (define-key global-map [kp-backtab] 'function-key-error) | |
388 ;; (define-key global-map [kp-space] 'function-key-error) | |
389 ;; (define-key global-map [kp-tab] 'function-key-error) | |
390 ;; (define-key global-map [kp-enter] 'function-key-error) | |
391 ;; (define-key global-map [kp-f1] 'function-key-error) | |
392 ;; (define-key global-map [kp-f2] 'function-key-error) | |
393 ;; (define-key global-map [kp-f3] 'function-key-error) | |
394 ;; (define-key global-map [kp-f4] 'function-key-error) | |
395 ;; (define-key global-map [kp-multiply] 'function-key-error) | |
396 ;; (define-key global-map [kp-add] 'function-key-error) | |
397 ;; (define-key global-map [kp-separator] 'function-key-error) | |
398 ;; (define-key global-map [kp-subtract] 'function-key-error) | |
399 ;; (define-key global-map [kp-decimal] 'function-key-error) | |
400 ;; (define-key global-map [kp-divide] 'function-key-error) | |
401 ;; (define-key global-map [kp-0] 'function-key-error) | |
402 ;; (define-key global-map [kp-1] 'function-key-error) | |
403 ;; (define-key global-map [kp-2] 'function-key-error) | |
404 ;; (define-key global-map [kp-3] 'function-key-error) | |
405 ;; (define-key global-map [kp-4] 'function-key-error) | |
406 ;; (define-key global-map [kp-5] 'recenter) | |
407 ;; (define-key global-map [kp-6] 'function-key-error) | |
408 ;; (define-key global-map [kp-7] 'function-key-error) | |
409 ;; (define-key global-map [kp-8] 'function-key-error) | |
410 ;; (define-key global-map [kp-9] 'function-key-error) | |
411 ;; (define-key global-map [kp-equal] 'function-key-error) | |
412 | |
413 ;; X11R6 distinguishes these keys from the non-kp keys. | |
414 ;; Make them behave like the non-kp keys unless otherwise bound. | |
415 (define-key function-key-map [kp-home] [home]) | |
416 (define-key function-key-map [kp-left] [left]) | |
417 (define-key function-key-map [kp-up] [up]) | |
418 (define-key function-key-map [kp-right] [right]) | |
419 (define-key function-key-map [kp-down] [down]) | |
420 (define-key function-key-map [kp-prior] [prior]) | |
421 (define-key function-key-map [kp-next] [next]) | |
422 (define-key function-key-map [M-kp-next] [M-next]) | |
423 (define-key function-key-map [kp-end] [end]) | |
424 (define-key function-key-map [kp-begin] [begin]) | |
425 (define-key function-key-map [kp-insert] [insert]) | |
426 (define-key function-key-map [kp-delete] [delete]) | |
427 | |
428 (define-key global-map [mouse-movement] 'ignore) | |
429 | |
430 (define-key global-map "\C-t" 'transpose-chars) | |
431 (define-key esc-map "t" 'transpose-words) | |
432 (define-key esc-map "\C-t" 'transpose-sexps) | |
433 (define-key ctl-x-map "\C-t" 'transpose-lines) | |
434 | |
435 (define-key esc-map ";" 'indent-for-comment) | |
436 (define-key esc-map "j" 'indent-new-comment-line) | |
437 (define-key esc-map "\C-j" 'indent-new-comment-line) | |
438 (define-key ctl-x-map ";" 'set-comment-column) | |
439 (define-key ctl-x-map "f" 'set-fill-column) | |
440 (define-key ctl-x-map "$" 'set-selective-display) | |
441 | |
442 (define-key esc-map "@" 'mark-word) | |
443 (define-key esc-map "f" 'forward-word) | |
444 (define-key esc-map "b" 'backward-word) | |
445 (define-key esc-map "d" 'kill-word) | |
446 (define-key esc-map "\177" 'backward-kill-word) | |
447 | |
448 (define-key esc-map "<" 'beginning-of-buffer) | |
449 (define-key esc-map ">" 'end-of-buffer) | |
450 (define-key ctl-x-map "h" 'mark-whole-buffer) | |
451 (define-key esc-map "\\" 'delete-horizontal-space) | |
452 | |
453 (defalias 'mode-specific-command-prefix (make-sparse-keymap)) | |
16691
285f4e41d163
Change defconsts to defvars.
Richard M. Stallman <rms@gnu.org>
parents:
16523
diff
changeset
|
454 (defvar mode-specific-map (symbol-function 'mode-specific-command-prefix) |
16164 | 455 "Keymap for characters following C-c.") |
456 (define-key global-map "\C-c" 'mode-specific-command-prefix) | |
457 | |
458 (global-set-key [M-right] 'forward-word) | |
459 (global-set-key [M-left] 'backward-word) | |
460 ;; ilya@math.ohio-state.edu says these bindings are standard on PC editors. | |
461 (global-set-key [C-right] 'forward-word) | |
462 (global-set-key [C-left] 'backward-word) | |
463 ;; This is not quite compatible, but at least is analogous | |
464 (global-set-key [C-delete] 'backward-kill-word) | |
465 ;; This is "move to the clipboard", or as close as we come. | |
466 (global-set-key [S-delete] 'kill-region) | |
467 | |
468 (define-key esc-map "\C-f" 'forward-sexp) | |
469 (define-key esc-map "\C-b" 'backward-sexp) | |
470 (define-key esc-map "\C-u" 'backward-up-list) | |
471 (define-key esc-map "\C-@" 'mark-sexp) | |
472 (define-key esc-map [?\C-\ ] 'mark-sexp) | |
473 (define-key esc-map "\C-d" 'down-list) | |
474 (define-key esc-map "\C-k" 'kill-sexp) | |
475 (define-key global-map [C-M-delete] 'backward-kill-sexp) | |
476 (define-key global-map [C-M-backspace] 'backward-kill-sexp) | |
477 (define-key esc-map "\C-n" 'forward-list) | |
478 (define-key esc-map "\C-p" 'backward-list) | |
479 (define-key esc-map "\C-a" 'beginning-of-defun) | |
480 (define-key esc-map "\C-e" 'end-of-defun) | |
481 (define-key esc-map "\C-h" 'mark-defun) | |
482 (define-key ctl-x-map "nd" 'narrow-to-defun) | |
483 (define-key esc-map "(" 'insert-parentheses) | |
484 (define-key esc-map ")" 'move-past-close-and-reindent) | |
485 (define-key esc-map "\t" 'lisp-complete-symbol) | |
486 | |
487 (define-key ctl-x-map "\C-e" 'eval-last-sexp) | |
17595
eaad8bd00b12
Bind C-x m, C-x 4 m, C-x 5 m to compose-mail...
Richard M. Stallman <rms@gnu.org>
parents:
17537
diff
changeset
|
488 |
eaad8bd00b12
Bind C-x m, C-x 4 m, C-x 5 m to compose-mail...
Richard M. Stallman <rms@gnu.org>
parents:
17537
diff
changeset
|
489 (define-key ctl-x-map "m" 'compose-mail) |
eaad8bd00b12
Bind C-x m, C-x 4 m, C-x 5 m to compose-mail...
Richard M. Stallman <rms@gnu.org>
parents:
17537
diff
changeset
|
490 (define-key ctl-x-4-map "m" 'compose-mail-other-window) |
eaad8bd00b12
Bind C-x m, C-x 4 m, C-x 5 m to compose-mail...
Richard M. Stallman <rms@gnu.org>
parents:
17537
diff
changeset
|
491 (define-key ctl-x-5-map "m" 'compose-mail-other-frame) |
16164 | 492 |
493 (define-key ctl-x-map "r\C-@" 'point-to-register) | |
494 (define-key ctl-x-map [?r ?\C-\ ] 'point-to-register) | |
495 (define-key ctl-x-map "r " 'point-to-register) | |
496 (define-key ctl-x-map "rj" 'jump-to-register) | |
497 (define-key ctl-x-map "rs" 'copy-to-register) | |
498 (define-key ctl-x-map "rx" 'copy-to-register) | |
499 (define-key ctl-x-map "ri" 'insert-register) | |
500 (define-key ctl-x-map "rg" 'insert-register) | |
501 (define-key ctl-x-map "rr" 'copy-rectangle-to-register) | |
502 (define-key ctl-x-map "rc" 'clear-rectangle) | |
503 (define-key ctl-x-map "rk" 'kill-rectangle) | |
504 (define-key ctl-x-map "rd" 'delete-rectangle) | |
505 (define-key ctl-x-map "ry" 'yank-rectangle) | |
506 (define-key ctl-x-map "ro" 'open-rectangle) | |
507 (define-key ctl-x-map "rt" 'string-rectangle) | |
508 (define-key ctl-x-map "rw" 'window-configuration-to-register) | |
509 (define-key ctl-x-map "rf" 'frame-configuration-to-register) | |
510 | |
511 ;; These key bindings are deprecated; use the above C-x r map instead. | |
512 ;; We use these aliases so \[...] will show the C-x r bindings instead. | |
513 (defalias 'point-to-register-compatibility-binding 'point-to-register) | |
514 (defalias 'jump-to-register-compatibility-binding 'jump-to-register) | |
515 (defalias 'copy-to-register-compatibility-binding 'copy-to-register) | |
516 (defalias 'insert-register-compatibility-binding 'insert-register) | |
517 (define-key ctl-x-map "/" 'point-to-register-compatibility-binding) | |
518 (define-key ctl-x-map "j" 'jump-to-register-compatibility-binding) | |
519 (define-key ctl-x-map "x" 'copy-to-register-compatibility-binding) | |
520 (define-key ctl-x-map "g" 'insert-register-compatibility-binding) | |
521 ;; (define-key ctl-x-map "r" 'copy-rectangle-to-register) | |
522 | |
523 (define-key esc-map "q" 'fill-paragraph) | |
524 ;; (define-key esc-map "g" 'fill-region) | |
525 (define-key ctl-x-map "." 'set-fill-prefix) | |
526 | |
527 (define-key esc-map "{" 'backward-paragraph) | |
528 (define-key esc-map "}" 'forward-paragraph) | |
529 (define-key esc-map "h" 'mark-paragraph) | |
530 (define-key esc-map "a" 'backward-sentence) | |
531 (define-key esc-map "e" 'forward-sentence) | |
532 (define-key esc-map "k" 'kill-sentence) | |
533 (define-key ctl-x-map "\177" 'backward-kill-sentence) | |
534 | |
535 (define-key ctl-x-map "[" 'backward-page) | |
536 (define-key ctl-x-map "]" 'forward-page) | |
537 (define-key ctl-x-map "\C-p" 'mark-page) | |
538 (define-key ctl-x-map "l" 'count-lines-page) | |
539 (define-key ctl-x-map "np" 'narrow-to-page) | |
540 ;; (define-key ctl-x-map "p" 'narrow-to-page) | |
541 | |
542 (define-key ctl-x-map "al" 'add-mode-abbrev) | |
543 (define-key ctl-x-map "a\C-a" 'add-mode-abbrev) | |
544 (define-key ctl-x-map "ag" 'add-global-abbrev) | |
545 (define-key ctl-x-map "a+" 'add-mode-abbrev) | |
546 (define-key ctl-x-map "aig" 'inverse-add-global-abbrev) | |
547 (define-key ctl-x-map "ail" 'inverse-add-mode-abbrev) | |
548 ;; (define-key ctl-x-map "a\C-h" 'inverse-add-global-abbrev) | |
549 (define-key ctl-x-map "a-" 'inverse-add-global-abbrev) | |
550 (define-key ctl-x-map "ae" 'expand-abbrev) | |
551 (define-key ctl-x-map "a'" 'expand-abbrev) | |
552 ;; (define-key ctl-x-map "\C-a" 'add-mode-abbrev) | |
553 ;; (define-key ctl-x-map "\+" 'add-global-abbrev) | |
554 ;; (define-key ctl-x-map "\C-h" 'inverse-add-mode-abbrev) | |
555 ;; (define-key ctl-x-map "\-" 'inverse-add-global-abbrev) | |
556 (define-key esc-map "'" 'abbrev-prefix-mark) | |
557 (define-key ctl-x-map "'" 'expand-abbrev) | |
558 | |
559 ;;; Don't compile this file; it contains no large function definitions. | |
560 ;;; Don't look for autoload cookies in this file. | |
561 ;;; Local Variables: | |
562 ;;; no-byte-compile: t | |
563 ;;; no-update-autoloads: t | |
564 ;;; End: | |
565 | |
566 ;;; bindings.el ends here |