]> code.delx.au - gnu-emacs/blob - lisp/bindings.el
(make-mode-line-mouse-sensitive): Add key
[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 (defconst mode-line-modified
82 (let ((s "%1*%1+")
83 (map (make-sparse-keymap)))
84 (define-key map [mode-line mouse-2]
85 (lambda (event)
86 (interactive "e")
87 (save-selected-window
88 (select-window (posn-window (event-start event)))
89 (toggle-read-only))))
90 (set-text-properties 0 (length s)
91 (list 'help-echo
92 "Read-only status: mouse-2 toggles it"
93 'local-map map)
94 s)
95 (list s))
96 "Mode-line control for displaying whether current buffer is modified.")
97
98 (make-variable-buffer-local 'mode-line-modified)
99
100 (setq-default mode-line-format
101 (list (purecopy "-")
102 'mode-line-mule-info
103 'mode-line-modified
104 'mode-line-frame-identification
105 'mode-line-buffer-identification
106 (purecopy " ")
107 'global-mode-string
108 (purecopy " %[(")
109 '(:eval (mode-line-mode-name)) 'mode-line-process 'minor-mode-alist
110 (purecopy "%n")
111 (purecopy ")%]--")
112 '(which-func-mode ("" which-func-format "--"))
113 (purecopy '(line-number-mode "L%l--"))
114 (purecopy '(column-number-mode "C%c--"))
115 (purecopy '(-3 . "%p"))
116 (purecopy "-%-")))
117
118 (defvar minor-mode-alist nil "\
119 Alist saying how to show minor modes in the mode line.
120 Each element looks like (VARIABLE STRING);
121 STRING is included in the mode line iff VARIABLE's value is non-nil.
122
123 Actually, STRING need not be a string; any possible mode-line element
124 is okay. See `mode-line-format'.")
125 ;; Don't use purecopy here--some people want to change these strings.
126 (setq minor-mode-alist '((abbrev-mode " Abbrev")
127 (overwrite-mode overwrite-mode)
128 (auto-fill-function " Fill")
129 ;; not really a minor mode...
130 (defining-kbd-macro " Def")))
131
132 (defvar mode-line-buffer-identification-keymap nil
133 "Keymap for what is displayed by `mode-line-buffer-identification'.")
134
135 (defvar mode-line-minor-mode-keymap nil
136 "Keymap for what is displayed by `mode-line-mode-name'.")
137
138 (defvar mode-line-mode-menu-keymap nil
139 "Keymap for mode operations menu in the mode line.")
140
141 (defun mode-line-unbury-buffer ()
142 "Switch to the last buffer in the buffer list that is not hidden."
143 (interactive)
144 (let ((list (reverse (buffer-list))))
145 (while (eq (sref (buffer-name (car list)) 0) ? )
146 (setq list (cdr list)))
147 (switch-to-buffer (car list))))
148
149 (defun mode-line-other-buffer ()
150 "Switch to the most recently selected buffer other than the current one."
151 (interactive)
152 (switch-to-buffer (other-buffer)))
153
154 (defun mode-line-mode-menu-1 (event)
155 (interactive "e")
156 (save-selected-window
157 (select-window (posn-window (event-start event)))
158 (let* ((selection (mode-line-mode-menu event))
159 (binding (and selection (lookup-key mode-line-mode-menu
160 (vector (car selection))))))
161 (if binding
162 (call-interactively binding)))))
163
164 (defun mode-line-mode-name ()
165 "Return a string to display in the mode line for the current mode name."
166 (let (length (result mode-name))
167 (when mode-line-mouse-sensitive-p
168 (let ((local-map (get-text-property 0 'local-map result))
169 (help-echo (get-text-property 0 'help-echo result)))
170 (setq result (copy-sequence result))
171 ;; Add `local-map' property if there isn't already one.
172 (when (and (null local-map)
173 (null (next-single-property-change 0 'local-map result)))
174 (put-text-property 0 (length result)
175 'local-map mode-line-minor-mode-keymap result))
176 ;; Add `help-echo' property if there isn't already one.
177 (when (and (null help-echo)
178 (null (next-single-property-change 0 'help-echo result)))
179 (put-text-property 0 (length result)
180 'help-echo "mouse-3: minor mode menu" result))))
181 result))
182
183 (defvar mode-line-mouse-sensitive-p nil
184 "Non-nil means mode line has been made mouse-sensitive.")
185
186 (defun make-mode-line-mouse-sensitive ()
187 (when (and window-system
188 (not mode-line-mouse-sensitive-p))
189 (setq mode-line-mouse-sensitive-p t)
190 (require 'easymenu)
191 (easy-menu-define mode-line-mode-menu mode-line-mode-menu-keymap
192 "Menu of mode operations in the mode line."
193 '("Minor Modes"
194 ["Abbrev" abbrev-mode :active t :style toggle
195 :selected abbrev-mode]
196 ["Auto revert" auto-revert-mode :active t :style toggle
197 :selected auto-revert-mode]
198 ["Auto-fill" auto-fill-mode :active t :style toggle
199 :selected auto-fill-function]
200 ["Column number" column-number-mode :active t :style toggle
201 :selected column-number-mode]
202 ["Flyspell" flyspell-mode :active t :style toggle
203 :selected flyspell-mode]
204 ["Font-lock" font-lock-mode :active t :style toggle
205 :selected font-lock-mode]
206 ["Hide ifdef" hide-ifdef-mode :active t :style toggle
207 :selected hide-ifdef-mode]
208 ["Highlight changes" highlight-changes-mode :active t :style toggle
209 :selected highlight-changes-mode]
210 ["Line number" line-number-mode :active t :style toggle
211 :selected line-number-mode]
212 ["Outline" outline-minor-mode :active t :style toggle
213 :selected outline-minor-mode]
214 ["Overwrite" overwrite-mode :active t :style toggle
215 :selected overwrite-mode]))
216
217 ;; Add menu of buffer operations to the buffer identification part
218 ;; of the mode line.
219 (let ((map (make-sparse-keymap))
220 (s (copy-sequence "%12b")))
221 (define-key map [mode-line mouse-1] 'mode-line-other-buffer)
222 (define-key map [top-line mouse-1] 'mode-line-other-buffer)
223 (define-key map [mode-line M-mouse-2] 'mode-line-unbury-buffer)
224 (define-key map [top-line M-mouse-2] 'mode-line-unbury-buffer)
225 (define-key map [mode-line mouse-2] 'bury-buffer)
226 (define-key map [top-line mouse-2] 'bury-buffer)
227 (define-key map [mode-line down-mouse-3] 'mouse-buffer-menu)
228 (define-key map [top-line down-mouse-3] 'mouse-buffer-menu)
229 (setq mode-line-buffer-identification-keymap map)
230 (setq-default mode-line-buffer-identification (list s))
231 (put-text-property 0 (length s) 'face '(:weight bold) s)
232 (put-text-property 0 (length s) 'help-echo
233 "mouse-1: other buffer, mouse-2: prev, M-mouse-2: next, mouse-3: buffer menu" s)
234 (put-text-property 0 (length s) 'local-map map s))
235
236 ;; Menu of minor modes.
237 (let ((map (make-sparse-keymap)))
238 (define-key map [mode-line down-mouse-3] 'mode-line-mode-menu-1)
239 (define-key map [top-line down-mouse-3] 'mode-line-mode-menu-1)
240 (setq mode-line-minor-mode-keymap map))
241
242 (force-mode-line-update)))
243
244
245 ;; These variables are used by autoloadable packages.
246 ;; They are defined here so that they do not get overridden
247 ;; by the loading of those packages.
248
249 ;; Names in directory that end in one of these
250 ;; are ignored in completion,
251 ;; making it more likely you will get a unique match.
252 (setq completion-ignored-extensions
253 (append
254 (cond ((or (eq system-type 'ms-dos) (eq system-type 'windows-nt))
255 '(".o" "~" ".bin" ".bak" ".obj" ".map"
256 ".a" ".ln" ".blg" ".bbl"))
257 ((eq system-type 'vax-vms)
258 '(".obj" ".exe" ".bin" ".lbin" ".sbin"
259 ".brn" ".rnt" ".mem" ".lni" ".lis"
260 ".olb" ".tlb" ".mlb" ".hlb"))
261 (t
262 '(".o" "~" ".bin" ".lbin" ".fasl"
263 ".a" ".ln" ".blg" ".bbl")))
264 '(".elc" ".lof"
265 ".glo" ".idx" ".lot"
266 ;; TeX-related
267 ".dvi" ".fmt"
268 ;; Java compiled
269 ".class"
270 ;; Clisp
271 ".fas" ".lib"
272 ;; CMUCL
273 ".x86f"
274 ;; Texinfo-related
275 ".toc" ".log" ".aux"
276 ".cp" ".fn" ".ky" ".pg" ".tp" ".vr"
277 ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs")))
278
279 (setq debug-ignored-errors
280 '(beginning-of-line beginning-of-buffer end-of-line
281 end-of-buffer end-of-file buffer-read-only
282 file-supersession
283 "^Previous command was not a yank$"
284 "^Minibuffer window is not active$"
285 "^End of history; no next item$"
286 "^Beginning of history; no preceding item$"
287 "^No recursive edit is in progress$"
288 "^Changes to be undone are outside visible portion of buffer$"
289 "^No undo information in this buffer$"
290 "^No further undo information$"
291 "^Save not confirmed$"
292 "^Recover-file cancelled\\.$"
293 "^Cannot switch buffers in a dedicated window$"
294
295 ;; comint
296 "^Not at command line$"
297 "^Empty input ring$"
298 "^No history$"
299 "^Not found$";; To common?
300 "^Current buffer has no process$"
301
302 ;; dabbrev
303 "^No dynamic expansion for .* found$"
304 "^No further dynamic expansion for .* found$"
305 "^No possible abbreviation preceding point$"
306
307 ;; Completion
308 "^To complete, the point must be after a symbol at least [0-9]* character long\\.$"
309 "^The string \".*\" is too short to be saved as a completion\\.$"
310
311 ;; Compile
312 "^No more errors\\( yet\\|\\)$"
313
314 ;; Gnus
315 "^NNTP: Connection closed\\.$"
316
317 ;; info
318 "^Node has no Previous$"
319 "^No menu in this node$"
320 "^Node has no Next$"
321 "^No \".*\" in index$"
322
323 ;; imenu
324 "^No items suitable for an index found in this buffer\\.$"
325 "^This buffer cannot use `imenu-default-create-index-function'$"
326 "^The mode `.*' does not support Imenu$"
327
328 ;; ispell
329 "^No word found to check!$"
330
331 ;; mh-e
332 "^Cursor not pointing to message$"
333 "^There is no other window$"
334
335 ;; man
336 "^No manpage [0-9]* found$"
337 "^Can't find the .* manpage$"
338
339 ;; etags
340 "^No tags table in use; use .* to select one$"
341 "^There is no default tag$"
342 "^No previous tag locations$"
343 "^File .* is not a valid tags table$"
344 "^No \\(more \\|\\)tags \\(matching\\|containing\\) "
345 "^Rerun etags: `.*' not found in "
346 "^All files processed$"
347 "^No .* or .* in progress$"
348 "^File .* not in current tags tables$"
349 "^No tags table loaded"
350 "^Nothing to complete$"
351
352 ;; ediff
353 "^Errors in diff output. Diff output is in "
354 "^Hmm... I don't see an Ediff command around here...$"
355 "^Undocumented command! Type `G' in Ediff Control Panel to drop a note to the Ediff maintainer$"
356 ": This command runs in Ediff Control Buffer only!$"
357 ": Invalid op in ediff-check-version$"
358 "^ediff-shrink-window-C can be used only for merging jobs$"
359 "^Lost difference info on these directories$"
360 "^This command is inapplicable in the present context$"
361 "^This session group has no parent$"
362 "^Can't hide active session, $"
363 "^Ediff: something wrong--no multiple diffs buffer$"
364 "^Can't make context diff for Session $"
365 "^The patch buffer wasn't found$"
366 "^Aborted$"
367 "^This Ediff session is not part of a session group$"
368 "^No active Ediff sessions or corrupted session registry$"
369 "^No session info in this line$"
370 "^`.*' is not an ordinary file$"
371 "^Patch appears to have failed$"
372 "^Recomputation of differences cancelled$"
373 "^No fine differences in this mode$"
374 "^Lost connection to ancestor buffer...sorry$"
375 "^Not merging with ancestor$"
376 "^Don't know how to toggle read-only in buffer "
377 "Emacs is not running as a window application$"
378 "^This command makes sense only when merging with an ancestor$"
379 "^At end of the difference list$"
380 "^At beginning of the difference list$"
381 "^Nothing saved for diff .* in buffer "
382 "^Buffer is out of sync for file "
383 "^Buffer out of sync for file "
384 "^Output from `diff' not found$"
385 "^You forgot to specify a region in buffer "
386 "^All right. Make up your mind and come back...$"
387 "^Current buffer is not visiting any file$"
388 "^Failed to retrieve revision: $"
389 "^Can't determine display width.$"
390 "^File `.*' does not exist or is not readable$"
391 "^File `.*' is a directory$"
392 "^Buffer .* doesn't exist$"
393 "^Directories . and . are the same: "
394 "^Directory merge aborted$"
395 "^Merge of directory revisions aborted$"
396 "^Buffer .* doesn't exist$"
397 "^There is no file to merge$"
398 "^Version control package .*.el not found. Use vc.el instead$"
399
400 ;; cus-edit
401 "^No user options have changed defaults in recent Emacs versions$"
402
403 ;; BBDB
404 "^no previous record$"
405 "^no next record$"))
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