(python-open-block-statement-p): Fix
[emacs.git] / lisp / bindings.el
blobb3ea8e562ac259e3796077b9802d523f1e8a4e62
1 ;;; bindings.el --- define standard key bindings and some variables
3 ;; Copyright (C) 1985,86,87,92,93,94,95,96,99,2000, 2001
4 ;; Free Software Foundation, Inc.
6 ;; Maintainer: FSF
7 ;; Keywords: internal
9 ;; This file is part of GNU Emacs.
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.
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.
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.
26 ;;; Commentary:
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 ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
48 ;;; Code:
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))
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)))
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)))
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)))
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)))
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)))
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)))
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.")
138 (defun mode-line-change-eol (event)
139 "Cycle through the various possible kinds of end-of-line styles."
140 (interactive "e")
141 (save-selected-window
142 (select-window (posn-window (event-start event)))
143 (let ((eol (coding-system-eol-type buffer-file-coding-system)))
144 (set-buffer-file-coding-system
145 (cond ((eq eol 0) 'dos) ((eq eol 1) 'mac) (t 'unix))))))
147 (defvar mode-line-eol-desc-cache nil)
149 (defun mode-line-eol-desc ()
150 (let* ((eol (coding-system-eol-type buffer-file-coding-system))
151 (mnemonic (coding-system-eol-type-mnemonic buffer-file-coding-system))
152 (desc (assq eol mode-line-eol-desc-cache)))
153 (if (and desc (eq (cadr desc) mnemonic))
154 (cddr desc)
155 (if desc (setq mode-line-eol-desc-cache nil)) ;Flush the cache if stale.
156 (setq desc
157 (propertize
158 mnemonic
159 'help-echo (format "%s end-of-line; mouse-3 to cycle"
160 (if (eq eol 0) "Unix-style LF"
161 (if (eq eol 1) "Dos-style CRLF"
162 (if (eq eol 2) "Mac-style CR"
163 "Undecided"))))
164 'keymap
165 (eval-when-compile
166 (let ((map (make-sparse-keymap)))
167 (define-key map [mode-line mouse-3] 'mode-line-change-eol)
168 map))))
169 (push (cons eol (cons mnemonic desc)) mode-line-eol-desc-cache)
170 desc)))
172 (defvar mode-line-mule-info
173 `(""
174 (current-input-method
175 (:propertize ("" current-input-method-title)
176 help-echo (concat
177 "Input method: "
178 current-input-method
179 ". mouse-2: disable, mouse-3: describe")
180 local-map ,mode-line-input-method-map))
181 ,(propertize
182 "%z"
183 'help-echo
184 #'(lambda (window object point)
185 (with-current-buffer (window-buffer window)
186 ;; Don't show this tip if the coding system is nil,
187 ;; it reads like a bug, and is not useful anyway.
188 (when buffer-file-coding-system
189 (if enable-multibyte-characters
190 (concat (symbol-name buffer-file-coding-system)
191 " buffer; mouse-3: describe coding system")
192 (concat "Unibyte " (symbol-name buffer-file-coding-system)
193 " buffer")))))
194 'local-map mode-line-coding-system-map)
195 (:eval (mode-line-eol-desc)))
196 "Mode-line control for displaying information of multilingual environment.
197 Normally it displays current input method (if any activated) and
198 mnemonics of the following coding systems:
199 coding system for saving or writing the current buffer
200 coding system for keyboard input (if Emacs is running on terminal)
201 coding system for terminal output (if Emacs is running on terminal)"
202 ;; Currently not:
203 ;; coding system for decoding output of buffer process (if any)
204 ;; coding system for encoding text to send to buffer process (if any)."
207 (make-variable-buffer-local 'mode-line-mule-info)
209 (defvar mode-line-buffer-identification (purecopy '("%12b")) "\
210 Mode-line control for identifying the buffer being displayed.
211 Its default value is (\"%12b\").
212 Major modes that edit things other than ordinary files may change this
213 \(e.g. Info, Dired,...)")
215 (make-variable-buffer-local 'mode-line-buffer-identification)
217 (defvar mode-line-frame-identification '("-%F ")
218 "Mode-line control to describe the current frame.")
220 (defvar mode-line-process nil "\
221 Mode-line control for displaying info on process status.
222 Normally nil in most modes, since there is no process to display.")
224 (make-variable-buffer-local 'mode-line-process)
226 (defvar mode-line-modified
227 (list (propertize
228 "%1*"
229 'help-echo (purecopy (lambda (window object point)
230 (format "%sead-only: mouse-3 toggles"
231 (save-selected-window
232 (select-window window)
233 (if buffer-read-only
235 "Not r")))))
236 'local-map (purecopy (make-mode-line-mouse-map
237 'mouse-3
238 #'mode-line-toggle-read-only)))
239 (propertize
240 "%1+"
241 'help-echo (purecopy (lambda (window object point)
242 (format "%sodified: mouse-3 toggles"
243 (save-selected-window
244 (select-window window)
245 (if (buffer-modified-p)
247 "Not m")))))
248 'local-map (purecopy (make-mode-line-mouse-map
249 'mouse-3 #'mode-line-toggle-modified))))
250 "Mode-line control for displaying whether current buffer is modified.")
252 (make-variable-buffer-local 'mode-line-modified)
254 ;; Actual initialization is below.
255 (defvar mode-line-position nil
256 "Mode-line control for displaying the position in the buffer.
257 Normally displays the buffer percentage and, optionally, the
258 buffer size, the line number and the column number.")
260 (defvar mode-line-modes nil
261 "Mode-line control for displaying major and minor modes.")
263 (defvar mode-line-major-mode-keymap
264 (let ((map (make-sparse-keymap)))
265 (define-key map [mode-line mouse-2] 'describe-mode)
266 (define-key map [mode-line down-mouse-3] 'mode-line-mode-menu-1)
267 map) "\
268 Keymap to display on major mode.")
270 (defvar mode-line-minor-mode-keymap
271 (let ((map (make-sparse-keymap)))
272 (define-key map [mode-line mouse-2] 'mode-line-minor-mode-help)
273 (define-key map [mode-line down-mouse-3] 'mode-line-mode-menu-1)
274 (define-key map [header-line down-mouse-3] 'mode-line-mode-menu-1)
275 map) "\
276 Keymap to display on minor modes.")
278 (let* ((help-echo
279 ;; The multi-line message doesn't work terribly well on the
280 ;; bottom mode line... Better ideas?
281 ;; "\
282 ;; mouse-1: select window, mouse-2: delete others, mouse-3: delete,
283 ;; drag-mouse-1: resize, C-mouse-2: split horizontally"
284 "mouse-1: select (drag to resize), mouse-2: delete others, mouse-3: delete this")
285 (dashes (propertize "--" 'help-echo help-echo)))
286 (setq-default mode-line-format
287 (list
288 (propertize "-" 'help-echo help-echo)
289 'mode-line-mule-info
290 'mode-line-modified
291 'mode-line-frame-identification
292 'mode-line-buffer-identification
293 (propertize " " 'help-echo help-echo)
294 'mode-line-position
295 '(vc-mode vc-mode)
296 (propertize " " 'help-echo help-echo)
297 'mode-line-modes
298 `(which-func-mode ("" which-func-format ,dashes))
299 `(global-mode-string (,dashes global-mode-string))
300 (propertize "-%-" 'help-echo help-echo)))
302 (setq-default mode-line-modes
303 (list
304 (propertize "%[(" 'help-echo help-echo)
305 `(:propertize ("" mode-name)
306 help-echo "mouse-2: help for current major mode"
307 local-map ,mode-line-major-mode-keymap)
308 '("" mode-line-process)
309 `(:propertize ("" minor-mode-alist)
310 help-echo "mouse-2: help for minor modes, mouse-3: minor mode menu"
311 local-map ,mode-line-minor-mode-keymap)
312 (propertize "%n" 'help-echo "mouse-2: widen"
313 'local-map (make-mode-line-mouse-map
314 'mouse-2 #'mode-line-widen))
315 (propertize ")%]--" 'help-echo help-echo)))
317 (setq-default mode-line-position
318 `((-3 ,(propertize "%p" 'help-echo help-echo))
319 (size-indication-mode
320 (8 ,(propertize " of %I" 'help-echo help-echo)))
321 (line-number-mode
322 ((column-number-mode
323 (10 ,(propertize " (%l,%c)" 'help-echo help-echo))
324 (6 ,(propertize " L%l" 'help-echo help-echo))))
325 ((column-number-mode
326 (5 ,(propertize " C%c" 'help-echo help-echo))))))))
328 (defvar mode-line-buffer-identification-keymap nil "\
329 Keymap for what is displayed by `mode-line-buffer-identification'.")
331 (defun last-buffer () "\
332 Return the last non-hidden buffer in the buffer list."
333 ;; This logic is more or less copied from bury-buffer,
334 ;; except that we reverse the buffer list.
335 (let ((list (nreverse (buffer-list (selected-frame))))
336 (pred (frame-parameter nil 'buffer-predicate))
337 found notsogood)
338 (while (and list (not found))
339 (unless (or (eq (aref (buffer-name (car list)) 0) ? )
340 ;; If the selected frame has a buffer_predicate,
341 ;; disregard buffers that don't fit the predicate.
342 (and pred (not (funcall pred (car list)))))
343 (if (get-buffer-window (car list) 'visible)
344 (or notsogood (eq (car list) (current-buffer)))
345 (setq found (car list))))
346 (pop list))
347 (or found notsogood
348 (get-buffer "*scratch*")
349 (progn
350 (set-buffer-major-mode
351 (get-buffer-create "*scratch*"))
352 (get-buffer "*scratch*")))))
354 (defun unbury-buffer () "\
355 Switch to the last buffer in the buffer list."
356 (interactive)
357 (switch-to-buffer (last-buffer)))
359 (defun mode-line-unbury-buffer (event) "\
360 Call `unbury-buffer' in this window."
361 (interactive "e")
362 (save-selected-window
363 (select-window (posn-window (event-start event)))
364 (unbury-buffer)))
366 (defun mode-line-bury-buffer (event) "\
367 Like `bury-buffer', but temporarily select EVENT's window."
368 (interactive "e")
369 (save-selected-window
370 (select-window (posn-window (event-start event)))
371 (bury-buffer)))
373 (defun mode-line-other-buffer () "\
374 Switch to the most recently selected buffer other than the current one."
375 (interactive)
376 (switch-to-buffer (other-buffer)))
378 (defvar mode-line-mode-menu (make-sparse-keymap "Minor Modes") "\
379 Menu of mode operations in the mode line.")
381 (defun mode-line-mode-menu-1 (event)
382 (interactive "e")
383 (save-selected-window
384 (select-window (posn-window (event-start event)))
385 (let* ((selection (mode-line-mode-menu event))
386 (binding (and selection (lookup-key mode-line-mode-menu
387 (vector (car selection))))))
388 (if binding
389 (call-interactively binding)))))
391 (defmacro bound-and-true-p (var)
392 "Return the value of symbol VAR if it is bound, else nil."
393 `(and (boundp (quote ,var)) ,var))
395 (define-key mode-line-mode-menu [overwrite-mode]
396 `(menu-item ,(purecopy "Overwrite (Ovwrt)") overwrite-mode
397 :button (:toggle . overwrite-mode)))
398 (define-key mode-line-mode-menu [outline-minor-mode]
399 `(menu-item ,(purecopy "Outline (Outl)") outline-minor-mode
400 :button (:toggle . (bound-and-true-p outline-minor-mode))))
401 (define-key mode-line-mode-menu [line-number-mode]
402 `(menu-item ,(purecopy "Line number") line-number-mode
403 :button (:toggle . line-number-mode)))
404 (define-key mode-line-mode-menu [highlight-changes-mode]
405 `(menu-item ,(purecopy "Highlight changes (Chg)") highlight-changes-mode
406 :button (:toggle . highlight-changes-mode)))
407 (define-key mode-line-mode-menu [glasses-mode]
408 `(menu-item ,(purecopy "Glasses (o^o)") glasses-mode
409 :button (:toggle . (bound-and-true-p glasses-mode))))
410 (define-key mode-line-mode-menu [hide-ifdef-mode]
411 `(menu-item ,(purecopy "Hide ifdef (Ifdef)") hide-ifdef-mode
412 :button (:toggle . (bound-and-true-p hide-ifdef-mode))))
413 (define-key mode-line-mode-menu [font-lock-mode]
414 `(menu-item ,(purecopy "Font Lock") font-lock-mode
415 :button (:toggle . font-lock-mode)))
416 (define-key mode-line-mode-menu [flyspell-mode]
417 `(menu-item ,(purecopy "Flyspell (Fly)") flyspell-mode
418 :button (:toggle . (bound-and-true-p flyspell-mode))))
419 (define-key mode-line-mode-menu [column-number-mode]
420 `(menu-item ,(purecopy "Column number") column-number-mode
421 :button (:toggle . column-number-mode)))
422 (define-key mode-line-mode-menu [auto-fill-mode]
423 `(menu-item ,(purecopy "Auto Fill (Fill)") auto-fill-mode
424 :button (:toggle . auto-fill-function)))
425 (define-key mode-line-mode-menu [auto-revert-mode]
426 `(menu-item ,(purecopy "Auto revert (ARev)") auto-revert-mode
427 :button (:toggle . auto-revert-mode)))
428 (define-key mode-line-mode-menu [abbrev-mode]
429 `(menu-item ,(purecopy "Abbrev (Abbrev)") abbrev-mode
430 :button (:toggle . abbrev-mode)))
432 (defun mode-line-mode-menu (event)
433 (interactive "@e")
434 (x-popup-menu event mode-line-mode-menu))
436 (defun mode-line-minor-mode-help (event)
437 "Describe minor mode for EVENT occured on minor modes area of the mode line."
438 (interactive "@e")
439 (let ((indicator (car (nth 4 (car (cdr event))))))
440 (describe-minor-mode-from-indicator indicator)))
442 ;; Add menu of buffer operations to the buffer identification part
443 ;; of the mode line.or header line.
445 (let ((map (make-sparse-keymap)))
446 ;; Bind down- events so that the global keymap won't ``shine
447 ;; through''.
448 (define-key map [mode-line down-mouse-1] 'ignore)
449 (define-key map [mode-line mouse-1] 'mode-line-unbury-buffer)
450 (define-key map [header-line down-mouse-1] 'ignore)
451 (define-key map [header-line mouse-1] 'mode-line-unbury-buffer)
452 (define-key map [header-line down-mouse-3] 'ignore)
453 (define-key map [mode-line mouse-3] 'mode-line-bury-buffer)
454 (define-key map [header-line down-mouse-3] 'ignore)
455 (define-key map [header-line mouse-3] 'mode-line-bury-buffer)
456 (setq mode-line-buffer-identification-keymap map))
458 (defun propertized-buffer-identification (fmt)
459 "Return a list suitable for `mode-line-buffer-identification'.
460 FMT is a format specifier such as \"%12b\". This function adds
461 text properties for face, help-echo, and local-map to it."
462 (list (propertize fmt
463 'face 'Buffer-menu-buffer-face
464 'help-echo
465 (purecopy "mouse-1: previous buffer, mouse-3: next buffer")
466 'local-map mode-line-buffer-identification-keymap)))
468 (setq-default mode-line-buffer-identification
469 (propertized-buffer-identification "%12b"))
471 (defvar minor-mode-alist nil "\
472 Alist saying how to show minor modes in the mode line.
473 Each element looks like (VARIABLE STRING);
474 STRING is included in the mode line iff VARIABLE's value is non-nil.
476 Actually, STRING need not be a string; any possible mode-line element
477 is okay. See `mode-line-format'.")
478 ;; Don't use purecopy here--some people want to change these strings.
479 (setq minor-mode-alist
480 (list
481 (list 'abbrev-mode " Abbrev")
482 '(overwrite-mode overwrite-mode)
483 (list 'auto-fill-function " Fill")
484 ;; not really a minor mode...
485 '(defining-kbd-macro " Def")))
487 ;; These variables are used by autoloadable packages.
488 ;; They are defined here so that they do not get overridden
489 ;; by the loading of those packages.
491 ;; Names in directory that end in one of these
492 ;; are ignored in completion,
493 ;; making it more likely you will get a unique match.
494 (setq completion-ignored-extensions
495 (append
496 (cond ((memq system-type '(ms-dos windows-nt))
497 '(".o" "~" ".bin" ".bak" ".obj" ".map" ".ico" ".pif" ".lnk"
498 ".a" ".ln" ".blg" ".bbl" ".dll" ".drv" ".vxd" ".386"))
499 ((eq system-type 'vax-vms)
500 '(".obj" ".exe" ".bin" ".lbin" ".sbin"
501 ".brn" ".rnt" ".lni" ".lis"
502 ".olb" ".tlb" ".mlb" ".hlb"))
504 '(".o" "~" ".bin" ".lbin" ".so"
505 ".a" ".ln" ".blg" ".bbl")))
506 '(".elc" ".lof"
507 ".glo" ".idx" ".lot"
508 ;; TeX-related
509 ".dvi" ".fmt" ".tfm" ".pdf"
510 ;; Java compiled
511 ".class"
512 ;; CLISP
513 ".fas" ".lib" ".mem"
514 ;; CMUCL
515 ".x86f" ".sparcf"
516 ;; Other CL implementations (Allegro, LispWorks, OpenMCL)
517 ".fasl" ".ufsl" ".fsl" ".dxl" ".pfsl"
518 ;; Libtool
519 ".lo" ".la"
520 ;; Gettext
521 ".gmo" ".mo"
522 ;; Texinfo-related
523 ;; This used to contain .log, but that's commonly used for log
524 ;; files you do want to see, not just TeX stuff. -- fx
525 ".toc" ".aux"
526 ".cp" ".fn" ".ky" ".pg" ".tp" ".vr"
527 ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs"
528 ;; Python byte-compiled
529 ".pyc" ".pyo")))
531 ;; Suffixes used for executables.
532 (setq exec-suffixes
533 (cond
534 ((memq system-type '(ms-dos windows-nt))
535 '(".exe" ".com" ".bat" ".cmd" ".btm" ""))
537 '(""))))
539 ;; Packages should add to this list appropriately when they are
540 ;; loaded, rather than listing everything here.
541 (setq debug-ignored-errors
542 '(beginning-of-line beginning-of-buffer end-of-line
543 end-of-buffer end-of-file buffer-read-only
544 file-supersession
545 "^Previous command was not a yank$"
546 "^Minibuffer window is not active$"
547 "^No previous history search regexp$"
548 "^No later matching history item$"
549 "^No earlier matching history item$"
550 "^End of history; no default available$"
551 "^End of history; no next item$"
552 "^Beginning of history; no preceding item$"
553 "^No recursive edit is in progress$"
554 "^Changes to be undone are outside visible portion of buffer$"
555 "^No undo information in this buffer$"
556 "^No further undo information"
557 "^Save not confirmed$"
558 "^Recover-file cancelled\\.$"
559 "^Cannot switch buffers in a dedicated window$"
563 (make-variable-buffer-local 'indent-tabs-mode)
565 ;; We have base64 and md5 functions built in now.
566 (provide 'base64)
567 (provide 'md5)
568 (provide 'overlay '(display syntax-table field))
569 (provide 'text-properties '(display syntax-table field point-entered))
571 (define-key esc-map "\t" 'complete-symbol)
573 (defun complete-symbol (arg) "\
574 Perform tags completion on the text around point.
575 Completes to the set of names listed in the current tags table.
576 The string to complete is chosen in the same way as the default
577 for \\[find-tag] (which see).
579 With a prefix argument, this command does completion within
580 the collection of symbols listed in the index of the manual for the
581 language you are using."
582 (interactive "P")
583 (if arg
584 (info-complete-symbol)
585 (if (fboundp 'complete-tag)
586 (complete-tag)
587 ;; Don't autoload etags if we have no tags table.
588 (error (substitute-command-keys
589 "No tags table loaded; use \\[visit-tags-table] to load one")))))
591 ;; Reduce total amount of space we must allocate during this function
592 ;; that we will not need to keep permanently.
593 (garbage-collect)
595 ;; Make all multibyte characters self-insert.
596 (let ((l (generic-character-list))
597 (table (nth 1 global-map)))
598 (while l
599 (set-char-table-default table (car l) 'self-insert-command)
600 (setq l (cdr l))))
602 (setq help-event-list '(help f1))
604 (make-variable-buffer-local 'minor-mode-overriding-map-alist)
606 ;; From frame.c
607 (global-set-key [switch-frame] 'handle-switch-frame)
608 (global-set-key [select-window] 'handle-select-window)
610 ;; FIXME: Do those 3 events really ever reach the global-map ?
611 ;; It seems that they can't because they're handled via
612 ;; special-event-map which is used at very low-level. -stef
613 (global-set-key [delete-frame] 'handle-delete-frame)
614 (global-set-key [iconify-frame] 'ignore-event)
615 (global-set-key [make-frame-visible] 'ignore-event)
618 ;These commands are defined in editfns.c
619 ;but they are not assigned to keys there.
620 (put 'narrow-to-region 'disabled t)
621 (define-key ctl-x-map "nn" 'narrow-to-region)
622 (define-key ctl-x-map "nw" 'widen)
623 ;; (define-key ctl-x-map "n" 'narrow-to-region)
624 ;; (define-key ctl-x-map "w" 'widen)
626 (define-key global-map "\C-j" 'newline-and-indent)
627 (define-key global-map "\C-m" 'newline)
628 (define-key global-map "\C-o" 'open-line)
629 (define-key esc-map "\C-o" 'split-line)
630 (define-key global-map "\C-q" 'quoted-insert)
631 (define-key esc-map "^" 'delete-indentation)
632 (define-key esc-map "\\" 'delete-horizontal-space)
633 (define-key esc-map "m" 'back-to-indentation)
634 (define-key ctl-x-map "\C-o" 'delete-blank-lines)
635 (define-key esc-map " " 'just-one-space)
636 (define-key esc-map "z" 'zap-to-char)
637 (define-key esc-map "=" 'count-lines-region)
638 (define-key ctl-x-map "=" 'what-cursor-position)
639 (define-key esc-map ":" 'eval-expression)
640 ;; Define ESC ESC : like ESC : for people who type ESC ESC out of habit.
641 (define-key esc-map "\M-:" 'eval-expression)
642 ;; Changed from C-x ESC so that function keys work following C-x.
643 (define-key ctl-x-map "\e\e" 'repeat-complex-command)
644 ;; New binding analogous to M-:.
645 (define-key ctl-x-map "\M-:" 'repeat-complex-command)
646 (define-key ctl-x-map "u" 'advertised-undo)
647 ;; Many people are used to typing C-/ on X terminals and getting C-_.
648 (define-key global-map [?\C-/] 'undo)
649 (define-key global-map "\C-_" 'undo)
650 (define-key esc-map "!" 'shell-command)
651 (define-key esc-map "|" 'shell-command-on-region)
653 (let ((map minibuffer-local-map))
654 (define-key map "\en" 'next-history-element)
655 (define-key map [next] 'next-history-element)
656 (define-key map [down] 'next-history-element)
657 (define-key map "\ep" 'previous-history-element)
658 (define-key map [prior] 'previous-history-element)
659 (define-key map [up] 'previous-history-element)
660 (define-key map "\es" 'next-matching-history-element)
661 (define-key map "\er" 'previous-matching-history-element))
663 (define-key global-map "\C-u" 'universal-argument)
664 (let ((i ?0))
665 (while (<= i ?9)
666 (define-key esc-map (char-to-string i) 'digit-argument)
667 (setq i (1+ i))))
668 (define-key esc-map "-" 'negative-argument)
669 ;; Define control-digits.
670 (let ((i ?0))
671 (while (<= i ?9)
672 (define-key global-map (read (format "[?\\C-%c]" i)) 'digit-argument)
673 (setq i (1+ i))))
674 (define-key global-map [?\C--] 'negative-argument)
675 ;; Define control-meta-digits.
676 (let ((i ?0))
677 (while (<= i ?9)
678 (define-key esc-map (read (format "[?\\C-%c]" i)) 'digit-argument)
679 (setq i (1+ i))))
680 (define-key global-map [?\C-\M--] 'negative-argument)
682 (define-key global-map "\C-k" 'kill-line)
683 (define-key global-map "\C-w" 'kill-region)
684 (define-key esc-map "w" 'kill-ring-save)
685 (define-key esc-map "\C-w" 'append-next-kill)
686 (define-key global-map "\C-y" 'yank)
687 (define-key esc-map "y" 'yank-pop)
689 ;; (define-key ctl-x-map "a" 'append-to-buffer)
691 (define-key global-map "\C-@" 'set-mark-command)
692 ;; Many people are used to typing C-SPC and getting C-@.
693 (define-key global-map [?\C- ] 'set-mark-command)
694 (define-key ctl-x-map "\C-x" 'exchange-point-and-mark)
695 (define-key ctl-x-map "\C-@" 'pop-global-mark)
696 (define-key ctl-x-map [?\C- ] 'pop-global-mark)
698 (define-key global-map "\C-n" 'next-line)
699 (define-key global-map "\C-p" 'previous-line)
700 (define-key ctl-x-map "\C-n" 'set-goal-column)
702 ;;(defun function-key-error ()
703 ;; (interactive)
704 ;; (error "That function key is not bound to anything"))
706 (define-key global-map [menu] 'execute-extended-command)
707 (define-key global-map [find] 'search-forward)
709 ;; Don't do this. We define <delete> in function-key-map instead.
710 ;(define-key global-map [delete] 'backward-delete-char)
712 ;; natural bindings for terminal keycaps --- defined in X keysym order
713 (define-key global-map [C-S-backspace] 'kill-whole-line)
714 (define-key global-map [home] 'beginning-of-line)
715 (define-key global-map [C-home] 'beginning-of-buffer)
716 (define-key global-map [M-home] 'beginning-of-buffer-other-window)
717 (define-key global-map [left] 'backward-char)
718 (define-key global-map [up] 'previous-line)
719 (define-key global-map [right] 'forward-char)
720 (define-key global-map [down] 'next-line)
721 (define-key global-map [prior] 'scroll-down)
722 (define-key global-map [next] 'scroll-up)
723 (define-key global-map [C-up] 'backward-paragraph)
724 (define-key global-map [C-down] 'forward-paragraph)
725 (define-key global-map [C-prior] 'scroll-right)
726 (define-key global-map [C-next] 'scroll-left)
727 (define-key global-map [M-next] 'scroll-other-window)
728 (define-key global-map [M-prior] 'scroll-other-window-down)
729 (define-key global-map [end] 'end-of-line)
730 (define-key global-map [C-end] 'end-of-buffer)
731 (define-key global-map [M-end] 'end-of-buffer-other-window)
732 (define-key global-map [begin] 'beginning-of-buffer)
733 (define-key global-map [M-begin] 'beginning-of-buffer-other-window)
734 ;; (define-key global-map [select] 'function-key-error)
735 ;; (define-key global-map [print] 'function-key-error)
736 (define-key global-map [execute] 'execute-extended-command)
737 (define-key global-map [insert] 'overwrite-mode)
738 (define-key global-map [C-insert] 'kill-ring-save)
739 (define-key global-map [S-insert] 'yank)
740 (define-key global-map [undo] 'undo)
741 (define-key global-map [redo] 'repeat-complex-command)
742 (define-key global-map [again] 'repeat-complex-command) ; Sun keyboard
743 (define-key global-map [open] 'find-file) ; Sun
744 ;; The following wouldn't work to interrupt running code since C-g is
745 ;; treated specially in the event loop.
746 ;; (define-key global-map [stop] 'keyboard-quit) ; Sun
747 ;; (define-key global-map [clearline] 'function-key-error)
748 (define-key global-map [insertline] 'open-line)
749 (define-key global-map [deleteline] 'kill-line)
750 ;; (define-key global-map [insertchar] 'function-key-error)
751 (define-key global-map [deletechar] 'delete-char)
752 ;; (define-key global-map [backtab] 'function-key-error)
753 ;; (define-key global-map [f1] 'function-key-error)
754 ;; (define-key global-map [f2] 'function-key-error)
755 ;; (define-key global-map [f3] 'function-key-error)
756 ;; (define-key global-map [f4] 'function-key-error)
757 ;; (define-key global-map [f5] 'function-key-error)
758 ;; (define-key global-map [f6] 'function-key-error)
759 ;; (define-key global-map [f7] 'function-key-error)
760 ;; (define-key global-map [f8] 'function-key-error)
761 ;; (define-key global-map [f9] 'function-key-error)
762 ;; (define-key global-map [f10] 'function-key-error)
763 ;; (define-key global-map [f11] 'function-key-error)
764 ;; (define-key global-map [f12] 'function-key-error)
765 ;; (define-key global-map [f13] 'function-key-error)
766 ;; (define-key global-map [f14] 'function-key-error)
767 ;; (define-key global-map [f15] 'function-key-error)
768 ;; (define-key global-map [f16] 'function-key-error)
769 ;; (define-key global-map [f17] 'function-key-error)
770 ;; (define-key global-map [f18] 'function-key-error)
771 ;; (define-key global-map [f19] 'function-key-error)
772 ;; (define-key global-map [f20] 'function-key-error)
773 ;; (define-key global-map [f21] 'function-key-error)
774 ;; (define-key global-map [f22] 'function-key-error)
775 ;; (define-key global-map [f23] 'function-key-error)
776 ;; (define-key global-map [f24] 'function-key-error)
777 ;; (define-key global-map [f25] 'function-key-error)
778 ;; (define-key global-map [f26] 'function-key-error)
779 ;; (define-key global-map [f27] 'function-key-error)
780 ;; (define-key global-map [f28] 'function-key-error)
781 ;; (define-key global-map [f29] 'function-key-error)
782 ;; (define-key global-map [f30] 'function-key-error)
783 ;; (define-key global-map [f31] 'function-key-error)
784 ;; (define-key global-map [f32] 'function-key-error)
785 ;; (define-key global-map [f33] 'function-key-error)
786 ;; (define-key global-map [f34] 'function-key-error)
787 ;; (define-key global-map [f35] 'function-key-error)
788 ;; (define-key global-map [kp-backtab] 'function-key-error)
789 ;; (define-key global-map [kp-space] 'function-key-error)
790 ;; (define-key global-map [kp-tab] 'function-key-error)
791 ;; (define-key global-map [kp-enter] 'function-key-error)
792 ;; (define-key global-map [kp-f1] 'function-key-error)
793 ;; (define-key global-map [kp-f2] 'function-key-error)
794 ;; (define-key global-map [kp-f3] 'function-key-error)
795 ;; (define-key global-map [kp-f4] 'function-key-error)
796 ;; (define-key global-map [kp-multiply] 'function-key-error)
797 ;; (define-key global-map [kp-add] 'function-key-error)
798 ;; (define-key global-map [kp-separator] 'function-key-error)
799 ;; (define-key global-map [kp-subtract] 'function-key-error)
800 ;; (define-key global-map [kp-decimal] 'function-key-error)
801 ;; (define-key global-map [kp-divide] 'function-key-error)
802 ;; (define-key global-map [kp-0] 'function-key-error)
803 ;; (define-key global-map [kp-1] 'function-key-error)
804 ;; (define-key global-map [kp-2] 'function-key-error)
805 ;; (define-key global-map [kp-3] 'function-key-error)
806 ;; (define-key global-map [kp-4] 'function-key-error)
807 ;; (define-key global-map [kp-5] 'recenter)
808 ;; (define-key global-map [kp-6] 'function-key-error)
809 ;; (define-key global-map [kp-7] 'function-key-error)
810 ;; (define-key global-map [kp-8] 'function-key-error)
811 ;; (define-key global-map [kp-9] 'function-key-error)
812 ;; (define-key global-map [kp-equal] 'function-key-error)
814 ;; X11R6 distinguishes these keys from the non-kp keys.
815 ;; Make them behave like the non-kp keys unless otherwise bound.
816 (define-key function-key-map [kp-home] [home])
817 (define-key function-key-map [kp-left] [left])
818 (define-key function-key-map [kp-up] [up])
819 (define-key function-key-map [kp-right] [right])
820 (define-key function-key-map [kp-down] [down])
821 (define-key function-key-map [kp-prior] [prior])
822 (define-key function-key-map [kp-next] [next])
823 (define-key function-key-map [M-kp-next] [M-next])
824 (define-key function-key-map [kp-end] [end])
825 (define-key function-key-map [kp-begin] [begin])
826 (define-key function-key-map [kp-insert] [insert])
827 (define-key function-key-map [backspace] [?\C-?])
828 (define-key function-key-map [delete] [?\C-?])
829 (define-key function-key-map [kp-delete] [?\C-?])
830 (define-key function-key-map [S-kp-end] [S-end])
831 (define-key function-key-map [S-kp-down] [S-down])
832 (define-key function-key-map [S-kp-next] [S-next])
833 (define-key function-key-map [S-kp-left] [S-left])
834 (define-key function-key-map [S-kp-right] [S-right])
835 (define-key function-key-map [S-kp-home] [S-home])
836 (define-key function-key-map [S-kp-up] [S-up])
837 (define-key function-key-map [S-kp-prior] [S-prior])
838 (define-key function-key-map [C-S-kp-end] [C-S-end])
839 (define-key function-key-map [C-S-kp-down] [C-S-down])
840 (define-key function-key-map [C-S-kp-next] [C-S-next])
841 (define-key function-key-map [C-S-kp-left] [C-S-left])
842 (define-key function-key-map [C-S-kp-right] [C-S-right])
843 (define-key function-key-map [C-S-kp-home] [C-S-home])
844 (define-key function-key-map [C-S-kp-up] [C-S-up])
845 (define-key function-key-map [C-S-kp-prior] [C-S-prior])
846 ;; Don't bind shifted keypad numeric keys, they reportedly
847 ;; interfere with the feature of some keyboards to produce
848 ;; numbers when NumLock is off.
849 ;(define-key function-key-map [S-kp-1] [S-end])
850 ;(define-key function-key-map [S-kp-2] [S-down])
851 ;(define-key function-key-map [S-kp-3] [S-next])
852 ;(define-key function-key-map [S-kp-4] [S-left])
853 ;(define-key function-key-map [S-kp-6] [S-right])
854 ;(define-key function-key-map [S-kp-7] [S-home])
855 ;(define-key function-key-map [S-kp-8] [S-up])
856 ;(define-key function-key-map [S-kp-9] [S-prior])
857 (define-key function-key-map [C-S-kp-1] [C-S-end])
858 (define-key function-key-map [C-S-kp-2] [C-S-down])
859 (define-key function-key-map [C-S-kp-3] [C-S-next])
860 (define-key function-key-map [C-S-kp-4] [C-S-left])
861 (define-key function-key-map [C-S-kp-6] [C-S-right])
862 (define-key function-key-map [C-S-kp-7] [C-S-home])
863 (define-key function-key-map [C-S-kp-8] [C-S-up])
864 (define-key function-key-map [C-S-kp-9] [C-S-prior])
866 (define-key global-map [mouse-movement] 'ignore)
868 (define-key global-map "\C-t" 'transpose-chars)
869 (define-key esc-map "t" 'transpose-words)
870 (define-key esc-map "\C-t" 'transpose-sexps)
871 (define-key ctl-x-map "\C-t" 'transpose-lines)
873 (define-key esc-map ";" 'comment-dwim)
874 (define-key esc-map "j" 'indent-new-comment-line)
875 (define-key esc-map "\C-j" 'indent-new-comment-line)
876 (define-key ctl-x-map ";" 'comment-set-column)
877 (define-key ctl-x-map "f" 'set-fill-column)
878 (define-key ctl-x-map "$" 'set-selective-display)
880 (define-key esc-map "@" 'mark-word)
881 (define-key esc-map "f" 'forward-word)
882 (define-key esc-map "b" 'backward-word)
883 (define-key esc-map "d" 'kill-word)
884 (define-key esc-map "\177" 'backward-kill-word)
886 (define-key esc-map "<" 'beginning-of-buffer)
887 (define-key esc-map ">" 'end-of-buffer)
888 (define-key ctl-x-map "h" 'mark-whole-buffer)
889 (define-key esc-map "\\" 'delete-horizontal-space)
891 (defalias 'mode-specific-command-prefix (make-sparse-keymap))
892 (defvar mode-specific-map (symbol-function 'mode-specific-command-prefix)
893 "Keymap for characters following C-c.")
894 (define-key global-map "\C-c" 'mode-specific-command-prefix)
896 (global-set-key [M-right] 'forward-word)
897 (global-set-key [M-left] 'backward-word)
898 ;; ilya@math.ohio-state.edu says these bindings are standard on PC editors.
899 (global-set-key [C-right] 'forward-word)
900 (global-set-key [C-left] 'backward-word)
901 ;; This is not quite compatible, but at least is analogous
902 (global-set-key [C-delete] 'backward-kill-word)
903 (global-set-key [C-backspace] 'kill-word)
904 ;; This is "move to the clipboard", or as close as we come.
905 (global-set-key [S-delete] 'kill-region)
907 (global-set-key [C-M-left] 'backward-sexp)
908 (global-set-key [C-M-right] 'forward-sexp)
909 (global-set-key [C-M-up] 'backward-up-list)
910 (global-set-key [C-M-down] 'down-list)
911 (global-set-key [C-M-home] 'beginning-of-defun)
912 (global-set-key [C-M-end] 'end-of-defun)
914 (define-key esc-map "\C-f" 'forward-sexp)
915 (define-key esc-map "\C-b" 'backward-sexp)
916 (define-key esc-map "\C-u" 'backward-up-list)
917 (define-key esc-map "\C-@" 'mark-sexp)
918 (define-key esc-map [?\C-\ ] 'mark-sexp)
919 (define-key esc-map "\C-d" 'down-list)
920 (define-key esc-map "\C-k" 'kill-sexp)
921 ;;; These are dangerous in various situations,
922 ;;; so let's not encourage anyone to use them.
923 ;;;(define-key global-map [C-M-delete] 'backward-kill-sexp)
924 ;;;(define-key global-map [C-M-backspace] 'backward-kill-sexp)
925 (define-key esc-map [C-delete] 'backward-kill-sexp)
926 (define-key esc-map [C-backspace] 'backward-kill-sexp)
927 (define-key esc-map "\C-n" 'forward-list)
928 (define-key esc-map "\C-p" 'backward-list)
929 (define-key esc-map "\C-a" 'beginning-of-defun)
930 (define-key esc-map "\C-e" 'end-of-defun)
931 (define-key esc-map "\C-h" 'mark-defun)
932 (define-key ctl-x-map "nd" 'narrow-to-defun)
933 (define-key esc-map "(" 'insert-parentheses)
934 (define-key esc-map ")" 'move-past-close-and-reindent)
936 (define-key ctl-x-map "\C-e" 'eval-last-sexp)
938 (define-key ctl-x-map "m" 'compose-mail)
939 (define-key ctl-x-4-map "m" 'compose-mail-other-window)
940 (define-key ctl-x-5-map "m" 'compose-mail-other-frame)
942 (define-key ctl-x-map "r\C-@" 'point-to-register)
943 (define-key ctl-x-map [?r ?\C-\ ] 'point-to-register)
944 (define-key ctl-x-map "r " 'point-to-register)
945 (define-key ctl-x-map "rj" 'jump-to-register)
946 (define-key ctl-x-map "rs" 'copy-to-register)
947 (define-key ctl-x-map "rx" 'copy-to-register)
948 (define-key ctl-x-map "ri" 'insert-register)
949 (define-key ctl-x-map "rg" 'insert-register)
950 (define-key ctl-x-map "rr" 'copy-rectangle-to-register)
951 (define-key ctl-x-map "rn" 'number-to-register)
952 (define-key ctl-x-map "r+" 'increment-register)
953 (define-key ctl-x-map "rc" 'clear-rectangle)
954 (define-key ctl-x-map "rk" 'kill-rectangle)
955 (define-key ctl-x-map "rd" 'delete-rectangle)
956 (define-key ctl-x-map "ry" 'yank-rectangle)
957 (define-key ctl-x-map "ro" 'open-rectangle)
958 (define-key ctl-x-map "rt" 'string-rectangle)
959 (define-key ctl-x-map "rw" 'window-configuration-to-register)
960 (define-key ctl-x-map "rf" 'frame-configuration-to-register)
962 ;; These key bindings are deprecated; use the above C-x r map instead.
963 ;; We use these aliases so \[...] will show the C-x r bindings instead.
964 (defalias 'point-to-register-compatibility-binding 'point-to-register)
965 (defalias 'jump-to-register-compatibility-binding 'jump-to-register)
966 (defalias 'copy-to-register-compatibility-binding 'copy-to-register)
967 (defalias 'insert-register-compatibility-binding 'insert-register)
968 (define-key ctl-x-map "/" 'point-to-register-compatibility-binding)
969 (define-key ctl-x-map "j" 'jump-to-register-compatibility-binding)
970 (define-key ctl-x-map "x" 'copy-to-register-compatibility-binding)
971 (define-key ctl-x-map "g" 'insert-register-compatibility-binding)
972 ;; (define-key ctl-x-map "r" 'copy-rectangle-to-register)
974 (define-key esc-map "q" 'fill-paragraph)
975 ;; (define-key esc-map "g" 'fill-region)
976 (define-key ctl-x-map "." 'set-fill-prefix)
978 (define-key esc-map "{" 'backward-paragraph)
979 (define-key esc-map "}" 'forward-paragraph)
980 (define-key esc-map "h" 'mark-paragraph)
981 (define-key esc-map "a" 'backward-sentence)
982 (define-key esc-map "e" 'forward-sentence)
983 (define-key esc-map "k" 'kill-sentence)
984 (define-key ctl-x-map "\177" 'backward-kill-sentence)
986 (define-key ctl-x-map "[" 'backward-page)
987 (define-key ctl-x-map "]" 'forward-page)
988 (define-key ctl-x-map "\C-p" 'mark-page)
989 (define-key ctl-x-map "l" 'count-lines-page)
990 (define-key ctl-x-map "np" 'narrow-to-page)
991 ;; (define-key ctl-x-map "p" 'narrow-to-page)
993 (define-key ctl-x-map "al" 'add-mode-abbrev)
994 (define-key ctl-x-map "a\C-a" 'add-mode-abbrev)
995 (define-key ctl-x-map "ag" 'add-global-abbrev)
996 (define-key ctl-x-map "a+" 'add-mode-abbrev)
997 (define-key ctl-x-map "aig" 'inverse-add-global-abbrev)
998 (define-key ctl-x-map "ail" 'inverse-add-mode-abbrev)
999 ;; (define-key ctl-x-map "a\C-h" 'inverse-add-global-abbrev)
1000 (define-key ctl-x-map "a-" 'inverse-add-global-abbrev)
1001 (define-key ctl-x-map "ae" 'expand-abbrev)
1002 (define-key ctl-x-map "a'" 'expand-abbrev)
1003 ;; (define-key ctl-x-map "\C-a" 'add-mode-abbrev)
1004 ;; (define-key ctl-x-map "\+" 'add-global-abbrev)
1005 ;; (define-key ctl-x-map "\C-h" 'inverse-add-mode-abbrev)
1006 ;; (define-key ctl-x-map "\-" 'inverse-add-global-abbrev)
1007 (define-key esc-map "'" 'abbrev-prefix-mark)
1008 (define-key ctl-x-map "'" 'expand-abbrev)
1010 (define-key ctl-x-map "z" 'repeat)
1012 ;; Don't look for autoload cookies in this file.
1013 ;; Local Variables:
1014 ;; no-update-autoloads: t
1015 ;; End:
1017 ;;; arch-tag: 23b5c7e6-e47b-49ed-8c6c-ed213c5fffe0
1018 ;;; bindings.el ends here