(r_alloc_reinit): New function.
[emacs.git] / lisp / bindings.el
blob1f9ab4b3999dda18eec92ad33305c1bdb323d593
1 ;;; bindings.el --- define standard key bindings and some variables.
3 ;; Copyright (C) 1985,86,87,92,93,94,95,96 Free Software Foundation, Inc.
5 ;; Maintainer: FSF
6 ;; Keywords: internal
8 ;; This file is part of GNU Emacs.
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.
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.
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.
25 ;;; Commentary:
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 ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
48 ;;; Code:
50 (defconst mode-line-mule-info
51 (purecopy '(enable-multibyte-characters
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).")
63 (make-variable-buffer-local 'mode-line-mule-info)
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,...)")
71 (make-variable-buffer-local 'mode-line-buffer-identification)
73 (defvar mode-line-frame-identification '("-%F "))
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.")
79 (make-variable-buffer-local 'mode-line-process)
81 (defvar mode-line-modified (purecopy '("%1*%1+"))
82 "Mode-line control for displaying whether current buffer is modified.")
84 (make-variable-buffer-local 'mode-line-modified)
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 (purecopy '(line-number-mode "L%l--"))
99 (purecopy '(column-number-mode "C%c--"))
100 (purecopy '(-3 . "%p"))
101 (purecopy "-%-")))
103 (defvar minor-mode-alist nil "\
104 Alist saying how to show minor modes in the mode line.
105 Each element looks like (VARIABLE STRING);
106 STRING is included in the mode line iff VARIABLE's value is non-nil.
108 Actually, STRING need not be a string; any possible mode-line element
109 is okay. See `mode-line-format'.")
110 ;; Don't use purecopy here--some people want to change these strings.
111 (setq minor-mode-alist '((abbrev-mode " Abbrev")
112 (overwrite-mode overwrite-mode)
113 (auto-fill-function " Fill")
114 ;; not really a minor mode...
115 (defining-kbd-macro " Def")))
117 ;; These variables are used by autoloadable packages.
118 ;; They are defined here so that they do not get overridden
119 ;; by the loading of those packages.
121 ;; Names in directory that end in one of these
122 ;; are ignored in completion,
123 ;; making it more likely you will get a unique match.
124 (setq completion-ignored-extensions
125 (append
126 (cond ((or (eq system-type 'ms-dos) (eq system-type 'windows-nt))
127 '(".o" "~" ".bin" ".bak" ".obj" ".map"
128 ".a" ".ln" ".blg" ".bbl"))
129 ((eq system-type 'vax-vms)
130 '(".obj" ".exe" ".bin" ".lbin" ".sbin"
131 ".brn" ".rnt" ".mem" ".lni" ".lis"
132 ".olb" ".tlb" ".mlb" ".hlb"))
134 '(".o" "~" ".bin" ".lbin" ".fasl"
135 ".a" ".ln" ".blg" ".bbl")))
136 '(".elc" ".lof"
137 ".glo" ".idx" ".lot"
138 ;; TeX-related
139 ".dvi" ".fmt"
140 ;; Texinfo-related
141 ".toc" ".log" ".aux"
142 ".cp" ".fn" ".ky" ".pg" ".tp" ".vr"
143 ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs")))
145 (setq debug-ignored-errors
146 '(beginning-of-line beginning-of-buffer end-of-line
147 end-of-buffer end-of-file buffer-read-only
148 "^Previous command was not a yank$"
149 "^Minibuffer window is not active$"
150 "^End of history; no next item$"
151 "^Beginning of history; no preceding item$"
152 "^No recursive edit is in progress$"
153 "^Changes to be undone are outside visible portion of buffer$"
154 "^No undo information in this buffer$"
155 "^No further undo information$"
156 "^Save not confirmed$"
157 "^Recover-file cancelled\\.$"
159 ;; comint
160 "^Not at command line$"
161 "^Empty input ring$"
162 "^No history$"
163 "^Not found$";; To common?
164 "^Current buffer has no process$"
166 ;; dabbrev
167 "^No dynamic expansion for .* found$"
168 "^No further dynamic expansion for .* found$"
170 ;; Completion
171 "^To complete, the point must be after a symbol at least [0-9]* character long\\.$"
172 "^The string \".*\" is too short to be saved as a completion\\.$"
174 ;; Compile
175 "^No more errors\\( yet\\|\\)$"
177 ;; Gnus
178 "^NNTP: Connection closed\\.$"
180 ;; info
181 "^Node has no Previous$"
182 "^No \".*\" in index$"
184 ;; imenu
185 "^No items suitable for an index found in this buffer\\.$"
186 "^This buffer cannot use `imenu-default-create-index-function'$"
187 "^The mode `.*' does not support Imenu$"
189 ;; ispell
190 "^No word found to check!$"
192 ;; mh-e
193 "^Cursor not pointing to message$"
194 "^There is no other window$"
196 ;; man
197 "^No manpage [0-9]* found$"
199 ;; etags
200 "^No tags table in use; use .* to select one$"
201 "^There is no default tag$"
202 "^No previous tag locations$"
203 "^File .* is not a valid tags table$"
204 "^No \\(more \\|\\)tags \\(matching\\|containing\\) "
205 "^Rerun etags: `.*' not found in "
206 "^All files processed$"
207 "^No .* or .* in progress$"
208 "^File .* not in current tags tables$"
209 "^No tags table loaded"
210 "^Nothing to complete$"
212 ;; BBDB
213 "^no previous record$"
214 "^no next record$"))
217 (make-variable-buffer-local 'indent-tabs-mode)
219 (define-key esc-map "\t" 'complete-symbol)
221 (defun complete-symbol (arg)
222 "Perform tags completion on the text around point.
223 Completes to the set of names listed in the current tags table.
224 The string to complete is chosen in the same way as the default
225 for \\[find-tag] (which see)."
226 (interactive "P")
227 (if arg
228 (if (fboundp 'complete-tag)
229 (complete-tag)
230 ;; Don't autoload etags if we have no tags table.
231 (error (substitute-command-keys
232 "No tags table loaded; use \\[visit-tags-table] to load one")))
233 (info-complete-symbol)))
235 ;; Reduce total amount of space we must allocate during this function
236 ;; that we will not need to keep permanently.
237 (garbage-collect)
239 ;; Make Latin-1, Latin-2, Latin-3 and Latin-4 characters self-insert.
240 (aset (nth 1 global-map) (make-char 'latin-iso8859-1) 'self-insert-command)
241 (aset (nth 1 global-map) (make-char 'latin-iso8859-2) 'self-insert-command)
242 (aset (nth 1 global-map) (make-char 'latin-iso8859-3) 'self-insert-command)
243 (aset (nth 1 global-map) (make-char 'latin-iso8859-4) 'self-insert-command)
245 (define-key ctl-x-map "n" (make-sparse-keymap))
246 (define-key ctl-x-map "r" (make-sparse-keymap))
248 (setq help-event-list '(help f1))
250 ;These commands are defined in editfns.c
251 ;but they are not assigned to keys there.
252 (put 'narrow-to-region 'disabled t)
253 (define-key ctl-x-map "nn" 'narrow-to-region)
254 (define-key ctl-x-map "nw" 'widen)
255 ;; (define-key ctl-x-map "n" 'narrow-to-region)
256 ;; (define-key ctl-x-map "w" 'widen)
258 (define-key global-map "\C-j" 'newline-and-indent)
259 (define-key global-map "\C-m" 'newline)
260 (define-key global-map "\C-o" 'open-line)
261 (define-key esc-map "\C-o" 'split-line)
262 (define-key global-map "\C-q" 'quoted-insert)
263 (define-key esc-map "^" 'delete-indentation)
264 (define-key esc-map "\\" 'delete-horizontal-space)
265 (define-key esc-map "m" 'back-to-indentation)
266 (define-key ctl-x-map "\C-o" 'delete-blank-lines)
267 (define-key esc-map " " 'just-one-space)
268 (define-key esc-map "z" 'zap-to-char)
269 (define-key esc-map "=" 'count-lines-region)
270 (define-key ctl-x-map "=" 'what-cursor-position)
271 (define-key esc-map ":" 'eval-expression)
272 ;; Define ESC ESC : like ESC : for people who type ESC ESC out of habit.
273 (define-key esc-map "\M-:" 'eval-expression)
274 ;; Changed from C-x ESC so that function keys work following C-x.
275 (define-key ctl-x-map "\e\e" 'repeat-complex-command)
276 ;; New binding analogous to M-:.
277 (define-key ctl-x-map "\M-:" 'repeat-complex-command)
278 (define-key ctl-x-map "u" 'advertised-undo)
279 ;; Many people are used to typing C-/ on X terminals and getting C-_.
280 (define-key global-map [?\C-/] 'undo)
281 (define-key global-map "\C-_" 'undo)
282 (define-key esc-map "!" 'shell-command)
283 (define-key esc-map "|" 'shell-command-on-region)
285 ;; This is an experiment--make up and down arrows do history.
286 (define-key minibuffer-local-map [up] 'previous-history-element)
287 (define-key minibuffer-local-map [down] 'next-history-element)
288 (define-key minibuffer-local-ns-map [up] 'previous-history-element)
289 (define-key minibuffer-local-ns-map [down] 'next-history-element)
290 (define-key minibuffer-local-completion-map [up] 'previous-history-element)
291 (define-key minibuffer-local-completion-map [down] 'next-history-element)
292 (define-key minibuffer-local-must-match-map [up] 'previous-history-element)
293 (define-key minibuffer-local-must-match-map [down] 'next-history-element)
295 (define-key global-map "\C-u" 'universal-argument)
296 (let ((i ?0))
297 (while (<= i ?9)
298 (define-key esc-map (char-to-string i) 'digit-argument)
299 (setq i (1+ i))))
300 (define-key esc-map "-" 'negative-argument)
301 ;; Define control-digits.
302 (let ((i ?0))
303 (while (<= i ?9)
304 (define-key global-map (read (format "[?\\C-%c]" i)) 'digit-argument)
305 (setq i (1+ i))))
306 (define-key global-map [?\C--] 'negative-argument)
307 ;; Define control-meta-digits.
308 (let ((i ?0))
309 (while (<= i ?9)
310 (define-key esc-map (read (format "[?\\C-%c]" i)) 'digit-argument)
311 (setq i (1+ i))))
312 (define-key global-map [?\C-\M--] 'negative-argument)
314 (define-key global-map "\C-k" 'kill-line)
315 (define-key global-map "\C-w" 'kill-region)
316 (define-key esc-map "w" 'kill-ring-save)
317 (define-key esc-map "\C-w" 'append-next-kill)
318 (define-key global-map "\C-y" 'yank)
319 (define-key esc-map "y" 'yank-pop)
321 ;; (define-key ctl-x-map "a" 'append-to-buffer)
323 (define-key global-map "\C-@" 'set-mark-command)
324 ;; Many people are used to typing C-SPC and getting C-@.
325 (define-key global-map [?\C-\ ] 'set-mark-command)
326 (define-key ctl-x-map "\C-x" 'exchange-point-and-mark)
327 (define-key ctl-x-map "\C-@" 'pop-global-mark)
328 (define-key ctl-x-map [?\C-\ ] 'pop-global-mark)
330 (define-key global-map "\C-n" 'next-line)
331 (define-key global-map "\C-p" 'previous-line)
332 (define-key ctl-x-map "\C-n" 'set-goal-column)
334 ;;(defun function-key-error ()
335 ;; (interactive)
336 ;; (error "That function key is not bound to anything."))
338 (define-key global-map [menu] 'execute-extended-command)
339 (define-key global-map [find] 'search-forward)
341 ;; natural bindings for terminal keycaps --- defined in X keysym order
342 (define-key global-map [home] 'beginning-of-buffer)
343 (define-key global-map [M-home] 'beginning-of-buffer-other-window)
344 (define-key global-map [left] 'backward-char)
345 (define-key global-map [up] 'previous-line)
346 (define-key global-map [right] 'forward-char)
347 (define-key global-map [down] 'next-line)
348 (define-key global-map [prior] 'scroll-down)
349 (define-key global-map [next] 'scroll-up)
350 (define-key global-map [C-up] 'backward-paragraph)
351 (define-key global-map [C-down] 'forward-paragraph)
352 (define-key global-map [C-prior] 'scroll-right)
353 (define-key global-map [C-next] 'scroll-left)
354 (define-key global-map [M-next] 'scroll-other-window)
355 (define-key global-map [M-prior] 'scroll-other-window-down)
356 (define-key global-map [end] 'end-of-buffer)
357 (define-key global-map [M-end] 'end-of-buffer-other-window)
358 (define-key global-map [begin] 'beginning-of-buffer)
359 (define-key global-map [M-begin] 'beginning-of-buffer-other-window)
360 ;; (define-key global-map [select] 'function-key-error)
361 ;; (define-key global-map [print] 'function-key-error)
362 (define-key global-map [execute] 'execute-extended-command)
363 (define-key global-map [insert] 'overwrite-mode)
364 (define-key global-map [C-insert] 'kill-ring-save)
365 (define-key global-map [S-insert] 'yank)
366 (define-key global-map [undo] 'undo)
367 (define-key global-map [redo] 'repeat-complex-command)
368 ;; (define-key global-map [clearline] 'function-key-error)
369 (define-key global-map [insertline] 'open-line)
370 (define-key global-map [deleteline] 'kill-line)
371 ;; (define-key global-map [insertchar] 'function-key-error)
372 (define-key global-map [deletechar] 'delete-char)
373 ;; (define-key global-map [backtab] 'function-key-error)
374 ;; (define-key global-map [f1] 'function-key-error)
375 ;; (define-key global-map [f2] 'function-key-error)
376 ;; (define-key global-map [f3] 'function-key-error)
377 ;; (define-key global-map [f4] 'function-key-error)
378 ;; (define-key global-map [f5] 'function-key-error)
379 ;; (define-key global-map [f6] 'function-key-error)
380 ;; (define-key global-map [f7] 'function-key-error)
381 ;; (define-key global-map [f8] 'function-key-error)
382 ;; (define-key global-map [f9] 'function-key-error)
383 ;; (define-key global-map [f10] 'function-key-error)
384 ;; (define-key global-map [f11] 'function-key-error)
385 ;; (define-key global-map [f12] 'function-key-error)
386 ;; (define-key global-map [f13] 'function-key-error)
387 ;; (define-key global-map [f14] 'function-key-error)
388 ;; (define-key global-map [f15] 'function-key-error)
389 ;; (define-key global-map [f16] 'function-key-error)
390 ;; (define-key global-map [f17] 'function-key-error)
391 ;; (define-key global-map [f18] 'function-key-error)
392 ;; (define-key global-map [f19] 'function-key-error)
393 ;; (define-key global-map [f20] 'function-key-error)
394 ;; (define-key global-map [f21] 'function-key-error)
395 ;; (define-key global-map [f22] 'function-key-error)
396 ;; (define-key global-map [f23] 'function-key-error)
397 ;; (define-key global-map [f24] 'function-key-error)
398 ;; (define-key global-map [f25] 'function-key-error)
399 ;; (define-key global-map [f26] 'function-key-error)
400 ;; (define-key global-map [f27] 'function-key-error)
401 ;; (define-key global-map [f28] 'function-key-error)
402 ;; (define-key global-map [f29] 'function-key-error)
403 ;; (define-key global-map [f30] 'function-key-error)
404 ;; (define-key global-map [f31] 'function-key-error)
405 ;; (define-key global-map [f32] 'function-key-error)
406 ;; (define-key global-map [f33] 'function-key-error)
407 ;; (define-key global-map [f34] 'function-key-error)
408 ;; (define-key global-map [f35] 'function-key-error)
409 ;; (define-key global-map [kp-backtab] 'function-key-error)
410 ;; (define-key global-map [kp-space] 'function-key-error)
411 ;; (define-key global-map [kp-tab] 'function-key-error)
412 ;; (define-key global-map [kp-enter] 'function-key-error)
413 ;; (define-key global-map [kp-f1] 'function-key-error)
414 ;; (define-key global-map [kp-f2] 'function-key-error)
415 ;; (define-key global-map [kp-f3] 'function-key-error)
416 ;; (define-key global-map [kp-f4] 'function-key-error)
417 ;; (define-key global-map [kp-multiply] 'function-key-error)
418 ;; (define-key global-map [kp-add] 'function-key-error)
419 ;; (define-key global-map [kp-separator] 'function-key-error)
420 ;; (define-key global-map [kp-subtract] 'function-key-error)
421 ;; (define-key global-map [kp-decimal] 'function-key-error)
422 ;; (define-key global-map [kp-divide] 'function-key-error)
423 ;; (define-key global-map [kp-0] 'function-key-error)
424 ;; (define-key global-map [kp-1] 'function-key-error)
425 ;; (define-key global-map [kp-2] 'function-key-error)
426 ;; (define-key global-map [kp-3] 'function-key-error)
427 ;; (define-key global-map [kp-4] 'function-key-error)
428 ;; (define-key global-map [kp-5] 'recenter)
429 ;; (define-key global-map [kp-6] 'function-key-error)
430 ;; (define-key global-map [kp-7] 'function-key-error)
431 ;; (define-key global-map [kp-8] 'function-key-error)
432 ;; (define-key global-map [kp-9] 'function-key-error)
433 ;; (define-key global-map [kp-equal] 'function-key-error)
435 ;; X11R6 distinguishes these keys from the non-kp keys.
436 ;; Make them behave like the non-kp keys unless otherwise bound.
437 (define-key function-key-map [kp-home] [home])
438 (define-key function-key-map [kp-left] [left])
439 (define-key function-key-map [kp-up] [up])
440 (define-key function-key-map [kp-right] [right])
441 (define-key function-key-map [kp-down] [down])
442 (define-key function-key-map [kp-prior] [prior])
443 (define-key function-key-map [kp-next] [next])
444 (define-key function-key-map [M-kp-next] [M-next])
445 (define-key function-key-map [kp-end] [end])
446 (define-key function-key-map [kp-begin] [begin])
447 (define-key function-key-map [kp-insert] [insert])
448 (define-key function-key-map [kp-delete] [delete])
450 (define-key global-map [mouse-movement] 'ignore)
452 (define-key global-map "\C-t" 'transpose-chars)
453 (define-key esc-map "t" 'transpose-words)
454 (define-key esc-map "\C-t" 'transpose-sexps)
455 (define-key ctl-x-map "\C-t" 'transpose-lines)
457 (define-key esc-map ";" 'indent-for-comment)
458 (define-key esc-map "j" 'indent-new-comment-line)
459 (define-key esc-map "\C-j" 'indent-new-comment-line)
460 (define-key ctl-x-map ";" 'set-comment-column)
461 (define-key ctl-x-map "f" 'set-fill-column)
462 (define-key ctl-x-map "$" 'set-selective-display)
464 (define-key esc-map "@" 'mark-word)
465 (define-key esc-map "f" 'forward-word)
466 (define-key esc-map "b" 'backward-word)
467 (define-key esc-map "d" 'kill-word)
468 (define-key esc-map "\177" 'backward-kill-word)
470 (define-key esc-map "<" 'beginning-of-buffer)
471 (define-key esc-map ">" 'end-of-buffer)
472 (define-key ctl-x-map "h" 'mark-whole-buffer)
473 (define-key esc-map "\\" 'delete-horizontal-space)
475 (defalias 'mode-specific-command-prefix (make-sparse-keymap))
476 (defvar mode-specific-map (symbol-function 'mode-specific-command-prefix)
477 "Keymap for characters following C-c.")
478 (define-key global-map "\C-c" 'mode-specific-command-prefix)
480 (global-set-key [M-right] 'forward-word)
481 (global-set-key [M-left] 'backward-word)
482 ;; ilya@math.ohio-state.edu says these bindings are standard on PC editors.
483 (global-set-key [C-right] 'forward-word)
484 (global-set-key [C-left] 'backward-word)
485 ;; This is not quite compatible, but at least is analogous
486 (global-set-key [C-delete] 'backward-kill-word)
487 ;; This is "move to the clipboard", or as close as we come.
488 (global-set-key [S-delete] 'kill-region)
490 (define-key esc-map "\C-f" 'forward-sexp)
491 (define-key esc-map "\C-b" 'backward-sexp)
492 (define-key esc-map "\C-u" 'backward-up-list)
493 (define-key esc-map "\C-@" 'mark-sexp)
494 (define-key esc-map [?\C-\ ] 'mark-sexp)
495 (define-key esc-map "\C-d" 'down-list)
496 (define-key esc-map "\C-k" 'kill-sexp)
497 (define-key global-map [C-M-delete] 'backward-kill-sexp)
498 (define-key global-map [C-M-backspace] 'backward-kill-sexp)
499 (define-key esc-map "\C-n" 'forward-list)
500 (define-key esc-map "\C-p" 'backward-list)
501 (define-key esc-map "\C-a" 'beginning-of-defun)
502 (define-key esc-map "\C-e" 'end-of-defun)
503 (define-key esc-map "\C-h" 'mark-defun)
504 (define-key ctl-x-map "nd" 'narrow-to-defun)
505 (define-key esc-map "(" 'insert-parentheses)
506 (define-key esc-map ")" 'move-past-close-and-reindent)
508 (define-key ctl-x-map "\C-e" 'eval-last-sexp)
510 (define-key ctl-x-map "m" 'compose-mail)
511 (define-key ctl-x-4-map "m" 'compose-mail-other-window)
512 (define-key ctl-x-5-map "m" 'compose-mail-other-frame)
514 (define-key ctl-x-map "r\C-@" 'point-to-register)
515 (define-key ctl-x-map [?r ?\C-\ ] 'point-to-register)
516 (define-key ctl-x-map "r " 'point-to-register)
517 (define-key ctl-x-map "rj" 'jump-to-register)
518 (define-key ctl-x-map "rs" 'copy-to-register)
519 (define-key ctl-x-map "rx" 'copy-to-register)
520 (define-key ctl-x-map "ri" 'insert-register)
521 (define-key ctl-x-map "rg" 'insert-register)
522 (define-key ctl-x-map "rr" 'copy-rectangle-to-register)
523 (define-key ctl-x-map "rc" 'clear-rectangle)
524 (define-key ctl-x-map "rk" 'kill-rectangle)
525 (define-key ctl-x-map "rd" 'delete-rectangle)
526 (define-key ctl-x-map "ry" 'yank-rectangle)
527 (define-key ctl-x-map "ro" 'open-rectangle)
528 (define-key ctl-x-map "rt" 'string-rectangle)
529 (define-key ctl-x-map "rw" 'window-configuration-to-register)
530 (define-key ctl-x-map "rf" 'frame-configuration-to-register)
532 ;; These key bindings are deprecated; use the above C-x r map instead.
533 ;; We use these aliases so \[...] will show the C-x r bindings instead.
534 (defalias 'point-to-register-compatibility-binding 'point-to-register)
535 (defalias 'jump-to-register-compatibility-binding 'jump-to-register)
536 (defalias 'copy-to-register-compatibility-binding 'copy-to-register)
537 (defalias 'insert-register-compatibility-binding 'insert-register)
538 (define-key ctl-x-map "/" 'point-to-register-compatibility-binding)
539 (define-key ctl-x-map "j" 'jump-to-register-compatibility-binding)
540 (define-key ctl-x-map "x" 'copy-to-register-compatibility-binding)
541 (define-key ctl-x-map "g" 'insert-register-compatibility-binding)
542 ;; (define-key ctl-x-map "r" 'copy-rectangle-to-register)
544 (define-key esc-map "q" 'fill-paragraph)
545 ;; (define-key esc-map "g" 'fill-region)
546 (define-key ctl-x-map "." 'set-fill-prefix)
548 (define-key esc-map "{" 'backward-paragraph)
549 (define-key esc-map "}" 'forward-paragraph)
550 (define-key esc-map "h" 'mark-paragraph)
551 (define-key esc-map "a" 'backward-sentence)
552 (define-key esc-map "e" 'forward-sentence)
553 (define-key esc-map "k" 'kill-sentence)
554 (define-key ctl-x-map "\177" 'backward-kill-sentence)
556 (define-key ctl-x-map "[" 'backward-page)
557 (define-key ctl-x-map "]" 'forward-page)
558 (define-key ctl-x-map "\C-p" 'mark-page)
559 (define-key ctl-x-map "l" 'count-lines-page)
560 (define-key ctl-x-map "np" 'narrow-to-page)
561 ;; (define-key ctl-x-map "p" 'narrow-to-page)
563 (define-key ctl-x-map "al" 'add-mode-abbrev)
564 (define-key ctl-x-map "a\C-a" 'add-mode-abbrev)
565 (define-key ctl-x-map "ag" 'add-global-abbrev)
566 (define-key ctl-x-map "a+" 'add-mode-abbrev)
567 (define-key ctl-x-map "aig" 'inverse-add-global-abbrev)
568 (define-key ctl-x-map "ail" 'inverse-add-mode-abbrev)
569 ;; (define-key ctl-x-map "a\C-h" 'inverse-add-global-abbrev)
570 (define-key ctl-x-map "a-" 'inverse-add-global-abbrev)
571 (define-key ctl-x-map "ae" 'expand-abbrev)
572 (define-key ctl-x-map "a'" 'expand-abbrev)
573 ;; (define-key ctl-x-map "\C-a" 'add-mode-abbrev)
574 ;; (define-key ctl-x-map "\+" 'add-global-abbrev)
575 ;; (define-key ctl-x-map "\C-h" 'inverse-add-mode-abbrev)
576 ;; (define-key ctl-x-map "\-" 'inverse-add-global-abbrev)
577 (define-key esc-map "'" 'abbrev-prefix-mark)
578 (define-key ctl-x-map "'" 'expand-abbrev)
580 ;;; Don't compile this file; it contains no large function definitions.
581 ;;; Don't look for autoload cookies in this file.
582 ;;; Local Variables:
583 ;;; no-byte-compile: t
584 ;;; no-update-autoloads: t
585 ;;; End:
587 ;;; bindings.el ends here