]> code.delx.au - gnu-emacs/blob - lisp/bindings.el
(mode-line-copied-mode-name): New variable.
[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,99,2000, 2001
4 ;; Free Software Foundation, Inc.
5
6 ;; Maintainer: FSF
7 ;; Keywords: internal
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to
23 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Commentary:
27
28 ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
29 ;;; Special formatting conventions are used in this file!
30 ;;;
31 ;;; a backslash-newline is used at the beginning of a documentation string
32 ;;; when that string should be stored in the file etc/DOCnnn, not in core.
33 ;;;
34 ;;; Such strings read into Lisp as numbers (during the pure-loading phase).
35 ;;;
36 ;;; But you must obey certain rules to make sure the string is understood
37 ;;; and goes into etc/DOCnnn properly.
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 (defun make-mode-line-mouse-map (mouse function) "\
51 Return a keymap with single entry for mouse key MOUSE on the mode line.
52 MOUSE is defined to run function FUNCTION with no args in the buffer
53 corresponding to the mode line clicked."
54 (let ((map (make-sparse-keymap)))
55 (define-key map (vector 'mode-line mouse) function)
56 map))
57
58
59 (defun mode-line-toggle-read-only (event)
60 "Like `toggle-read-only', for the mode-line."
61 (interactive "e")
62 (save-selected-window
63 (select-window (posn-window (event-start event)))
64 (toggle-read-only)
65 (force-mode-line-update)))
66
67
68 (defun mode-line-toggle-modified (event)
69 "Toggle the buffer-modified flag from the mode-line."
70 (interactive "e")
71 (save-selected-window
72 (select-window (posn-window (event-start event)))
73 (set-buffer-modified-p (not (buffer-modified-p)))
74 (force-mode-line-update)))
75
76
77 (defun mode-line-widen (event)
78 "Widen a buffer from the mode-line."
79 (interactive "e")
80 (save-selected-window
81 (select-window (posn-window (event-start event)))
82 (widen)
83 (force-mode-line-update)))
84
85
86 (defun mode-line-abbrev-mode (event)
87 "Turn off `abbrev-mode' from the mode-line."
88 (interactive "e")
89 (save-selected-window
90 (select-window (posn-window (event-start event)))
91 (abbrev-mode)
92 (force-mode-line-update)))
93
94
95 (defun mode-line-auto-fill-mode (event)
96 "Turn off `auto-fill-mode' from the mode-line."
97 (interactive "e")
98 (save-selected-window
99 (select-window (posn-window (event-start event)))
100 (auto-fill-mode)
101 (force-mode-line-update)))
102
103
104 (defvar mode-line-input-method-map
105 (let ((map (make-sparse-keymap)))
106 (define-key map [mode-line mouse-2]
107 (lambda (e)
108 (interactive "e")
109 (save-selected-window
110 (select-window
111 (posn-window (event-start e)))
112 (toggle-input-method)
113 (force-mode-line-update))))
114 (define-key map [mode-line mouse-3]
115 (lambda (e)
116 (interactive "e")
117 (save-selected-window
118 (select-window
119 (posn-window (event-start e)))
120 (describe-current-input-method))))
121 (purecopy map)))
122
123
124 (defvar mode-line-coding-system-map
125 (let ((map (make-sparse-keymap)))
126 (define-key map [mode-line mouse-3]
127 (lambda (e)
128 (interactive "e")
129 (save-selected-window
130 (select-window (posn-window (event-start e)))
131 (when (and enable-multibyte-characters
132 buffer-file-coding-system)
133 (describe-coding-system buffer-file-coding-system)))))
134 (purecopy map))
135 "Local keymap for the coding-system part of the mode line.")
136
137
138 (defvar mode-line-mule-info
139 `(""
140 (current-input-method
141 (:eval
142 ,(purecopy
143 '(propertize current-input-method-title
144 'help-echo (concat
145 "Input method: "
146 current-input-method
147 ". mouse-2: disable, mouse-3: describe")
148 'local-map mode-line-input-method-map))))
149 ,(propertize
150 "%Z"
151 'help-echo
152 (purecopy (lambda (window object point)
153 (save-window-excursion
154 (select-window window)
155 ;; Don't show this tip if the coding system is nil,
156 ;; it reads like a bug, and is not useful anyway.
157 (when buffer-file-coding-system
158 (if enable-multibyte-characters
159 (concat (symbol-name buffer-file-coding-system)
160 " buffer; mouse-3: describe coding system")
161 (concat "Unibyte "
162 (symbol-name buffer-file-coding-system)
163 " buffer"))))))
164 'local-map mode-line-coding-system-map))
165 "Mode-line control for displaying information of multilingual environment.
166 Normally it displays current input method (if any activated) and
167 mnemonics of the following coding systems:
168 coding system for saving or writing the current buffer
169 coding system for keyboard input (if Emacs is running on terminal)
170 coding system for terminal output (if Emacs is running on terminal)"
171 ;;; Currently not:
172 ;;; coding system for decoding output of buffer process (if any)
173 ;;; coding system for encoding text to send to buffer process (if any)."
174 )
175
176 (make-variable-buffer-local 'mode-line-mule-info)
177
178 (defvar mode-line-buffer-identification (purecopy '("%12b")) "\
179 Mode-line control for identifying the buffer being displayed.
180 Its default value is (\"%12b\").
181 Major modes that edit things other than ordinary files may change this
182 \(e.g. Info, Dired,...)")
183
184 (make-variable-buffer-local 'mode-line-buffer-identification)
185
186 (defvar mode-line-frame-identification '("-%F ")
187 "Mode-line control to describe the current frame.")
188
189 (defvar mode-line-process nil "\
190 Mode-line control for displaying info on process status.
191 Normally nil in most modes, since there is no process to display.")
192
193 (make-variable-buffer-local 'mode-line-process)
194
195 (defvar mode-line-modified
196 (list (propertize
197 "%1*"
198 'help-echo (purecopy (lambda (window object point)
199 (format "%sead-only: mouse-3 toggles"
200 (save-selected-window
201 (select-window window)
202 (if buffer-read-only
203 "R"
204 "Not r")))))
205 'local-map (purecopy (make-mode-line-mouse-map
206 'mouse-3
207 #'mode-line-toggle-read-only)))
208 (propertize
209 "%1+"
210 'help-echo (purecopy (lambda (window object point)
211 (format "%sodified: mouse-3 toggles"
212 (save-selected-window
213 (select-window window)
214 (if (buffer-modified-p)
215 "M"
216 "Not m")))))
217 'local-map (purecopy (make-mode-line-mouse-map
218 'mouse-3 #'mode-line-toggle-modified))))
219 "Mode-line control for displaying whether current buffer is modified.")
220
221 (make-variable-buffer-local 'mode-line-modified)
222
223 ;; Actual initialization is below.
224 (defvar mode-line-position nil
225 "Mode-line control for displaying line number, column number and fraction.")
226
227 (defvar mode-line-modes nil
228 "Mode-line control for displaying major and minor modes.")
229
230 (let* ((help-echo
231 ;; The multi-line message doesn't work terribly well on the
232 ;; bottom mode line... Better ideas?
233 ;; "\
234 ;; mouse-1: select window, mouse-2: delete others, mouse-3: delete,
235 ;; drag-mouse-1: resize, C-mouse-2: split horizontally"
236 "mouse-1: select (drag to resize), mouse-2: delete others, mouse-3: delete")
237 (dashes (propertize "--" 'help-echo help-echo)))
238 (setq-default mode-line-format
239 (list
240 (propertize "-" 'help-echo help-echo)
241 'mode-line-mule-info
242 'mode-line-modified
243 'mode-line-frame-identification
244 'mode-line-buffer-identification
245 (propertize " " 'help-echo help-echo)
246 'global-mode-string
247 'mode-line-modes
248 `(which-func-mode ("" which-func-format ,dashes))
249 'mode-line-position
250 (propertize "-%-" 'help-echo help-echo)))
251
252 (setq-default mode-line-modes
253 (list
254 (propertize " %[(" 'help-echo help-echo)
255 '(:eval (mode-line-mode-name)) 'mode-line-process 'minor-mode-alist
256 (propertize "%n" 'help-echo "mouse-2: widen"
257 'local-map (make-mode-line-mouse-map
258 'mouse-2 #'mode-line-widen))
259 (propertize ")%]--" 'help-echo help-echo)))
260
261 (setq-default mode-line-position
262 `((line-number-mode (,(propertize "L%l" 'help-echo help-echo) ,dashes))
263 (column-number-mode (,(propertize "C%c" 'help-echo help-echo) ,dashes))
264 (-3 . ,(propertize "%p" 'help-echo help-echo)))))
265
266 (defvar mode-line-buffer-identification-keymap nil "\
267 Keymap for what is displayed by `mode-line-buffer-identification'.")
268
269 (defvar mode-line-minor-mode-keymap nil "\
270 Keymap for what is displayed by `mode-line-mode-name'.")
271
272 (defvar mode-line-mode-menu-keymap nil "\
273 Keymap for mode operations menu in the mode line.")
274
275 (defun last-buffer () "\
276 Return the last non-hidden buffer in the buffer list."
277 (let ((list (reverse (buffer-list))))
278 (while (eq (aref (buffer-name (car list)) 0) ? )
279 (setq list (cdr list)))
280 (car list)))
281
282 (defun unbury-buffer () "\
283 Switch to the last buffer in the buffer list."
284 (interactive)
285 (switch-to-buffer (last-buffer)))
286
287 (defun mode-line-unbury-buffer (event) "\
288 Call `unbury-buffer' in this window."
289 (interactive "e")
290 (save-selected-window
291 (select-window (posn-window (event-start event)))
292 (unbury-buffer)))
293
294 (defun mode-line-bury-buffer (event) "\
295 Like `bury-buffer', but temporarily select EVENT's window."
296 (interactive "e")
297 (save-selected-window
298 (select-window (posn-window (event-start event)))
299 (bury-buffer)))
300
301 (defun mode-line-other-buffer () "\
302 Switch to the most recently selected buffer other than the current one."
303 (interactive)
304 (switch-to-buffer (other-buffer)))
305
306 (defvar mode-line-mode-menu (make-sparse-keymap "Minor Modes") "\
307 Menu of mode operations in the mode line.")
308
309 (defun mode-line-mode-menu-1 (event)
310 (interactive "e")
311 (save-selected-window
312 (select-window (posn-window (event-start event)))
313 (let* ((selection (mode-line-mode-menu event))
314 (binding (and selection (lookup-key mode-line-mode-menu
315 (vector (car selection))))))
316 (if binding
317 (call-interactively binding)))))
318
319 (defvar mode-line-copied-mode-name nil
320 "A copy of `mode-name', with `help-echo' and `local-map' properties added.")
321
322 (defun mode-line-mode-name () "\
323 Return a string to display in the mode line for the current mode name."
324 (when (stringp mode-name)
325 (if (equal mode-name mode-line-copied-mode-name)
326 mode-line-copied-mode-name
327 (setq mode-line-copied-mode-name
328 (propertize mode-name
329 'local-map mode-line-minor-mode-keymap
330 'help-echo "mouse-3: minor mode menu"))))
331 mode-line-copied-mode-name)
332
333 (defmacro bound-and-true-p (var)
334 "Return the value of symbol VAR if it is bound, else nil."
335 `(and (boundp (quote ,var)) ,var))
336
337 (define-key mode-line-mode-menu [overwrite-mode]
338 `(menu-item ,(purecopy "Overwrite") overwrite-mode
339 :button (:toggle . overwrite-mode)))
340 (define-key mode-line-mode-menu [outline-minor-mode]
341 `(menu-item ,(purecopy "Outline") outline-minor-mode
342 :button (:toggle . (bound-and-true-p outline-minor-mode))))
343 (define-key mode-line-mode-menu [line-number-mode]
344 `(menu-item ,(purecopy "Line number") line-number-mode
345 :button (:toggle . line-number-mode)))
346 (define-key mode-line-mode-menu [highlight-changes-mode]
347 `(menu-item ,(purecopy "Highlight changes") highlight-changes-mode
348 :button (:toggle . highlight-changes-mode)))
349 (define-key mode-line-mode-menu [glasses-mode]
350 `(menu-item ,(purecopy "Glasses") glasses-mode
351 :button (:toggle . (bound-and-true-p glasses-mode))))
352 (define-key mode-line-mode-menu [hide-ifdef-mode]
353 `(menu-item ,(purecopy "Hide ifdef") hide-ifdef-mode
354 :button (:toggle . (bound-and-true-p hide-ifdef-mode))))
355 (define-key mode-line-mode-menu [font-lock-mode]
356 `(menu-item ,(purecopy "Font-lock") font-lock-mode
357 :button (:toggle . font-lock-mode)))
358 (define-key mode-line-mode-menu [flyspell-mode]
359 `(menu-item ,(purecopy "Flyspell") flyspell-mode
360 :button (:toggle . (bound-and-true-p flyspell-mode))))
361 (define-key mode-line-mode-menu [column-number-mode]
362 `(menu-item ,(purecopy "Column number") column-number-mode
363 :button (:toggle . column-number-mode)))
364 (define-key mode-line-mode-menu [auto-fill-mode]
365 `(menu-item ,(purecopy "Auto-fill") auto-fill-mode
366 :button (:toggle . auto-fill-function)))
367 (define-key mode-line-mode-menu [auto-revert-mode]
368 `(menu-item ,(purecopy "Auto revert") auto-revert-mode
369 :button (:toggle . auto-revert-mode)))
370 (define-key mode-line-mode-menu [abbrev-mode]
371 `(menu-item ,(purecopy "Abbrev") abbrev-mode
372 :button (:toggle . abbrev-mode)))
373
374 (defun mode-line-mode-menu (event)
375 (interactive "@e")
376 (x-popup-menu event mode-line-mode-menu))
377
378 ;; Add menu of buffer operations to the buffer identification part
379 ;; of the mode line.or header line.
380 ;
381 (let ((map (make-sparse-keymap)))
382 ;; Bind down- events so that the global keymap won't ``shine
383 ;; through''.
384 (define-key map [mode-line down-mouse-1] 'ignore)
385 (define-key map [mode-line mouse-1] 'mode-line-unbury-buffer)
386 (define-key map [header-line down-mouse-1] 'ignore)
387 (define-key map [header-line mouse-1] 'mode-line-unbury-buffer)
388 (define-key map [header-line down-mouse-3] 'ignore)
389 (define-key map [mode-line mouse-3] 'mode-line-bury-buffer)
390 (define-key map [header-line down-mouse-3] 'ignore)
391 (define-key map [header-line mouse-3] 'mode-line-bury-buffer)
392 (setq mode-line-buffer-identification-keymap map))
393
394 (defun propertized-buffer-identification (fmt)
395 "Return a list suitable for `mode-line-buffer-identification'.
396 FMT is a format specifier such as \"%12b\". This function adds
397 text properties for face, help-echo, and local-map to it."
398 (list (propertize fmt
399 'face '(:weight bold)
400 'help-echo
401 (purecopy "mouse-1: previous buffer, mouse-3: next buffer")
402 'local-map mode-line-buffer-identification-keymap)))
403
404 (setq-default mode-line-buffer-identification
405 (propertized-buffer-identification "%12b"))
406
407 ;; Menu of minor modes.
408 (let ((map (make-sparse-keymap)))
409 (define-key map [mode-line down-mouse-3] 'mode-line-mode-menu-1)
410 (define-key map [header-line down-mouse-3] 'mode-line-mode-menu-1)
411 (setq mode-line-minor-mode-keymap map))
412
413 (defvar minor-mode-alist nil "\
414 Alist saying how to show minor modes in the mode line.
415 Each element looks like (VARIABLE STRING);
416 STRING is included in the mode line iff VARIABLE's value is non-nil.
417
418 Actually, STRING need not be a string; any possible mode-line element
419 is okay. See `mode-line-format'.")
420 ;; Don't use purecopy here--some people want to change these strings.
421 (setq minor-mode-alist
422 (list
423 (list 'abbrev-mode
424 (propertize " Abbrev"
425 'help-echo (purecopy "mouse-3: minor mode menu")
426 'local-map mode-line-minor-mode-keymap))
427 '(overwrite-mode overwrite-mode)
428 (list 'auto-fill-function
429 (propertize " Fill"
430 'help-echo (purecopy "mouse-3: minor mode menu")
431 'local-map mode-line-minor-mode-keymap))
432 ;; not really a minor mode...
433 '(defining-kbd-macro " Def")))
434
435 ;; These variables are used by autoloadable packages.
436 ;; They are defined here so that they do not get overridden
437 ;; by the loading of those packages.
438
439 ;; Names in directory that end in one of these
440 ;; are ignored in completion,
441 ;; making it more likely you will get a unique match.
442 (setq completion-ignored-extensions
443 (append
444 (cond ((memq system-type '(ms-dos windows-nt))
445 '(".o" "~" ".bin" ".bak" ".obj" ".map" ".ico" ".pif" ".lnk"
446 ".a" ".ln" ".blg" ".bbl" ".dll" ".drv" ".vxd" ".386"))
447 ((eq system-type 'vax-vms)
448 '(".obj" ".exe" ".bin" ".lbin" ".sbin"
449 ".brn" ".rnt" ".lni" ".lis"
450 ".olb" ".tlb" ".mlb" ".hlb"))
451 (t
452 '(".o" "~" ".bin" ".lbin" ".so"
453 ".a" ".ln" ".blg" ".bbl")))
454 '(".elc" ".lof"
455 ".glo" ".idx" ".lot"
456 ;; TeX-related
457 ".dvi" ".fmt" ".tfm" ".pdf"
458 ;; Java compiled
459 ".class"
460 ;; CLISP
461 ".fas" ".lib" ".mem"
462 ;; CMUCL
463 ".x86f" ".sparcf"
464 ;; Other CL implementations (Allegro, LispWorks)
465 ".fasl" ".ufsl" ".fsl" ".dxl"
466 ;; Libtool
467 ".lo" ".la"
468 ;; Texinfo-related
469 ".toc" ".log" ".aux"
470 ".cp" ".fn" ".ky" ".pg" ".tp" ".vr"
471 ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs")))
472
473 ;; Suffixes used for executables.
474 (setq exec-suffixes
475 (cond
476 ((memq system-type '(ms-dos windows-nt))
477 '(".exe" ".com" ".bat" ".cmd" ".btm" ""))
478 (t
479 '(""))))
480
481 ;; Packages should add to this list appropriately when they are
482 ;; loaded, rather than listing everything here.
483 (setq debug-ignored-errors
484 '(beginning-of-line beginning-of-buffer end-of-line
485 end-of-buffer end-of-file buffer-read-only
486 file-supersession
487 "^Previous command was not a yank$"
488 "^Minibuffer window is not active$"
489 "^End of history; no next item$"
490 "^Beginning of history; no preceding item$"
491 "^No recursive edit is in progress$"
492 "^Changes to be undone are outside visible portion of buffer$"
493 "^No undo information in this buffer$"
494 "^No further undo information$"
495 "^Save not confirmed$"
496 "^Recover-file cancelled\\.$"
497 "^Cannot switch buffers in a dedicated window$"
498
499 ;; ediff
500 "^Errors in diff output. Diff output is in "
501 "^Hmm... I don't see an Ediff command around here...$"
502 "^Undocumented command! Type `G' in Ediff Control Panel to drop a note to the Ediff maintainer$"
503 ": This command runs in Ediff Control Buffer only!$"
504 ": Invalid op in ediff-check-version$"
505 "^ediff-shrink-window-C can be used only for merging jobs$"
506 "^Lost difference info on these directories$"
507 "^This command is inapplicable in the present context$"
508 "^This session group has no parent$"
509 "^Can't hide active session, $"
510 "^Ediff: something wrong--no multiple diffs buffer$"
511 "^Can't make context diff for Session $"
512 "^The patch buffer wasn't found$"
513 "^Aborted$"
514 "^This Ediff session is not part of a session group$"
515 "^No active Ediff sessions or corrupted session registry$"
516 "^No session info in this line$"
517 "^`.*' is not an ordinary file$"
518 "^Patch appears to have failed$"
519 "^Recomputation of differences cancelled$"
520 "^No fine differences in this mode$"
521 "^Lost connection to ancestor buffer...sorry$"
522 "^Not merging with ancestor$"
523 "^Don't know how to toggle read-only in buffer "
524 "Emacs is not running as a window application$"
525 "^This command makes sense only when merging with an ancestor$"
526 "^At end of the difference list$"
527 "^At beginning of the difference list$"
528 "^Nothing saved for diff .* in buffer "
529 "^Buffer is out of sync for file "
530 "^Buffer out of sync for file "
531 "^Output from `diff' not found$"
532 "^You forgot to specify a region in buffer "
533 "^All right. Make up your mind and come back...$"
534 "^Current buffer is not visiting any file$"
535 "^Failed to retrieve revision: $"
536 "^Can't determine display width.$"
537 "^File `.*' does not exist or is not readable$"
538 "^File `.*' is a directory$"
539 "^Buffer .* doesn't exist$"
540 "^Directories . and . are the same: "
541 "^Directory merge aborted$"
542 "^Merge of directory revisions aborted$"
543 "^Buffer .* doesn't exist$"
544 "^There is no file to merge$"
545 "^Version control package .*.el not found. Use vc.el instead$"))
546
547
548 (make-variable-buffer-local 'indent-tabs-mode)
549
550 ;; We have base64 and md5 functions built in now.
551 (provide 'base64)
552 (provide 'md5)
553 (provide 'overlay '(display syntax-table field))
554 (provide 'text-properties '(display syntax-table field point-entered))
555
556 (define-key esc-map "\t" 'complete-symbol)
557
558 (defun complete-symbol (arg) "\
559 Perform tags completion on the text around point.
560 Completes to the set of names listed in the current tags table.
561 The string to complete is chosen in the same way as the default
562 for \\[find-tag] (which see).
563
564 With a prefix argument, this command does completion within
565 the collection of symbols listed in the index of the manual for the
566 language you are using."
567 (interactive "P")
568 (if arg
569 (info-complete-symbol)
570 (if (fboundp 'complete-tag)
571 (complete-tag)
572 ;; Don't autoload etags if we have no tags table.
573 (error (substitute-command-keys
574 "No tags table loaded; use \\[visit-tags-table] to load one")))))
575
576 ;; Reduce total amount of space we must allocate during this function
577 ;; that we will not need to keep permanently.
578 (garbage-collect)
579 \f
580 ;; Make all multibyte characters self-insert.
581 (let ((l (generic-character-list))
582 (table (nth 1 global-map)))
583 (while l
584 (set-char-table-default table (car l) 'self-insert-command)
585 (setq l (cdr l))))
586
587 (setq help-event-list '(help f1))
588
589 (make-variable-buffer-local 'minor-mode-overriding-map-alist)
590
591 ;; From macros.c
592 (define-key ctl-x-map "(" 'start-kbd-macro)
593 (define-key ctl-x-map ")" 'end-kbd-macro)
594 (define-key ctl-x-map "e" 'call-last-kbd-macro)
595 ;; From frame.c
596 (global-set-key [switch-frame] 'handle-switch-frame)
597 (global-set-key [delete-frame] 'handle-delete-frame)
598 (global-set-key [iconify-frame] 'ignore-event)
599 (global-set-key [make-frame-visible] 'ignore-event)
600
601
602 ;These commands are defined in editfns.c
603 ;but they are not assigned to keys there.
604 (put 'narrow-to-region 'disabled t)
605 (define-key ctl-x-map "nn" 'narrow-to-region)
606 (define-key ctl-x-map "nw" 'widen)
607 ;; (define-key ctl-x-map "n" 'narrow-to-region)
608 ;; (define-key ctl-x-map "w" 'widen)
609
610 (define-key global-map "\C-j" 'newline-and-indent)
611 (define-key global-map "\C-m" 'newline)
612 (define-key global-map "\C-o" 'open-line)
613 (define-key esc-map "\C-o" 'split-line)
614 (define-key global-map "\C-q" 'quoted-insert)
615 (define-key esc-map "^" 'delete-indentation)
616 (define-key esc-map "\\" 'delete-horizontal-space)
617 (define-key esc-map "m" 'back-to-indentation)
618 (define-key ctl-x-map "\C-o" 'delete-blank-lines)
619 (define-key esc-map " " 'just-one-space)
620 (define-key esc-map "z" 'zap-to-char)
621 (define-key esc-map "=" 'count-lines-region)
622 (define-key ctl-x-map "=" 'what-cursor-position)
623 (define-key esc-map ":" 'eval-expression)
624 ;; Define ESC ESC : like ESC : for people who type ESC ESC out of habit.
625 (define-key esc-map "\M-:" 'eval-expression)
626 ;; Changed from C-x ESC so that function keys work following C-x.
627 (define-key ctl-x-map "\e\e" 'repeat-complex-command)
628 ;; New binding analogous to M-:.
629 (define-key ctl-x-map "\M-:" 'repeat-complex-command)
630 (define-key ctl-x-map "u" 'advertised-undo)
631 ;; Many people are used to typing C-/ on X terminals and getting C-_.
632 (define-key global-map [?\C-/] 'undo)
633 (define-key global-map "\C-_" 'undo)
634 (define-key esc-map "!" 'shell-command)
635 (define-key esc-map "|" 'shell-command-on-region)
636
637 (let ((map minibuffer-local-map))
638 (define-key map "\en" 'next-history-element)
639 (define-key map [next] 'next-history-element)
640 (define-key map [down] 'next-history-element)
641 (define-key map "\ep" 'previous-history-element)
642 (define-key map [prior] 'previous-history-element)
643 (define-key map [up] 'previous-history-element)
644 (define-key map "\es" 'next-matching-history-element)
645 (define-key map "\er" 'previous-matching-history-element))
646
647 (define-key global-map "\C-u" 'universal-argument)
648 (let ((i ?0))
649 (while (<= i ?9)
650 (define-key esc-map (char-to-string i) 'digit-argument)
651 (setq i (1+ i))))
652 (define-key esc-map "-" 'negative-argument)
653 ;; Define control-digits.
654 (let ((i ?0))
655 (while (<= i ?9)
656 (define-key global-map (read (format "[?\\C-%c]" i)) 'digit-argument)
657 (setq i (1+ i))))
658 (define-key global-map [?\C--] 'negative-argument)
659 ;; Define control-meta-digits.
660 (let ((i ?0))
661 (while (<= i ?9)
662 (define-key esc-map (read (format "[?\\C-%c]" i)) 'digit-argument)
663 (setq i (1+ i))))
664 (define-key global-map [?\C-\M--] 'negative-argument)
665
666 (define-key global-map "\C-k" 'kill-line)
667 (define-key global-map "\C-w" 'kill-region)
668 (define-key esc-map "w" 'kill-ring-save)
669 (define-key esc-map "\C-w" 'append-next-kill)
670 (define-key global-map "\C-y" 'yank)
671 (define-key esc-map "y" 'yank-pop)
672
673 ;; (define-key ctl-x-map "a" 'append-to-buffer)
674
675 (define-key global-map "\C-@" 'set-mark-command)
676 ;; Many people are used to typing C-SPC and getting C-@.
677 (define-key global-map [?\C- ] 'set-mark-command)
678 (define-key ctl-x-map "\C-x" 'exchange-point-and-mark)
679 (define-key ctl-x-map "\C-@" 'pop-global-mark)
680 (define-key ctl-x-map [?\C- ] 'pop-global-mark)
681
682 (define-key global-map "\C-n" 'next-line)
683 (define-key global-map "\C-p" 'previous-line)
684 (define-key ctl-x-map "\C-n" 'set-goal-column)
685
686 ;;(defun function-key-error ()
687 ;; (interactive)
688 ;; (error "That function key is not bound to anything"))
689
690 (define-key global-map [menu] 'execute-extended-command)
691 (define-key global-map [find] 'search-forward)
692
693 ;; Don't do this. We define <delete> in function-key-map instead.
694 ;(define-key global-map [delete] 'backward-delete-char)
695
696 ;; natural bindings for terminal keycaps --- defined in X keysym order
697 (define-key global-map [home] 'beginning-of-line)
698 (define-key global-map [C-home] 'beginning-of-buffer)
699 (define-key global-map [M-home] 'beginning-of-buffer-other-window)
700 (define-key global-map [left] 'backward-char)
701 (define-key global-map [up] 'previous-line)
702 (define-key global-map [right] 'forward-char)
703 (define-key global-map [down] 'next-line)
704 (define-key global-map [prior] 'scroll-down)
705 (define-key global-map [next] 'scroll-up)
706 (define-key global-map [C-up] 'backward-paragraph)
707 (define-key global-map [C-down] 'forward-paragraph)
708 (define-key global-map [C-prior] 'scroll-right)
709 (define-key global-map [C-next] 'scroll-left)
710 (define-key global-map [M-next] 'scroll-other-window)
711 (define-key global-map [M-prior] 'scroll-other-window-down)
712 (define-key global-map [end] 'end-of-line)
713 (define-key global-map [C-end] 'end-of-buffer)
714 (define-key global-map [M-end] 'end-of-buffer-other-window)
715 (define-key global-map [begin] 'beginning-of-buffer)
716 (define-key global-map [M-begin] 'beginning-of-buffer-other-window)
717 ;; (define-key global-map [select] 'function-key-error)
718 ;; (define-key global-map [print] 'function-key-error)
719 (define-key global-map [execute] 'execute-extended-command)
720 (define-key global-map [insert] 'overwrite-mode)
721 (define-key global-map [C-insert] 'kill-ring-save)
722 (define-key global-map [S-insert] 'yank)
723 (define-key global-map [undo] 'undo)
724 (define-key global-map [redo] 'repeat-complex-command)
725 ;; (define-key global-map [clearline] 'function-key-error)
726 (define-key global-map [insertline] 'open-line)
727 (define-key global-map [deleteline] 'kill-line)
728 ;; (define-key global-map [insertchar] 'function-key-error)
729 (define-key global-map [deletechar] 'delete-char)
730 ;; (define-key global-map [backtab] 'function-key-error)
731 ;; (define-key global-map [f1] 'function-key-error)
732 ;; (define-key global-map [f2] 'function-key-error)
733 ;; (define-key global-map [f3] 'function-key-error)
734 ;; (define-key global-map [f4] 'function-key-error)
735 ;; (define-key global-map [f5] 'function-key-error)
736 ;; (define-key global-map [f6] 'function-key-error)
737 ;; (define-key global-map [f7] 'function-key-error)
738 ;; (define-key global-map [f8] 'function-key-error)
739 ;; (define-key global-map [f9] 'function-key-error)
740 ;; (define-key global-map [f10] 'function-key-error)
741 ;; (define-key global-map [f11] 'function-key-error)
742 ;; (define-key global-map [f12] 'function-key-error)
743 ;; (define-key global-map [f13] 'function-key-error)
744 ;; (define-key global-map [f14] 'function-key-error)
745 ;; (define-key global-map [f15] 'function-key-error)
746 ;; (define-key global-map [f16] 'function-key-error)
747 ;; (define-key global-map [f17] 'function-key-error)
748 ;; (define-key global-map [f18] 'function-key-error)
749 ;; (define-key global-map [f19] 'function-key-error)
750 ;; (define-key global-map [f20] 'function-key-error)
751 ;; (define-key global-map [f21] 'function-key-error)
752 ;; (define-key global-map [f22] 'function-key-error)
753 ;; (define-key global-map [f23] 'function-key-error)
754 ;; (define-key global-map [f24] 'function-key-error)
755 ;; (define-key global-map [f25] 'function-key-error)
756 ;; (define-key global-map [f26] 'function-key-error)
757 ;; (define-key global-map [f27] 'function-key-error)
758 ;; (define-key global-map [f28] 'function-key-error)
759 ;; (define-key global-map [f29] 'function-key-error)
760 ;; (define-key global-map [f30] 'function-key-error)
761 ;; (define-key global-map [f31] 'function-key-error)
762 ;; (define-key global-map [f32] 'function-key-error)
763 ;; (define-key global-map [f33] 'function-key-error)
764 ;; (define-key global-map [f34] 'function-key-error)
765 ;; (define-key global-map [f35] 'function-key-error)
766 ;; (define-key global-map [kp-backtab] 'function-key-error)
767 ;; (define-key global-map [kp-space] 'function-key-error)
768 ;; (define-key global-map [kp-tab] 'function-key-error)
769 ;; (define-key global-map [kp-enter] 'function-key-error)
770 ;; (define-key global-map [kp-f1] 'function-key-error)
771 ;; (define-key global-map [kp-f2] 'function-key-error)
772 ;; (define-key global-map [kp-f3] 'function-key-error)
773 ;; (define-key global-map [kp-f4] 'function-key-error)
774 ;; (define-key global-map [kp-multiply] 'function-key-error)
775 ;; (define-key global-map [kp-add] 'function-key-error)
776 ;; (define-key global-map [kp-separator] 'function-key-error)
777 ;; (define-key global-map [kp-subtract] 'function-key-error)
778 ;; (define-key global-map [kp-decimal] 'function-key-error)
779 ;; (define-key global-map [kp-divide] 'function-key-error)
780 ;; (define-key global-map [kp-0] 'function-key-error)
781 ;; (define-key global-map [kp-1] 'function-key-error)
782 ;; (define-key global-map [kp-2] 'function-key-error)
783 ;; (define-key global-map [kp-3] 'function-key-error)
784 ;; (define-key global-map [kp-4] 'function-key-error)
785 ;; (define-key global-map [kp-5] 'recenter)
786 ;; (define-key global-map [kp-6] 'function-key-error)
787 ;; (define-key global-map [kp-7] 'function-key-error)
788 ;; (define-key global-map [kp-8] 'function-key-error)
789 ;; (define-key global-map [kp-9] 'function-key-error)
790 ;; (define-key global-map [kp-equal] 'function-key-error)
791
792 ;; X11R6 distinguishes these keys from the non-kp keys.
793 ;; Make them behave like the non-kp keys unless otherwise bound.
794 (define-key function-key-map [kp-home] [home])
795 (define-key function-key-map [kp-left] [left])
796 (define-key function-key-map [kp-up] [up])
797 (define-key function-key-map [kp-right] [right])
798 (define-key function-key-map [kp-down] [down])
799 (define-key function-key-map [kp-prior] [prior])
800 (define-key function-key-map [kp-next] [next])
801 (define-key function-key-map [M-kp-next] [M-next])
802 (define-key function-key-map [kp-end] [end])
803 (define-key function-key-map [kp-begin] [begin])
804 (define-key function-key-map [kp-insert] [insert])
805 (define-key function-key-map [backspace] [?\C-?])
806 (define-key function-key-map [delete] [?\C-?])
807 (define-key function-key-map [kp-delete] [?\C-?])
808 (define-key function-key-map [S-kp-end] [S-end])
809 (define-key function-key-map [S-kp-down] [S-down])
810 (define-key function-key-map [S-kp-next] [S-next])
811 (define-key function-key-map [S-kp-left] [S-left])
812 (define-key function-key-map [S-kp-right] [S-right])
813 (define-key function-key-map [S-kp-home] [S-home])
814 (define-key function-key-map [S-kp-up] [S-up])
815 (define-key function-key-map [S-kp-prior] [S-prior])
816 (define-key function-key-map [C-S-kp-end] [C-S-end])
817 (define-key function-key-map [C-S-kp-down] [C-S-down])
818 (define-key function-key-map [C-S-kp-next] [C-S-next])
819 (define-key function-key-map [C-S-kp-left] [C-S-left])
820 (define-key function-key-map [C-S-kp-right] [C-S-right])
821 (define-key function-key-map [C-S-kp-home] [C-S-home])
822 (define-key function-key-map [C-S-kp-up] [C-S-up])
823 (define-key function-key-map [C-S-kp-prior] [C-S-prior])
824 ;; Don't bind shifted keypad numeric keys, they reportedly
825 ;; interfere with the feature of some keyboards to produce
826 ;; numbers when NumLock is off.
827 ;(define-key function-key-map [S-kp-1] [S-end])
828 ;(define-key function-key-map [S-kp-2] [S-down])
829 ;(define-key function-key-map [S-kp-3] [S-next])
830 ;(define-key function-key-map [S-kp-4] [S-left])
831 ;(define-key function-key-map [S-kp-6] [S-right])
832 ;(define-key function-key-map [S-kp-7] [S-home])
833 ;(define-key function-key-map [S-kp-8] [S-up])
834 ;(define-key function-key-map [S-kp-9] [S-prior])
835 (define-key function-key-map [C-S-kp-1] [C-S-end])
836 (define-key function-key-map [C-S-kp-2] [C-S-down])
837 (define-key function-key-map [C-S-kp-3] [C-S-next])
838 (define-key function-key-map [C-S-kp-4] [C-S-left])
839 (define-key function-key-map [C-S-kp-6] [C-S-right])
840 (define-key function-key-map [C-S-kp-7] [C-S-home])
841 (define-key function-key-map [C-S-kp-8] [C-S-up])
842 (define-key function-key-map [C-S-kp-9] [C-S-prior])
843
844 (define-key global-map [mouse-movement] 'ignore)
845
846 (define-key global-map "\C-t" 'transpose-chars)
847 (define-key esc-map "t" 'transpose-words)
848 (define-key esc-map "\C-t" 'transpose-sexps)
849 (define-key ctl-x-map "\C-t" 'transpose-lines)
850
851 (define-key esc-map ";" 'comment-dwim)
852 (define-key esc-map "j" 'indent-new-comment-line)
853 (define-key esc-map "\C-j" 'indent-new-comment-line)
854 (define-key ctl-x-map ";" 'comment-set-column)
855 (define-key ctl-x-map "f" 'set-fill-column)
856 (define-key ctl-x-map "$" 'set-selective-display)
857
858 (define-key esc-map "@" 'mark-word)
859 (define-key esc-map "f" 'forward-word)
860 (define-key esc-map "b" 'backward-word)
861 (define-key esc-map "d" 'kill-word)
862 (define-key esc-map "\177" 'backward-kill-word)
863
864 (define-key esc-map "<" 'beginning-of-buffer)
865 (define-key esc-map ">" 'end-of-buffer)
866 (define-key ctl-x-map "h" 'mark-whole-buffer)
867 (define-key esc-map "\\" 'delete-horizontal-space)
868
869 (defalias 'mode-specific-command-prefix (make-sparse-keymap))
870 (defvar mode-specific-map (symbol-function 'mode-specific-command-prefix)
871 "Keymap for characters following C-c.")
872 (define-key global-map "\C-c" 'mode-specific-command-prefix)
873
874 (global-set-key [M-right] 'forward-word)
875 (global-set-key [M-left] 'backward-word)
876 ;; ilya@math.ohio-state.edu says these bindings are standard on PC editors.
877 (global-set-key [C-right] 'forward-word)
878 (global-set-key [C-left] 'backward-word)
879 ;; This is not quite compatible, but at least is analogous
880 (global-set-key [C-delete] 'backward-kill-word)
881 (global-set-key [C-backspace] 'kill-word)
882 ;; This is "move to the clipboard", or as close as we come.
883 (global-set-key [S-delete] 'kill-region)
884
885 (define-key esc-map "\C-f" 'forward-sexp)
886 (define-key esc-map "\C-b" 'backward-sexp)
887 (define-key esc-map "\C-u" 'backward-up-list)
888 (define-key esc-map "\C-@" 'mark-sexp)
889 (define-key esc-map [?\C-\ ] 'mark-sexp)
890 (define-key esc-map "\C-d" 'down-list)
891 (define-key esc-map "\C-k" 'kill-sexp)
892 (define-key global-map [C-M-delete] 'backward-kill-sexp)
893 (define-key global-map [C-M-backspace] 'backward-kill-sexp)
894 (define-key esc-map [C-delete] 'backward-kill-sexp)
895 (define-key esc-map [C-backspace] 'backward-kill-sexp)
896 (define-key esc-map "\C-n" 'forward-list)
897 (define-key esc-map "\C-p" 'backward-list)
898 (define-key esc-map "\C-a" 'beginning-of-defun)
899 (define-key esc-map "\C-e" 'end-of-defun)
900 (define-key esc-map "\C-h" 'mark-defun)
901 (define-key ctl-x-map "nd" 'narrow-to-defun)
902 (define-key esc-map "(" 'insert-parentheses)
903 (define-key esc-map ")" 'move-past-close-and-reindent)
904
905 (define-key ctl-x-map "\C-e" 'eval-last-sexp)
906
907 (define-key ctl-x-map "m" 'compose-mail)
908 (define-key ctl-x-4-map "m" 'compose-mail-other-window)
909 (define-key ctl-x-5-map "m" 'compose-mail-other-frame)
910 \f
911 (define-key ctl-x-map "r\C-@" 'point-to-register)
912 (define-key ctl-x-map [?r ?\C-\ ] 'point-to-register)
913 (define-key ctl-x-map "r " 'point-to-register)
914 (define-key ctl-x-map "rj" 'jump-to-register)
915 (define-key ctl-x-map "rs" 'copy-to-register)
916 (define-key ctl-x-map "rx" 'copy-to-register)
917 (define-key ctl-x-map "ri" 'insert-register)
918 (define-key ctl-x-map "rg" 'insert-register)
919 (define-key ctl-x-map "rr" 'copy-rectangle-to-register)
920 (define-key ctl-x-map "rn" 'number-to-register)
921 (define-key ctl-x-map "r+" 'increment-register)
922 (define-key ctl-x-map "rc" 'clear-rectangle)
923 (define-key ctl-x-map "rk" 'kill-rectangle)
924 (define-key ctl-x-map "rd" 'delete-rectangle)
925 (define-key ctl-x-map "ry" 'yank-rectangle)
926 (define-key ctl-x-map "ro" 'open-rectangle)
927 (define-key ctl-x-map "rt" 'string-rectangle)
928 (define-key ctl-x-map "rw" 'window-configuration-to-register)
929 (define-key ctl-x-map "rf" 'frame-configuration-to-register)
930
931 ;; These key bindings are deprecated; use the above C-x r map instead.
932 ;; We use these aliases so \[...] will show the C-x r bindings instead.
933 (defalias 'point-to-register-compatibility-binding 'point-to-register)
934 (defalias 'jump-to-register-compatibility-binding 'jump-to-register)
935 (defalias 'copy-to-register-compatibility-binding 'copy-to-register)
936 (defalias 'insert-register-compatibility-binding 'insert-register)
937 (define-key ctl-x-map "/" 'point-to-register-compatibility-binding)
938 (define-key ctl-x-map "j" 'jump-to-register-compatibility-binding)
939 (define-key ctl-x-map "x" 'copy-to-register-compatibility-binding)
940 (define-key ctl-x-map "g" 'insert-register-compatibility-binding)
941 ;; (define-key ctl-x-map "r" 'copy-rectangle-to-register)
942
943 (define-key esc-map "q" 'fill-paragraph)
944 ;; (define-key esc-map "g" 'fill-region)
945 (define-key ctl-x-map "." 'set-fill-prefix)
946 \f
947 (define-key esc-map "{" 'backward-paragraph)
948 (define-key esc-map "}" 'forward-paragraph)
949 (define-key esc-map "h" 'mark-paragraph)
950 (define-key esc-map "a" 'backward-sentence)
951 (define-key esc-map "e" 'forward-sentence)
952 (define-key esc-map "k" 'kill-sentence)
953 (define-key ctl-x-map "\177" 'backward-kill-sentence)
954
955 (define-key ctl-x-map "[" 'backward-page)
956 (define-key ctl-x-map "]" 'forward-page)
957 (define-key ctl-x-map "\C-p" 'mark-page)
958 (define-key ctl-x-map "l" 'count-lines-page)
959 (define-key ctl-x-map "np" 'narrow-to-page)
960 ;; (define-key ctl-x-map "p" 'narrow-to-page)
961 \f
962 (define-key ctl-x-map "al" 'add-mode-abbrev)
963 (define-key ctl-x-map "a\C-a" 'add-mode-abbrev)
964 (define-key ctl-x-map "ag" 'add-global-abbrev)
965 (define-key ctl-x-map "a+" 'add-mode-abbrev)
966 (define-key ctl-x-map "aig" 'inverse-add-global-abbrev)
967 (define-key ctl-x-map "ail" 'inverse-add-mode-abbrev)
968 ;; (define-key ctl-x-map "a\C-h" 'inverse-add-global-abbrev)
969 (define-key ctl-x-map "a-" 'inverse-add-global-abbrev)
970 (define-key ctl-x-map "ae" 'expand-abbrev)
971 (define-key ctl-x-map "a'" 'expand-abbrev)
972 ;; (define-key ctl-x-map "\C-a" 'add-mode-abbrev)
973 ;; (define-key ctl-x-map "\+" 'add-global-abbrev)
974 ;; (define-key ctl-x-map "\C-h" 'inverse-add-mode-abbrev)
975 ;; (define-key ctl-x-map "\-" 'inverse-add-global-abbrev)
976 (define-key esc-map "'" 'abbrev-prefix-mark)
977 (define-key ctl-x-map "'" 'expand-abbrev)
978
979 (define-key ctl-x-map "z" 'repeat)
980
981 ;; Don't look for autoload cookies in this file.
982 ;; Local Variables:
983 ;; no-update-autoloads: t
984 ;; End:
985
986 ;;; bindings.el ends here