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