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