]> code.delx.au - gnu-emacs/blob - lisp/bindings.el
(debug-ignored-errors): Add some elements.
[gnu-emacs] / lisp / bindings.el
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
50 (defconst mode-line-mule-info
51 (purecopy '(""
52 (current-input-method ("" current-input-method-title))
53 "%Z"))
54 "Mode-line control for displaying information of multilingual environment.
55 Normally it displays current input method (if any activated) and
56 mnemonics of the following coding systems:
57 coding system for saving or writing the current buffer
58 coding system for keyboard input (if Emacs is running on terminal)
59 coding system for terminal output (if Emacs is running on terminal)
60 coding system for decoding output of buffer process (if any)
61 coding system for encoding text to send to buffer process (if any).")
62
63 (make-variable-buffer-local 'mode-line-mule-info)
64
65 (defvar mode-line-buffer-identification (purecopy '("%12b"))
66 "Mode-line control for identifying the buffer being displayed.
67 Its default value is (\"%12b\").
68 Major modes that edit things other than ordinary files may change this
69 \(e.g. Info, Dired,...)")
70
71 (make-variable-buffer-local 'mode-line-buffer-identification)
72
73 (defvar mode-line-frame-identification '("-%F "))
74
75 (defvar mode-line-process nil
76 "Mode-line control for displaying info on process status.
77 Normally nil in most modes, since there is no process to display.")
78
79 (make-variable-buffer-local 'mode-line-process)
80
81 (defvar mode-line-modified (purecopy '("%1*%1+"))
82 "Mode-line control for displaying whether current buffer is modified.")
83
84 (make-variable-buffer-local 'mode-line-modified)
85
86 (setq-default mode-line-format
87 (list (purecopy "-")
88 'mode-line-mule-info
89 'mode-line-modified
90 'mode-line-frame-identification
91 'mode-line-buffer-identification
92 (purecopy " ")
93 'global-mode-string
94 (purecopy " %[(")
95 'mode-name 'mode-line-process 'minor-mode-alist
96 (purecopy "%n")
97 (purecopy ")%]--")
98 '(which-func-mode ("" which-func-format "--"))
99 (purecopy '(line-number-mode "L%l--"))
100 (purecopy '(column-number-mode "C%c--"))
101 (purecopy '(-3 . "%p"))
102 (purecopy "-%-")))
103
104 (defvar minor-mode-alist nil "\
105 Alist saying how to show minor modes in the mode line.
106 Each element looks like (VARIABLE STRING);
107 STRING is included in the mode line iff VARIABLE's value is non-nil.
108
109 Actually, STRING need not be a string; any possible mode-line element
110 is okay. See `mode-line-format'.")
111 ;; Don't use purecopy here--some people want to change these strings.
112 (setq minor-mode-alist '((abbrev-mode " Abbrev")
113 (overwrite-mode overwrite-mode)
114 (auto-fill-function " Fill")
115 ;; not really a minor mode...
116 (defining-kbd-macro " Def")))
117
118 ;; These variables are used by autoloadable packages.
119 ;; They are defined here so that they do not get overridden
120 ;; by the loading of those packages.
121
122 ;; Names in directory that end in one of these
123 ;; are ignored in completion,
124 ;; making it more likely you will get a unique match.
125 (setq completion-ignored-extensions
126 (append
127 (cond ((or (eq system-type 'ms-dos) (eq system-type 'windows-nt))
128 '(".o" "~" ".bin" ".bak" ".obj" ".map"
129 ".a" ".ln" ".blg" ".bbl"))
130 ((eq system-type 'vax-vms)
131 '(".obj" ".exe" ".bin" ".lbin" ".sbin"
132 ".brn" ".rnt" ".mem" ".lni" ".lis"
133 ".olb" ".tlb" ".mlb" ".hlb"))
134 (t
135 '(".o" "~" ".bin" ".lbin" ".fasl"
136 ".a" ".ln" ".blg" ".bbl")))
137 '(".elc" ".lof"
138 ".glo" ".idx" ".lot"
139 ;; TeX-related
140 ".dvi" ".fmt"
141 ;; Texinfo-related
142 ".toc" ".log" ".aux"
143 ".cp" ".fn" ".ky" ".pg" ".tp" ".vr"
144 ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs")))
145
146 (setq debug-ignored-errors
147 '(beginning-of-line beginning-of-buffer end-of-line
148 end-of-buffer end-of-file buffer-read-only
149 "^Previous command was not a yank$"
150 "^Minibuffer window is not active$"
151 "^End of history; no next item$"
152 "^Beginning of history; no preceding item$"
153 "^No recursive edit is in progress$"
154 "^Changes to be undone are outside visible portion of buffer$"
155 "^No undo information in this buffer$"
156 "^No further undo information$"
157 "^Save not confirmed$"
158 "^Recover-file cancelled\\.$"
159 "^Cannot switch buffers in a dedicated window$"
160
161 ;; comint
162 "^Not at command line$"
163 "^Empty input ring$"
164 "^No history$"
165 "^Not found$";; To common?
166 "^Current buffer has no process$"
167
168 ;; dabbrev
169 "^No dynamic expansion for .* found$"
170 "^No further dynamic expansion for .* found$"
171 "^No possible abbreviation preceding point$"
172
173 ;; Completion
174 "^To complete, the point must be after a symbol at least [0-9]* character long\\.$"
175 "^The string \".*\" is too short to be saved as a completion\\.$"
176
177 ;; Compile
178 "^No more errors\\( yet\\|\\)$"
179
180 ;; Gnus
181 "^NNTP: Connection closed\\.$"
182
183 ;; info
184 "^Node has no Previous$"
185 "^No menu in this node$"
186 "^Node has no Next$"
187 "^No \".*\" in index$"
188
189 ;; imenu
190 "^No items suitable for an index found in this buffer\\.$"
191 "^This buffer cannot use `imenu-default-create-index-function'$"
192 "^The mode `.*' does not support Imenu$"
193
194 ;; ispell
195 "^No word found to check!$"
196
197 ;; mh-e
198 "^Cursor not pointing to message$"
199 "^There is no other window$"
200
201 ;; man
202 "^No manpage [0-9]* found$"
203
204 ;; etags
205 "^No tags table in use; use .* to select one$"
206 "^There is no default tag$"
207 "^No previous tag locations$"
208 "^File .* is not a valid tags table$"
209 "^No \\(more \\|\\)tags \\(matching\\|containing\\) "
210 "^Rerun etags: `.*' not found in "
211 "^All files processed$"
212 "^No .* or .* in progress$"
213 "^File .* not in current tags tables$"
214 "^No tags table loaded"
215 "^Nothing to complete$"
216
217 ;; ediff
218 "^Errors in diff output. Diff output is in "
219 "^Hmm... I don't see an Ediff command around here...$"
220 "^Undocumented command! Type `G' in Ediff Control Panel to drop a note to the Ediff maintainer$"
221 ": This command runs in Ediff Control Buffer only!$"
222 ": Invalid op in ediff-check-version$"
223 "^ediff-shrink-window-C can be used only for merging jobs$"
224 "^Lost difference info on these directories$"
225 "^This command is inapplicable in the present context$"
226 "^This session group has no parent$"
227 "^Can't hide active session, $"
228 "^Sorry, I don't do this for everyone...$"
229 "^Ediff: something wrong--no multiple diffs buffer$"
230 "^Can't make context diff for Session $"
231 "^The patch buffer wasn't found$"
232 "^Aborted$"
233 "^This Ediff session is not part of a session group$"
234 "^No active Ediff sessions or corrupted session registry$"
235 "^No session info in this line$"
236 "^`.*' is not an ordinary file$"
237 "^Patch appears to have failed$"
238 "^Recomputation of differences cancelled$"
239 "^No fine differences in this mode$"
240 "^Lost connection to ancestor buffer...sorry$"
241 "^Not merging with ancestor$"
242 "^Don't know how to toggle read-only in buffer "
243 "Emacs is not running as a window application$"
244 "^This command makes sense only when merging with an ancestor$"
245 "^At end of the difference list$"
246 "^At beginning of the difference list$"
247 "^Nothing saved for diff .* in buffer "
248 "^Buffer is out of sync for file "
249 "^Buffer out of sync for file "
250 "^Output from `diff' not found$"
251 "^You forgot to specify a region in buffer "
252 "^All right. Make up your mind and come back...$"
253 "^Current buffer is not visiting any file$"
254 "^Failed to retrieve revision: $"
255 "^Can't determine display width.$"
256 "^File `.*' does not exist or is not readable$"
257 "^File `.*' is a directory$"
258 "^Buffer .* doesn't exist$"
259 "^Directories . and . are the same: "
260 "^Directory merge aborted$"
261 "^Merge of directory revisions aborted$"
262 "^Buffer .* doesn't exist$"
263 "^There is no file to merge$"
264 "^Version control package .*.el not found. Use vc.el instead$"
265
266 ;; BBDB
267 "^no previous record$"
268 "^no next record$"))
269
270
271 (make-variable-buffer-local 'indent-tabs-mode)
272
273 (define-key esc-map "\t" 'complete-symbol)
274
275 (defun complete-symbol (arg)
276 "Perform tags completion on the text around point.
277 Completes to the set of names listed in the current tags table.
278 The string to complete is chosen in the same way as the default
279 for \\[find-tag] (which see)."
280 (interactive "P")
281 (if arg
282 (if (fboundp 'complete-tag)
283 (complete-tag)
284 ;; Don't autoload etags if we have no tags table.
285 (error (substitute-command-keys
286 "No tags table loaded; use \\[visit-tags-table] to load one")))
287 (info-complete-symbol)))
288
289 ;; Reduce total amount of space we must allocate during this function
290 ;; that we will not need to keep permanently.
291 (garbage-collect)
292 \f
293 ;; Make Latin-1, Latin-2, Latin-3 and Latin-4 characters self-insert.
294 (aset (nth 1 global-map) (make-char 'latin-iso8859-1) 'self-insert-command)
295 (aset (nth 1 global-map) (make-char 'latin-iso8859-2) 'self-insert-command)
296 (aset (nth 1 global-map) (make-char 'latin-iso8859-3) 'self-insert-command)
297 (aset (nth 1 global-map) (make-char 'latin-iso8859-4) 'self-insert-command)
298
299 (setq help-event-list '(help f1))
300
301 (make-variable-buffer-local 'minor-mode-overriding-map-alist)
302
303 ;These commands are defined in editfns.c
304 ;but they are not assigned to keys there.
305 (put 'narrow-to-region 'disabled t)
306 (define-key ctl-x-map "nn" 'narrow-to-region)
307 (define-key ctl-x-map "nw" 'widen)
308 ;; (define-key ctl-x-map "n" 'narrow-to-region)
309 ;; (define-key ctl-x-map "w" 'widen)
310
311 (define-key global-map "\C-j" 'newline-and-indent)
312 (define-key global-map "\C-m" 'newline)
313 (define-key global-map "\C-o" 'open-line)
314 (define-key esc-map "\C-o" 'split-line)
315 (define-key global-map "\C-q" 'quoted-insert)
316 (define-key esc-map "^" 'delete-indentation)
317 (define-key esc-map "\\" 'delete-horizontal-space)
318 (define-key esc-map "m" 'back-to-indentation)
319 (define-key ctl-x-map "\C-o" 'delete-blank-lines)
320 (define-key esc-map " " 'just-one-space)
321 (define-key esc-map "z" 'zap-to-char)
322 (define-key esc-map "=" 'count-lines-region)
323 (define-key ctl-x-map "=" 'what-cursor-position)
324 (define-key esc-map ":" 'eval-expression)
325 ;; Define ESC ESC : like ESC : for people who type ESC ESC out of habit.
326 (define-key esc-map "\M-:" 'eval-expression)
327 ;; Changed from C-x ESC so that function keys work following C-x.
328 (define-key ctl-x-map "\e\e" 'repeat-complex-command)
329 ;; New binding analogous to M-:.
330 (define-key ctl-x-map "\M-:" 'repeat-complex-command)
331 (define-key ctl-x-map "u" 'advertised-undo)
332 ;; Many people are used to typing C-/ on X terminals and getting C-_.
333 (define-key global-map [?\C-/] 'undo)
334 (define-key global-map "\C-_" 'undo)
335 (define-key esc-map "!" 'shell-command)
336 (define-key esc-map "|" 'shell-command-on-region)
337
338 ;; This is an experiment--make up and down arrows do history.
339 (define-key minibuffer-local-map [up] 'previous-history-element)
340 (define-key minibuffer-local-map [down] 'next-history-element)
341 (define-key minibuffer-local-ns-map [up] 'previous-history-element)
342 (define-key minibuffer-local-ns-map [down] 'next-history-element)
343 (define-key minibuffer-local-completion-map [up] 'previous-history-element)
344 (define-key minibuffer-local-completion-map [down] 'next-history-element)
345 (define-key minibuffer-local-must-match-map [up] 'previous-history-element)
346 (define-key minibuffer-local-must-match-map [down] 'next-history-element)
347
348 (define-key global-map "\C-u" 'universal-argument)
349 (let ((i ?0))
350 (while (<= i ?9)
351 (define-key esc-map (char-to-string i) 'digit-argument)
352 (setq i (1+ i))))
353 (define-key esc-map "-" 'negative-argument)
354 ;; Define control-digits.
355 (let ((i ?0))
356 (while (<= i ?9)
357 (define-key global-map (read (format "[?\\C-%c]" i)) 'digit-argument)
358 (setq i (1+ i))))
359 (define-key global-map [?\C--] 'negative-argument)
360 ;; Define control-meta-digits.
361 (let ((i ?0))
362 (while (<= i ?9)
363 (define-key esc-map (read (format "[?\\C-%c]" i)) 'digit-argument)
364 (setq i (1+ i))))
365 (define-key global-map [?\C-\M--] 'negative-argument)
366
367 (define-key global-map "\C-k" 'kill-line)
368 (define-key global-map "\C-w" 'kill-region)
369 (define-key esc-map "w" 'kill-ring-save)
370 (define-key esc-map "\C-w" 'append-next-kill)
371 (define-key global-map "\C-y" 'yank)
372 (define-key esc-map "y" 'yank-pop)
373
374 ;; (define-key ctl-x-map "a" 'append-to-buffer)
375
376 (define-key global-map "\C-@" 'set-mark-command)
377 ;; Many people are used to typing C-SPC and getting C-@.
378 (define-key global-map [?\C- ] 'set-mark-command)
379 (define-key ctl-x-map "\C-x" 'exchange-point-and-mark)
380 (define-key ctl-x-map "\C-@" 'pop-global-mark)
381 (define-key ctl-x-map [?\C- ] 'pop-global-mark)
382
383 (define-key global-map "\C-n" 'next-line)
384 (define-key global-map "\C-p" 'previous-line)
385 (define-key ctl-x-map "\C-n" 'set-goal-column)
386
387 ;;(defun function-key-error ()
388 ;; (interactive)
389 ;; (error "That function key is not bound to anything."))
390
391 (define-key global-map [menu] 'execute-extended-command)
392 (define-key global-map [find] 'search-forward)
393
394 ;; natural bindings for terminal keycaps --- defined in X keysym order
395 (define-key global-map [home] 'beginning-of-buffer)
396 (define-key global-map [M-home] 'beginning-of-buffer-other-window)
397 (define-key global-map [left] 'backward-char)
398 (define-key global-map [up] 'previous-line)
399 (define-key global-map [right] 'forward-char)
400 (define-key global-map [down] 'next-line)
401 (define-key global-map [prior] 'scroll-down)
402 (define-key global-map [next] 'scroll-up)
403 (define-key global-map [C-up] 'backward-paragraph)
404 (define-key global-map [C-down] 'forward-paragraph)
405 (define-key global-map [C-prior] 'scroll-right)
406 (define-key global-map [C-next] 'scroll-left)
407 (define-key global-map [M-next] 'scroll-other-window)
408 (define-key global-map [M-prior] 'scroll-other-window-down)
409 (define-key global-map [end] 'end-of-buffer)
410 (define-key global-map [M-end] 'end-of-buffer-other-window)
411 (define-key global-map [begin] 'beginning-of-buffer)
412 (define-key global-map [M-begin] 'beginning-of-buffer-other-window)
413 ;; (define-key global-map [select] 'function-key-error)
414 ;; (define-key global-map [print] 'function-key-error)
415 (define-key global-map [execute] 'execute-extended-command)
416 (define-key global-map [insert] 'overwrite-mode)
417 (define-key global-map [C-insert] 'kill-ring-save)
418 (define-key global-map [S-insert] 'yank)
419 (define-key global-map [undo] 'undo)
420 (define-key global-map [redo] 'repeat-complex-command)
421 ;; (define-key global-map [clearline] 'function-key-error)
422 (define-key global-map [insertline] 'open-line)
423 (define-key global-map [deleteline] 'kill-line)
424 ;; (define-key global-map [insertchar] 'function-key-error)
425 (define-key global-map [deletechar] 'delete-char)
426 ;; (define-key global-map [backtab] 'function-key-error)
427 ;; (define-key global-map [f1] 'function-key-error)
428 ;; (define-key global-map [f2] 'function-key-error)
429 ;; (define-key global-map [f3] 'function-key-error)
430 ;; (define-key global-map [f4] 'function-key-error)
431 ;; (define-key global-map [f5] 'function-key-error)
432 ;; (define-key global-map [f6] 'function-key-error)
433 ;; (define-key global-map [f7] 'function-key-error)
434 ;; (define-key global-map [f8] 'function-key-error)
435 ;; (define-key global-map [f9] 'function-key-error)
436 ;; (define-key global-map [f10] 'function-key-error)
437 ;; (define-key global-map [f11] 'function-key-error)
438 ;; (define-key global-map [f12] 'function-key-error)
439 ;; (define-key global-map [f13] 'function-key-error)
440 ;; (define-key global-map [f14] 'function-key-error)
441 ;; (define-key global-map [f15] 'function-key-error)
442 ;; (define-key global-map [f16] 'function-key-error)
443 ;; (define-key global-map [f17] 'function-key-error)
444 ;; (define-key global-map [f18] 'function-key-error)
445 ;; (define-key global-map [f19] 'function-key-error)
446 ;; (define-key global-map [f20] 'function-key-error)
447 ;; (define-key global-map [f21] 'function-key-error)
448 ;; (define-key global-map [f22] 'function-key-error)
449 ;; (define-key global-map [f23] 'function-key-error)
450 ;; (define-key global-map [f24] 'function-key-error)
451 ;; (define-key global-map [f25] 'function-key-error)
452 ;; (define-key global-map [f26] 'function-key-error)
453 ;; (define-key global-map [f27] 'function-key-error)
454 ;; (define-key global-map [f28] 'function-key-error)
455 ;; (define-key global-map [f29] 'function-key-error)
456 ;; (define-key global-map [f30] 'function-key-error)
457 ;; (define-key global-map [f31] 'function-key-error)
458 ;; (define-key global-map [f32] 'function-key-error)
459 ;; (define-key global-map [f33] 'function-key-error)
460 ;; (define-key global-map [f34] 'function-key-error)
461 ;; (define-key global-map [f35] 'function-key-error)
462 ;; (define-key global-map [kp-backtab] 'function-key-error)
463 ;; (define-key global-map [kp-space] 'function-key-error)
464 ;; (define-key global-map [kp-tab] 'function-key-error)
465 ;; (define-key global-map [kp-enter] 'function-key-error)
466 ;; (define-key global-map [kp-f1] 'function-key-error)
467 ;; (define-key global-map [kp-f2] 'function-key-error)
468 ;; (define-key global-map [kp-f3] 'function-key-error)
469 ;; (define-key global-map [kp-f4] 'function-key-error)
470 ;; (define-key global-map [kp-multiply] 'function-key-error)
471 ;; (define-key global-map [kp-add] 'function-key-error)
472 ;; (define-key global-map [kp-separator] 'function-key-error)
473 ;; (define-key global-map [kp-subtract] 'function-key-error)
474 ;; (define-key global-map [kp-decimal] 'function-key-error)
475 ;; (define-key global-map [kp-divide] 'function-key-error)
476 ;; (define-key global-map [kp-0] 'function-key-error)
477 ;; (define-key global-map [kp-1] 'function-key-error)
478 ;; (define-key global-map [kp-2] 'function-key-error)
479 ;; (define-key global-map [kp-3] 'function-key-error)
480 ;; (define-key global-map [kp-4] 'function-key-error)
481 ;; (define-key global-map [kp-5] 'recenter)
482 ;; (define-key global-map [kp-6] 'function-key-error)
483 ;; (define-key global-map [kp-7] 'function-key-error)
484 ;; (define-key global-map [kp-8] 'function-key-error)
485 ;; (define-key global-map [kp-9] 'function-key-error)
486 ;; (define-key global-map [kp-equal] 'function-key-error)
487
488 ;; X11R6 distinguishes these keys from the non-kp keys.
489 ;; Make them behave like the non-kp keys unless otherwise bound.
490 (define-key function-key-map [kp-home] [home])
491 (define-key function-key-map [kp-left] [left])
492 (define-key function-key-map [kp-up] [up])
493 (define-key function-key-map [kp-right] [right])
494 (define-key function-key-map [kp-down] [down])
495 (define-key function-key-map [kp-prior] [prior])
496 (define-key function-key-map [kp-next] [next])
497 (define-key function-key-map [M-kp-next] [M-next])
498 (define-key function-key-map [kp-end] [end])
499 (define-key function-key-map [kp-begin] [begin])
500 (define-key function-key-map [kp-insert] [insert])
501 (define-key function-key-map [kp-delete] [delete])
502
503 (define-key global-map [mouse-movement] 'ignore)
504
505 (define-key global-map "\C-t" 'transpose-chars)
506 (define-key esc-map "t" 'transpose-words)
507 (define-key esc-map "\C-t" 'transpose-sexps)
508 (define-key ctl-x-map "\C-t" 'transpose-lines)
509
510 (define-key esc-map ";" 'indent-for-comment)
511 (define-key esc-map "j" 'indent-new-comment-line)
512 (define-key esc-map "\C-j" 'indent-new-comment-line)
513 (define-key ctl-x-map ";" 'set-comment-column)
514 (define-key ctl-x-map "f" 'set-fill-column)
515 (define-key ctl-x-map "$" 'set-selective-display)
516
517 (define-key esc-map "@" 'mark-word)
518 (define-key esc-map "f" 'forward-word)
519 (define-key esc-map "b" 'backward-word)
520 (define-key esc-map "d" 'kill-word)
521 (define-key esc-map "\177" 'backward-kill-word)
522
523 (define-key esc-map "<" 'beginning-of-buffer)
524 (define-key esc-map ">" 'end-of-buffer)
525 (define-key ctl-x-map "h" 'mark-whole-buffer)
526 (define-key esc-map "\\" 'delete-horizontal-space)
527
528 (defalias 'mode-specific-command-prefix (make-sparse-keymap))
529 (defvar mode-specific-map (symbol-function 'mode-specific-command-prefix)
530 "Keymap for characters following C-c.")
531 (define-key global-map "\C-c" 'mode-specific-command-prefix)
532
533 (global-set-key [M-right] 'forward-word)
534 (global-set-key [M-left] 'backward-word)
535 ;; ilya@math.ohio-state.edu says these bindings are standard on PC editors.
536 (global-set-key [C-right] 'forward-word)
537 (global-set-key [C-left] 'backward-word)
538 ;; This is not quite compatible, but at least is analogous
539 (global-set-key [C-delete] 'backward-kill-word)
540 ;; This is "move to the clipboard", or as close as we come.
541 (global-set-key [S-delete] 'kill-region)
542
543 (define-key esc-map "\C-f" 'forward-sexp)
544 (define-key esc-map "\C-b" 'backward-sexp)
545 (define-key esc-map "\C-u" 'backward-up-list)
546 (define-key esc-map "\C-@" 'mark-sexp)
547 (define-key esc-map [?\C-\ ] 'mark-sexp)
548 (define-key esc-map "\C-d" 'down-list)
549 (define-key esc-map "\C-k" 'kill-sexp)
550 (define-key global-map [C-M-delete] 'backward-kill-sexp)
551 (define-key global-map [C-M-backspace] 'backward-kill-sexp)
552 (define-key esc-map "\C-n" 'forward-list)
553 (define-key esc-map "\C-p" 'backward-list)
554 (define-key esc-map "\C-a" 'beginning-of-defun)
555 (define-key esc-map "\C-e" 'end-of-defun)
556 (define-key esc-map "\C-h" 'mark-defun)
557 (define-key ctl-x-map "nd" 'narrow-to-defun)
558 (define-key esc-map "(" 'insert-parentheses)
559 (define-key esc-map ")" 'move-past-close-and-reindent)
560
561 (define-key ctl-x-map "\C-e" 'eval-last-sexp)
562
563 (define-key ctl-x-map "m" 'compose-mail)
564 (define-key ctl-x-4-map "m" 'compose-mail-other-window)
565 (define-key ctl-x-5-map "m" 'compose-mail-other-frame)
566 \f
567 (define-key ctl-x-map "r\C-@" 'point-to-register)
568 (define-key ctl-x-map [?r ?\C-\ ] 'point-to-register)
569 (define-key ctl-x-map "r " 'point-to-register)
570 (define-key ctl-x-map "rj" 'jump-to-register)
571 (define-key ctl-x-map "rs" 'copy-to-register)
572 (define-key ctl-x-map "rx" 'copy-to-register)
573 (define-key ctl-x-map "ri" 'insert-register)
574 (define-key ctl-x-map "rg" 'insert-register)
575 (define-key ctl-x-map "rr" 'copy-rectangle-to-register)
576 (define-key ctl-x-map "rn" 'number-to-register)
577 (define-key ctl-x-map "r+" 'increment-register)
578 (define-key ctl-x-map "rc" 'clear-rectangle)
579 (define-key ctl-x-map "rk" 'kill-rectangle)
580 (define-key ctl-x-map "rd" 'delete-rectangle)
581 (define-key ctl-x-map "ry" 'yank-rectangle)
582 (define-key ctl-x-map "ro" 'open-rectangle)
583 (define-key ctl-x-map "rt" 'string-rectangle)
584 (define-key ctl-x-map "rw" 'window-configuration-to-register)
585 (define-key ctl-x-map "rf" 'frame-configuration-to-register)
586
587 ;; These key bindings are deprecated; use the above C-x r map instead.
588 ;; We use these aliases so \[...] will show the C-x r bindings instead.
589 (defalias 'point-to-register-compatibility-binding 'point-to-register)
590 (defalias 'jump-to-register-compatibility-binding 'jump-to-register)
591 (defalias 'copy-to-register-compatibility-binding 'copy-to-register)
592 (defalias 'insert-register-compatibility-binding 'insert-register)
593 (define-key ctl-x-map "/" 'point-to-register-compatibility-binding)
594 (define-key ctl-x-map "j" 'jump-to-register-compatibility-binding)
595 (define-key ctl-x-map "x" 'copy-to-register-compatibility-binding)
596 (define-key ctl-x-map "g" 'insert-register-compatibility-binding)
597 ;; (define-key ctl-x-map "r" 'copy-rectangle-to-register)
598
599 (define-key esc-map "q" 'fill-paragraph)
600 ;; (define-key esc-map "g" 'fill-region)
601 (define-key ctl-x-map "." 'set-fill-prefix)
602 \f
603 (define-key esc-map "{" 'backward-paragraph)
604 (define-key esc-map "}" 'forward-paragraph)
605 (define-key esc-map "h" 'mark-paragraph)
606 (define-key esc-map "a" 'backward-sentence)
607 (define-key esc-map "e" 'forward-sentence)
608 (define-key esc-map "k" 'kill-sentence)
609 (define-key ctl-x-map "\177" 'backward-kill-sentence)
610
611 (define-key ctl-x-map "[" 'backward-page)
612 (define-key ctl-x-map "]" 'forward-page)
613 (define-key ctl-x-map "\C-p" 'mark-page)
614 (define-key ctl-x-map "l" 'count-lines-page)
615 (define-key ctl-x-map "np" 'narrow-to-page)
616 ;; (define-key ctl-x-map "p" 'narrow-to-page)
617 \f
618 (define-key ctl-x-map "al" 'add-mode-abbrev)
619 (define-key ctl-x-map "a\C-a" 'add-mode-abbrev)
620 (define-key ctl-x-map "ag" 'add-global-abbrev)
621 (define-key ctl-x-map "a+" 'add-mode-abbrev)
622 (define-key ctl-x-map "aig" 'inverse-add-global-abbrev)
623 (define-key ctl-x-map "ail" 'inverse-add-mode-abbrev)
624 ;; (define-key ctl-x-map "a\C-h" 'inverse-add-global-abbrev)
625 (define-key ctl-x-map "a-" 'inverse-add-global-abbrev)
626 (define-key ctl-x-map "ae" 'expand-abbrev)
627 (define-key ctl-x-map "a'" 'expand-abbrev)
628 ;; (define-key ctl-x-map "\C-a" 'add-mode-abbrev)
629 ;; (define-key ctl-x-map "\+" 'add-global-abbrev)
630 ;; (define-key ctl-x-map "\C-h" 'inverse-add-mode-abbrev)
631 ;; (define-key ctl-x-map "\-" 'inverse-add-global-abbrev)
632 (define-key esc-map "'" 'abbrev-prefix-mark)
633 (define-key ctl-x-map "'" 'expand-abbrev)
634
635 ;;; Don't compile this file; it contains no large function definitions.
636 ;;; Don't look for autoload cookies in this file.
637 ;;; Local Variables:
638 ;;; no-byte-compile: t
639 ;;; no-update-autoloads: t
640 ;;; End:
641
642 ;;; bindings.el ends here