]> code.delx.au - gnu-emacs/blob - lisp/bindings.el
c4c1c78674d1631dad8dbb72e74eb0c995677a25
[gnu-emacs] / lisp / bindings.el
1 ;;; bindings.el --- define standard key bindings and some variables
2
3 ;; Copyright (C) 1985, 1986, 1987, 1992, 1993, 1994, 1995, 1996, 1999,
4 ;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 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 3 of the License, or
14 ;; (at your option) 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. If not, see <http://www.gnu.org/licenses/>.
23
24 ;;; Commentary:
25
26 ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
27 ;;; Special formatting conventions are used in this file!
28 ;;;
29 ;;; A backslash-newline is used at the beginning of a documentation string
30 ;;; when that string should be stored in the file etc/DOCnnn, not in core.
31 ;;;
32 ;;; Such strings read into Lisp as numbers (during the pure-loading phase).
33 ;;;
34 ;;; But you must obey certain rules to make sure the string is understood
35 ;;; and goes into etc/DOCnnn properly.
36 ;;;
37 ;;; The doc string must appear in the standard place in a call to
38 ;;; defun, autoload, defvar or defconst. No Lisp macros are recognized.
39 ;;; The open-paren starting the definition must appear in column 0.
40 ;;;
41 ;;; In defvar and defconst, there is an additional rule:
42 ;;; The double-quote that starts the string must be on the same
43 ;;; line as the defvar or defconst.
44 ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
45
46 ;;; Code:
47
48 (defun make-mode-line-mouse-map (mouse function) "\
49 Return a keymap with single entry for mouse key MOUSE on the mode line.
50 MOUSE is defined to run function FUNCTION with no args in the buffer
51 corresponding to the mode line clicked."
52 (let ((map (make-sparse-keymap)))
53 (define-key map (vector 'mode-line mouse) function)
54 map))
55
56
57 (defun mode-line-toggle-read-only (event)
58 "Like `toggle-read-only', for the mode-line."
59 (interactive "e")
60 (save-selected-window
61 (select-window (posn-window (event-start event)))
62 (toggle-read-only)
63 (force-mode-line-update)))
64
65
66 (defun mode-line-toggle-modified (event)
67 "Toggle the buffer-modified flag from the mode-line."
68 (interactive "e")
69 (save-selected-window
70 (select-window (posn-window (event-start event)))
71 (set-buffer-modified-p (not (buffer-modified-p)))
72 (force-mode-line-update)))
73
74
75 (defun mode-line-widen (event)
76 "Widen a buffer from the mode-line."
77 (interactive "e")
78 (save-selected-window
79 (select-window (posn-window (event-start event)))
80 (widen)
81 (force-mode-line-update)))
82
83
84 (defun mode-line-abbrev-mode (event)
85 "Turn off `abbrev-mode' from the mode-line."
86 (interactive "e")
87 (save-selected-window
88 (select-window (posn-window (event-start event)))
89 (abbrev-mode)
90 (force-mode-line-update)))
91
92
93 (defun mode-line-auto-fill-mode (event)
94 "Turn off `auto-fill-mode' from the mode-line."
95 (interactive "e")
96 (save-selected-window
97 (select-window (posn-window (event-start event)))
98 (auto-fill-mode)
99 (force-mode-line-update)))
100
101
102 (defvar mode-line-input-method-map
103 (let ((map (make-sparse-keymap)))
104 (define-key map [mode-line mouse-2]
105 (lambda (e)
106 (interactive "e")
107 (save-selected-window
108 (select-window
109 (posn-window (event-start e)))
110 (toggle-input-method)
111 (force-mode-line-update))))
112 (define-key map [mode-line mouse-3]
113 (lambda (e)
114 (interactive "e")
115 (save-selected-window
116 (select-window
117 (posn-window (event-start e)))
118 (describe-current-input-method))))
119 (purecopy map)))
120
121
122 (defvar mode-line-coding-system-map
123 (let ((map (make-sparse-keymap)))
124 (define-key map [mode-line mouse-1]
125 (lambda (e)
126 (interactive "e")
127 (save-selected-window
128 (select-window (posn-window (event-start e)))
129 (when (and enable-multibyte-characters
130 buffer-file-coding-system)
131 (describe-coding-system buffer-file-coding-system)))))
132 (purecopy map))
133 "Local keymap for the coding-system part of the mode line.")
134
135
136 (defun mode-line-change-eol (event)
137 "Cycle through the various possible kinds of end-of-line styles."
138 (interactive "e")
139 (with-selected-window (posn-window (event-start event))
140 (let ((eol (coding-system-eol-type buffer-file-coding-system)))
141 (set-buffer-file-coding-system
142 (cond ((eq eol 0) 'dos) ((eq eol 1) 'mac) (t 'unix))))))
143
144 (defvar mode-line-eol-desc-cache nil)
145
146 (defun mode-line-eol-desc ()
147 (let* ((eol (coding-system-eol-type buffer-file-coding-system))
148 (mnemonic (coding-system-eol-type-mnemonic buffer-file-coding-system))
149 (desc (assoc eol mode-line-eol-desc-cache)))
150 (if (and desc (eq (cadr desc) mnemonic))
151 (cddr desc)
152 (if desc (setq mode-line-eol-desc-cache nil)) ;Flush the cache if stale.
153 (setq desc
154 (propertize
155 mnemonic
156 'help-echo (format "End-of-line style: %s\nmouse-1 to cycle"
157 (if (eq eol 0) "Unix-style LF"
158 (if (eq eol 1) "DOS-style CRLF"
159 (if (eq eol 2) "Mac-style CR"
160 "Undecided"))))
161 'keymap
162 (eval-when-compile
163 (let ((map (make-sparse-keymap)))
164 (define-key map [mode-line mouse-1] 'mode-line-change-eol)
165 map))
166 'mouse-face 'mode-line-highlight))
167 (push (cons eol (cons mnemonic desc)) mode-line-eol-desc-cache)
168 desc)))
169
170 (defvar mode-line-client
171 `(""
172 (:propertize ("" (:eval (if (frame-parameter nil 'client) "@" "")))
173 help-echo "emacsclient frame"))
174 "Mode-line control for identifying emacsclient frames.")
175
176 (defvar mode-line-mule-info
177 `(""
178 (current-input-method
179 (:propertize ("" current-input-method-title)
180 help-echo (concat
181 "Current input method: "
182 current-input-method
183 "\n\
184 mouse-2: Disable input method\n\
185 mouse-3: Describe current input method")
186 local-map ,mode-line-input-method-map
187 mouse-face mode-line-highlight))
188 ,(propertize
189 "%z"
190 'help-echo
191 #'(lambda (window object point)
192 (with-current-buffer (window-buffer window)
193 ;; Don't show this tip if the coding system is nil,
194 ;; it reads like a bug, and is not useful anyway.
195 (when buffer-file-coding-system
196 (format "Buffer coding system %s\nmouse-1: describe coding system"
197 (if enable-multibyte-characters
198 (concat "(multi-byte): "
199 (symbol-name buffer-file-coding-system))
200 (concat "(unibyte): "
201 (symbol-name buffer-file-coding-system)))))))
202 'mouse-face 'mode-line-highlight
203 'local-map mode-line-coding-system-map)
204 (:eval (mode-line-eol-desc)))
205 "Mode-line control for displaying information of multilingual environment.
206 Normally it displays current input method (if any activated) and
207 mnemonics of the following coding systems:
208 coding system for saving or writing the current buffer
209 coding system for keyboard input (if Emacs is running on terminal)
210 coding system for terminal output (if Emacs is running on terminal)"
211 ;; Currently not:
212 ;; coding system for decoding output of buffer process (if any)
213 ;; coding system for encoding text to send to buffer process (if any)."
214 )
215
216 (make-variable-buffer-local 'mode-line-mule-info)
217
218 ;; MSDOS frames have window-system, but want the Fn identification.
219 (defun mode-line-frame-control ()
220 "Compute mode-line control for frame identification.
221 Value is used for `mode-line-frame-identification', which see."
222 (if (or (null window-system)
223 (eq window-system 'pc))
224 "-%F "
225 " "))
226
227 ;; We need to defer the call to mode-line-frame-control to the time
228 ;; the mode line is actually displayed.
229 (defvar mode-line-frame-identification '(:eval (mode-line-frame-control))
230 "Mode-line control to describe the current frame.")
231 (put 'mode-line-frame-identification 'risky-local-variable t)
232
233 (defvar mode-line-process nil "\
234 Mode-line control for displaying info on process status.
235 Normally nil in most modes, since there is no process to display.")
236
237 (make-variable-buffer-local 'mode-line-process)
238
239 (defvar mode-line-modified
240 (list (propertize
241 "%1*"
242 'help-echo (purecopy (lambda (window object point)
243 (format "Buffer is %s\nmouse-1 toggles"
244 (save-selected-window
245 (select-window window)
246 (if buffer-read-only
247 "read-only"
248 "writable")))))
249 'local-map (purecopy (make-mode-line-mouse-map
250 'mouse-1
251 #'mode-line-toggle-read-only))
252 'mouse-face 'mode-line-highlight)
253 (propertize
254 "%1+"
255 'help-echo (purecopy (lambda (window object point)
256 (format "Buffer is %sodified\nmouse-1 toggles modified state"
257 (save-selected-window
258 (select-window window)
259 (if (buffer-modified-p)
260 "m"
261 "not m")))))
262 'local-map (purecopy (make-mode-line-mouse-map
263 'mouse-1 #'mode-line-toggle-modified))
264 'mouse-face 'mode-line-highlight))
265 "Mode-line control for displaying whether current buffer is modified.")
266
267 (make-variable-buffer-local 'mode-line-modified)
268
269 (defvar mode-line-remote
270 (list (propertize
271 "%1@"
272 'mouse-face 'mode-line-highlight
273 'help-echo (purecopy (lambda (window object point)
274 (format "%s"
275 (save-selected-window
276 (select-window window)
277 (concat
278 (if (file-remote-p default-directory)
279 "Current directory is remote: "
280 "Current directory is local: ")
281 default-directory)))))))
282 "Mode-line flag to show if default-directory for current buffer is remote.")
283
284 (make-variable-buffer-local 'mode-line-remote)
285
286 ;; Actual initialization is below.
287 (defvar mode-line-position nil
288 "Mode-line control for displaying the position in the buffer.
289 Normally displays the buffer percentage and, optionally, the
290 buffer size, the line number and the column number.")
291
292 (defvar mode-line-modes nil
293 "Mode-line control for displaying major and minor modes.")
294
295 (defvar mode-line-mode-menu (make-sparse-keymap "Minor Modes") "\
296 Menu of mode operations in the mode line.")
297
298 (defvar mode-line-major-mode-keymap
299 (let ((map (make-sparse-keymap)))
300 (define-key map [mode-line down-mouse-1]
301 '(menu-item "Menu Bar" ignore
302 :filter (lambda (_) (mouse-menu-major-mode-map))))
303 (define-key map [mode-line mouse-2] 'describe-mode)
304 (define-key map [mode-line down-mouse-3] mode-line-mode-menu)
305 map) "\
306 Keymap to display on major mode.")
307
308 (defvar mode-line-minor-mode-keymap
309 (let ((map (make-sparse-keymap)))
310 (define-key map [mode-line down-mouse-1] 'mouse-minor-mode-menu)
311 (define-key map [mode-line mouse-2] 'mode-line-minor-mode-help)
312 (define-key map [mode-line down-mouse-3] mode-line-mode-menu)
313 (define-key map [header-line down-mouse-3] mode-line-mode-menu)
314 map) "\
315 Keymap to display on minor modes.")
316
317 (defvar mode-line-column-line-number-mode-map
318 (let ((map (make-sparse-keymap))
319 (menu-map (make-sparse-keymap "Toggle Line and Column Number Display")))
320 (define-key menu-map [line-number-mode]
321 `(menu-item ,(purecopy "Display Line Numbers") line-number-mode
322 :help "Toggle displaying line numbers in the mode-line"
323 :button (:toggle . line-number-mode)))
324 (define-key menu-map [column-number-mode]
325 `(menu-item ,(purecopy "Display Column Numbers") column-number-mode
326 :help "Toggle displaying column numbers in the mode-line"
327 :button (:toggle . column-number-mode)))
328 (define-key map [mode-line down-mouse-1] menu-map)
329 map) "\
330 Keymap to display on column and line numbers.")
331
332 (let* ((help-echo
333 ;; The multi-line message doesn't work terribly well on the
334 ;; bottom mode line... Better ideas?
335 ;; "\
336 ;; mouse-1: select window, mouse-2: delete others, mouse-3: delete,
337 ;; drag-mouse-1: resize, C-mouse-2: split horizontally"
338 "mouse-1: Select (drag to resize)\n\
339 mouse-2: Make current window occupy the whole frame\n\
340 mouse-3: Remove current window from display")
341 (recursive-edit-help-echo "Recursive edit, type C-M-c to get out")
342 (dashes (propertize "--" 'help-echo help-echo))
343 (standard-mode-line-format
344 (list
345 "%e"
346 (propertize "-" 'help-echo help-echo)
347 'mode-line-mule-info
348 'mode-line-client
349 'mode-line-modified
350 'mode-line-remote
351 'mode-line-frame-identification
352 'mode-line-buffer-identification
353 (propertize " " 'help-echo help-echo)
354 'mode-line-position
355 '(vc-mode vc-mode)
356 (propertize " " 'help-echo help-echo)
357 'mode-line-modes
358 `(which-func-mode ("" which-func-format ,dashes))
359 `(global-mode-string (,dashes global-mode-string))
360 (propertize "-%-" 'help-echo help-echo)))
361 (standard-mode-line-modes
362 (list
363 (propertize "%[" 'help-echo recursive-edit-help-echo)
364 (propertize "(" 'help-echo help-echo)
365 `(:propertize ("" mode-name)
366 help-echo "Major mode\n\
367 mouse-1: Display major mode menu\n\
368 mouse-2: Show help for major mode\n\
369 mouse-3: Toggle minor modes"
370 mouse-face mode-line-highlight
371 local-map ,mode-line-major-mode-keymap)
372 '("" mode-line-process)
373 `(:propertize ("" minor-mode-alist)
374 mouse-face mode-line-highlight
375 help-echo "Minor mode\n\
376 mouse-1: Display minor mode menu\n\
377 mouse-2: Show help for minor mode\n\
378 mouse-3: Toggle minor modes"
379 local-map ,mode-line-minor-mode-keymap)
380 (propertize "%n" 'help-echo "mouse-2: Remove narrowing from the current buffer"
381 'mouse-face 'mode-line-highlight
382 'local-map (make-mode-line-mouse-map
383 'mouse-2 #'mode-line-widen))
384 (propertize ")" 'help-echo help-echo)
385 (propertize "%]" 'help-echo recursive-edit-help-echo)
386 (propertize "--" 'help-echo help-echo)))
387
388 (standard-mode-line-position
389 `((-3 ,(propertize
390 "%p"
391 'local-map mode-line-column-line-number-mode-map
392 'mouse-face 'mode-line-highlight
393 ;; XXX needs better description
394 'help-echo "Size indication mode\n\
395 mouse-1: Display Line and Column Mode Menu"))
396 (size-indication-mode
397 (8 ,(propertize
398 " of %I"
399 'local-map mode-line-column-line-number-mode-map
400 'mouse-face 'mode-line-highlight
401 ;; XXX needs better description
402 'help-echo "Size indication mode\n\
403 mouse-1: Display Line and Column Mode Menu")))
404 (line-number-mode
405 ((column-number-mode
406 (10 ,(propertize
407 " (%l,%c)"
408 'local-map mode-line-column-line-number-mode-map
409 'mouse-face 'mode-line-highlight
410 'help-echo "Line number and Column number\n\
411 mouse-1: Display Line and Column Mode Menu"))
412 (6 ,(propertize
413 " L%l"
414 'local-map mode-line-column-line-number-mode-map
415 'mouse-face 'mode-line-highlight
416 'help-echo "Line Number\n\
417 mouse-1: Display Line and Column Mode Menu"))))
418 ((column-number-mode
419 (5 ,(propertize
420 " C%c"
421 'local-map mode-line-column-line-number-mode-map
422 'mouse-face 'mode-line-highlight
423 'help-echo "Column number\n\
424 mouse-1: Display Line and Column Mode Menu"))))))))
425
426 (setq-default mode-line-format standard-mode-line-format)
427 (put 'mode-line-format 'standard-value
428 (list `(quote ,standard-mode-line-format)))
429
430 (setq-default mode-line-modes standard-mode-line-modes)
431 (put 'mode-line-modes 'standard-value
432 (list `(quote ,standard-mode-line-modes)))
433
434 (setq-default mode-line-position standard-mode-line-position)
435 (put 'mode-line-position 'standard-value
436 (list `(quote ,standard-mode-line-position))))
437
438 (defvar mode-line-buffer-identification-keymap
439 ;; Add menu of buffer operations to the buffer identification part
440 ;; of the mode line.or header line.
441 (let ((map (make-sparse-keymap)))
442 ;; Bind down- events so that the global keymap won't ``shine
443 ;; through''.
444 (define-key map [mode-line mouse-1] 'mode-line-previous-buffer)
445 (define-key map [header-line down-mouse-1] 'ignore)
446 (define-key map [header-line mouse-1] 'mode-line-previous-buffer)
447 (define-key map [mode-line mouse-3] 'mode-line-next-buffer)
448 (define-key map [header-line down-mouse-3] 'ignore)
449 (define-key map [header-line mouse-3] 'mode-line-next-buffer)
450 map) "\
451 Keymap for what is displayed by `mode-line-buffer-identification'.")
452
453 (defun propertized-buffer-identification (fmt)
454 "Return a list suitable for `mode-line-buffer-identification'.
455 FMT is a format specifier such as \"%12b\". This function adds
456 text properties for face, help-echo, and local-map to it."
457 (list (propertize fmt
458 'face 'mode-line-buffer-id
459 'help-echo
460 (purecopy "Buffer name\n\
461 mouse-1: previous buffer\n\
462 mouse-3: next buffer")
463 'mouse-face 'mode-line-highlight
464 'local-map mode-line-buffer-identification-keymap)))
465
466 (defvar mode-line-buffer-identification (propertized-buffer-identification "%12b") "\
467 Mode-line control for identifying the buffer being displayed.
468 Its default value is (\"%12b\") with some text properties added.
469 Major modes that edit things other than ordinary files may change this
470 \(e.g. Info, Dired,...)")
471
472 (make-variable-buffer-local 'mode-line-buffer-identification)
473
474 (defun unbury-buffer () "\
475 Switch to the last buffer in the buffer list."
476 (interactive)
477 (switch-to-buffer (last-buffer)))
478
479 (defun mode-line-unbury-buffer (event) "\
480 Call `unbury-buffer' in this window."
481 (interactive "e")
482 (save-selected-window
483 (select-window (posn-window (event-start event)))
484 (unbury-buffer)))
485
486 (defun mode-line-bury-buffer (event) "\
487 Like `bury-buffer', but temporarily select EVENT's window."
488 (interactive "e")
489 (save-selected-window
490 (select-window (posn-window (event-start event)))
491 (bury-buffer)))
492
493 (defun mode-line-other-buffer () "\
494 Switch to the most recently selected buffer other than the current one."
495 (interactive)
496 (switch-to-buffer (other-buffer)))
497
498 (defun mode-line-next-buffer (event)
499 "Like `next-buffer', but temporarily select EVENT's window."
500 (interactive "e")
501 (save-selected-window
502 (select-window (posn-window (event-start event)))
503 (next-buffer)))
504
505 (defun mode-line-previous-buffer (event)
506 "Like `previous-buffer', but temporarily select EVENT's window."
507 (interactive "e")
508 (save-selected-window
509 (select-window (posn-window (event-start event)))
510 (previous-buffer)))
511
512 (defmacro bound-and-true-p (var)
513 "Return the value of symbol VAR if it is bound, else nil."
514 `(and (boundp (quote ,var)) ,var))
515
516 ;; Use mode-line-mode-menu for local minor-modes only.
517 ;; Global ones can go on the menubar (Options --> Show/Hide).
518 (define-key mode-line-mode-menu [overwrite-mode]
519 `(menu-item ,(purecopy "Overwrite (Ovwrt)") overwrite-mode
520 :help "Overwrite mode: typed characters replace existing text"
521 :button (:toggle . overwrite-mode)))
522 (define-key mode-line-mode-menu [outline-minor-mode]
523 `(menu-item ,(purecopy "Outline (Outl)") outline-minor-mode
524 ;; XXX: This needs a good, brief description.
525 :help ""
526 :button (:toggle . (bound-and-true-p outline-minor-mode))))
527 (define-key mode-line-mode-menu [highlight-changes-mode]
528 `(menu-item ,(purecopy "Highlight changes (Chg)") highlight-changes-mode
529 :help "Show changes in the buffer in a distinctive color"
530 :button (:toggle . (bound-and-true-p highlight-changes-mode))))
531 (define-key mode-line-mode-menu [hide-ifdef-mode]
532 `(menu-item ,(purecopy "Hide ifdef (Ifdef)") hide-ifdef-mode
533 :help "Show/Hide code within #ifdef constructs"
534 :button (:toggle . (bound-and-true-p hide-ifdef-mode))))
535 (define-key mode-line-mode-menu [glasses-mode]
536 `(menu-item ,(purecopy "Glasses (o^o)") glasses-mode
537 :help "Insert virtual separators to make long identifiers easy to read"
538 :button (:toggle . (bound-and-true-p glasses-mode))))
539 (define-key mode-line-mode-menu [font-lock-mode]
540 `(menu-item ,(purecopy "Font Lock") font-lock-mode
541 :help "Syntax coloring"
542 :button (:toggle . font-lock-mode)))
543 (define-key mode-line-mode-menu [flyspell-mode]
544 `(menu-item ,(purecopy "Flyspell (Fly)") flyspell-mode
545 :help "Spell checking on the fly"
546 :button (:toggle . (bound-and-true-p flyspell-mode))))
547 (define-key mode-line-mode-menu [auto-revert-tail-mode]
548 `(menu-item ,(purecopy "Auto revert tail (Tail)") auto-revert-tail-mode
549 :help "Revert the tail of the buffer when buffer grows"
550 :enable (buffer-file-name)
551 :button (:toggle . (bound-and-true-p auto-revert-tail-mode))))
552 (define-key mode-line-mode-menu [auto-revert-mode]
553 `(menu-item ,(purecopy "Auto revert (ARev)") auto-revert-mode
554 :help "Revert the buffer when the file on disk changes"
555 :button (:toggle . (bound-and-true-p auto-revert-mode))))
556 (define-key mode-line-mode-menu [auto-fill-mode]
557 `(menu-item ,(purecopy "Auto fill (Fill)") auto-fill-mode
558 :help "Automatically insert new lines"
559 :button (:toggle . auto-fill-function)))
560 (define-key mode-line-mode-menu [abbrev-mode]
561 `(menu-item ,(purecopy "Abbrev (Abbrev)") abbrev-mode
562 :help "Automatically expand abbreviations"
563 :button (:toggle . abbrev-mode)))
564
565 (defun mode-line-minor-mode-help (event)
566 "Describe minor mode for EVENT on minor modes area of the mode line."
567 (interactive "@e")
568 (let ((indicator (car (nth 4 (car (cdr event))))))
569 (describe-minor-mode-from-indicator indicator)))
570
571 (defvar minor-mode-alist nil "\
572 Alist saying how to show minor modes in the mode line.
573 Each element looks like (VARIABLE STRING);
574 STRING is included in the mode line if VARIABLE's value is non-nil.
575
576 Actually, STRING need not be a string; any possible mode-line element
577 is okay. See `mode-line-format'.")
578 ;; Don't use purecopy here--some people want to change these strings.
579 (setq minor-mode-alist
580 '((abbrev-mode " Abbrev")
581 (overwrite-mode overwrite-mode)
582 (auto-fill-function " Fill")
583 ;; not really a minor mode...
584 (defining-kbd-macro " Def")))
585
586 ;; These variables are used by autoloadable packages.
587 ;; They are defined here so that they do not get overridden
588 ;; by the loading of those packages.
589
590 ;; Names in directory that end in one of these
591 ;; are ignored in completion,
592 ;; making it more likely you will get a unique match.
593 (setq completion-ignored-extensions
594 (append
595 (cond ((memq system-type '(ms-dos windows-nt))
596 '(".o" "~" ".bin" ".bak" ".obj" ".map" ".ico" ".pif" ".lnk"
597 ".a" ".ln" ".blg" ".bbl" ".dll" ".drv" ".vxd" ".386"))
598 (t
599 '(".o" "~" ".bin" ".lbin" ".so"
600 ".a" ".ln" ".blg" ".bbl")))
601 '(".elc" ".lof"
602 ".glo" ".idx" ".lot"
603 ;; VCS metadata directories
604 ".svn/" ".hg/" ".git/" ".bzr/" "CVS/" "_darcs/" "_MTN/"
605 ;; TeX-related
606 ".fmt" ".tfm"
607 ;; Java compiled
608 ".class"
609 ;; CLISP
610 ".fas" ".lib" ".mem"
611 ;; CMUCL
612 ".x86f" ".sparcf"
613 ;; Other CL implementations (Allegro, LispWorks, OpenMCL)
614 ".fasl" ".ufsl" ".fsl" ".dxl" ".pfsl" ".dfsl"
615 ".p64fsl" ".d64fsl" ".dx64fsl"
616 ;; Libtool
617 ".lo" ".la"
618 ;; Gettext
619 ".gmo" ".mo"
620 ;; Texinfo-related
621 ;; This used to contain .log, but that's commonly used for log
622 ;; files you do want to see, not just TeX stuff. -- fx
623 ".toc" ".aux"
624 ".cp" ".fn" ".ky" ".pg" ".tp" ".vr"
625 ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs"
626 ;; Python byte-compiled
627 ".pyc" ".pyo")))
628
629 ;; Suffixes used for executables.
630 (setq exec-suffixes
631 (cond
632 ((memq system-type '(ms-dos windows-nt))
633 '(".exe" ".com" ".bat" ".cmd" ".btm" ""))
634 (t
635 '(""))))
636
637 ;; Packages should add to this list appropriately when they are
638 ;; loaded, rather than listing everything here.
639 (setq debug-ignored-errors
640 '(beginning-of-line beginning-of-buffer end-of-line
641 end-of-buffer end-of-file buffer-read-only
642 file-supersession
643 "^Previous command was not a yank$"
644 "^Minibuffer window is not active$"
645 "^No previous history search regexp$"
646 "^No later matching history item$"
647 "^No earlier matching history item$"
648 "^End of history; no default available$"
649 "^End of defaults; no next item$"
650 "^Beginning of history; no preceding item$"
651 "^No recursive edit is in progress$"
652 "^Changes to be undone are outside visible portion of buffer$"
653 "^No undo information in this buffer$"
654 "^No further undo information"
655 "^Save not confirmed$"
656 "^Recover-file cancelled\\.$"
657 "^Cannot switch buffers in a dedicated window$"
658 ))
659
660
661 (make-variable-buffer-local 'indent-tabs-mode)
662
663 ;; We have base64 and md5 functions built in now.
664 (provide 'base64)
665 (provide 'md5)
666 (provide 'overlay '(display syntax-table field))
667 (provide 'text-properties '(display syntax-table field point-entered))
668
669 (define-key esc-map "\t" 'complete-symbol)
670
671 (defun complete-symbol (arg) "\
672 Perform tags completion on the text around point.
673 Completes to the set of names listed in the current tags table.
674 The string to complete is chosen in the same way as the default
675 for \\[find-tag] (which see).
676
677 With a prefix argument, this command does completion within
678 the collection of symbols listed in the index of the manual for the
679 language you are using."
680 (interactive "P")
681 (if arg
682 (info-complete-symbol)
683 (if (fboundp 'complete-tag)
684 (complete-tag)
685 ;; Don't autoload etags if we have no tags table.
686 (error "%s" (substitute-command-keys
687 "No tags table loaded; use \\[visit-tags-table] to load one")))))
688
689 ;; Reduce total amount of space we must allocate during this function
690 ;; that we will not need to keep permanently.
691 (garbage-collect)
692 \f
693
694 (setq help-event-list '(help f1))
695
696 (make-variable-buffer-local 'minor-mode-overriding-map-alist)
697
698 ;; From frame.c
699 (global-set-key [switch-frame] 'handle-switch-frame)
700 (global-set-key [select-window] 'handle-select-window)
701
702 ;; FIXME: Do those 3 events really ever reach the global-map ?
703 ;; It seems that they can't because they're handled via
704 ;; special-event-map which is used at very low-level. -stef
705 (global-set-key [delete-frame] 'handle-delete-frame)
706 (global-set-key [iconify-frame] 'ignore-event)
707 (global-set-key [make-frame-visible] 'ignore-event)
708
709
710 ;These commands are defined in editfns.c
711 ;but they are not assigned to keys there.
712 (put 'narrow-to-region 'disabled t)
713
714 (defvar narrow-map (make-sparse-keymap)
715 "Keymap for narrowing commands.")
716 (define-key ctl-x-map "n" narrow-map)
717
718 (define-key narrow-map "n" 'narrow-to-region)
719 (define-key narrow-map "w" 'widen)
720
721 ;; Quitting
722 (define-key global-map "\e\e\e" 'keyboard-escape-quit)
723 (define-key global-map "\C-g" 'keyboard-quit)
724
725 ;; Used to be in termdev.el: when using several terminals, make C-z
726 ;; suspend only the relevant terminal.
727 (substitute-key-definition 'suspend-emacs 'suspend-frame global-map)
728
729 (define-key global-map "\C-j" 'newline-and-indent)
730 (define-key global-map "\C-m" 'newline)
731 (define-key global-map "\C-o" 'open-line)
732 (define-key esc-map "\C-o" 'split-line)
733 (define-key global-map "\C-q" 'quoted-insert)
734 (define-key esc-map "^" 'delete-indentation)
735 (define-key esc-map "\\" 'delete-horizontal-space)
736 (define-key esc-map "m" 'back-to-indentation)
737 (define-key ctl-x-map "\C-o" 'delete-blank-lines)
738 (define-key esc-map " " 'just-one-space)
739 (define-key esc-map "z" 'zap-to-char)
740 (define-key esc-map "=" 'count-lines-region)
741 (define-key ctl-x-map "=" 'what-cursor-position)
742 (define-key esc-map ":" 'eval-expression)
743 ;; Define ESC ESC : like ESC : for people who type ESC ESC out of habit.
744 (define-key esc-map "\M-:" 'eval-expression)
745 ;; Changed from C-x ESC so that function keys work following C-x.
746 (define-key ctl-x-map "\e\e" 'repeat-complex-command)
747 ;; New binding analogous to M-:.
748 (define-key ctl-x-map "\M-:" 'repeat-complex-command)
749 (define-key ctl-x-map "u" 'advertised-undo)
750 ;; Many people are used to typing C-/ on X terminals and getting C-_.
751 (define-key global-map [?\C-/] 'undo)
752 (define-key global-map "\C-_" 'undo)
753 ;; Richard said that we should not use C-x <uppercase letter> and I have
754 ;; no idea whereas to bind it. Any suggestion welcome. -stef
755 ;; (define-key ctl-x-map "U" 'undo-only)
756
757 (define-key esc-map "!" 'shell-command)
758 (define-key esc-map "|" 'shell-command-on-region)
759 (define-key esc-map "&" 'async-shell-command)
760
761 (define-key ctl-x-map [right] 'next-buffer)
762 (define-key ctl-x-map [C-right] 'next-buffer)
763 (define-key ctl-x-map [left] 'previous-buffer)
764 (define-key ctl-x-map [C-left] 'previous-buffer)
765
766 (let ((map minibuffer-local-map))
767 (define-key map "\en" 'next-history-element)
768 (define-key map [next] 'next-history-element)
769 (define-key map [down] 'next-history-element)
770 (define-key map "\ep" 'previous-history-element)
771 (define-key map [prior] 'previous-history-element)
772 (define-key map [up] 'previous-history-element)
773 (define-key map "\es" 'next-matching-history-element)
774 (define-key map "\er" 'previous-matching-history-element)
775 ;; Override the global binding (which calls indent-relative via
776 ;; indent-for-tab-command). The alignment that indent-relative tries to
777 ;; do doesn't make much sense here since the prompt messes it up.
778 (define-key map "\t" 'self-insert-command)
779 (define-key map [C-tab] 'file-cache-minibuffer-complete))
780
781 (define-key global-map "\C-u" 'universal-argument)
782 (let ((i ?0))
783 (while (<= i ?9)
784 (define-key esc-map (char-to-string i) 'digit-argument)
785 (setq i (1+ i))))
786 (define-key esc-map "-" 'negative-argument)
787 ;; Define control-digits.
788 (let ((i ?0))
789 (while (<= i ?9)
790 (define-key global-map (read (format "[?\\C-%c]" i)) 'digit-argument)
791 (setq i (1+ i))))
792 (define-key global-map [?\C--] 'negative-argument)
793 ;; Define control-meta-digits.
794 (let ((i ?0))
795 (while (<= i ?9)
796 (define-key esc-map (read (format "[?\\C-%c]" i)) 'digit-argument)
797 (setq i (1+ i))))
798 (define-key global-map [?\C-\M--] 'negative-argument)
799
800 (define-key global-map "\C-k" 'kill-line)
801 (define-key global-map "\C-w" 'kill-region)
802 (define-key esc-map "w" 'kill-ring-save)
803 (define-key esc-map "\C-w" 'append-next-kill)
804 (define-key global-map "\C-y" 'yank)
805 (define-key esc-map "y" 'yank-pop)
806
807 ;; (define-key ctl-x-map "a" 'append-to-buffer)
808
809 (define-key global-map "\C-@" 'set-mark-command)
810 ;; Many people are used to typing C-SPC and getting C-@.
811 (define-key global-map [?\C- ] 'set-mark-command)
812 (define-key ctl-x-map "\C-x" 'exchange-point-and-mark)
813 (define-key ctl-x-map "\C-@" 'pop-global-mark)
814 (define-key ctl-x-map [?\C- ] 'pop-global-mark)
815
816 (define-key global-map "\C-n" 'next-line)
817 (define-key global-map "\C-p" 'previous-line)
818 (define-key ctl-x-map "\C-n" 'set-goal-column)
819 (define-key global-map "\C-a" 'move-beginning-of-line)
820 (define-key global-map "\C-e" 'move-end-of-line)
821
822 (define-key ctl-x-map "`" 'next-error)
823
824 (defvar goto-map (make-sparse-keymap)
825 "Keymap for navigation commands.")
826 (define-key esc-map "g" goto-map)
827
828 (define-key goto-map "g" 'goto-line)
829 (define-key goto-map "\M-g" 'goto-line)
830 (define-key goto-map "n" 'next-error)
831 (define-key goto-map "\M-n" 'next-error)
832 (define-key goto-map "p" 'previous-error)
833 (define-key goto-map "\M-p" 'previous-error)
834
835 (defvar search-map (make-sparse-keymap)
836 "Keymap for search related commands.")
837 (define-key esc-map "s" search-map)
838
839 (define-key search-map "o" 'occur)
840 (define-key search-map "hr" 'highlight-regexp)
841 (define-key search-map "hp" 'highlight-phrase)
842 (define-key search-map "hl" 'highlight-lines-matching-regexp)
843 (define-key search-map "hu" 'unhighlight-regexp)
844 (define-key search-map "hf" 'hi-lock-find-patterns)
845 (define-key search-map "hw" 'hi-lock-write-interactive-patterns)
846
847 ;;(defun function-key-error ()
848 ;; (interactive)
849 ;; (error "That function key is not bound to anything"))
850
851 (define-key global-map [menu] 'execute-extended-command)
852 (define-key global-map [find] 'search-forward)
853
854 ;; Don't do this. We define <delete> in function-key-map instead.
855 ;(define-key global-map [delete] 'backward-delete-char)
856
857 ;; natural bindings for terminal keycaps --- defined in X keysym order
858 (define-key global-map [C-S-backspace] 'kill-whole-line)
859 (define-key global-map [home] 'move-beginning-of-line)
860 (define-key global-map [C-home] 'beginning-of-buffer)
861 (define-key global-map [M-home] 'beginning-of-buffer-other-window)
862 (define-key esc-map [home] 'beginning-of-buffer-other-window)
863 (define-key global-map [left] 'backward-char)
864 (define-key global-map [up] 'previous-line)
865 (define-key global-map [right] 'forward-char)
866 (define-key global-map [down] 'next-line)
867 (define-key global-map [prior] 'scroll-down)
868 (define-key global-map [next] 'scroll-up)
869 (define-key global-map [C-up] 'backward-paragraph)
870 (define-key global-map [C-down] 'forward-paragraph)
871 (define-key global-map [C-prior] 'scroll-right)
872 (put 'scroll-left 'disabled t)
873 (define-key global-map [C-next] 'scroll-left)
874 (define-key global-map [M-next] 'scroll-other-window)
875 (define-key esc-map [next] 'scroll-other-window)
876 (define-key global-map [M-prior] 'scroll-other-window-down)
877 (define-key esc-map [prior] 'scroll-other-window-down)
878 (define-key esc-map [?\C-\S-v] 'scroll-other-window-down)
879 (define-key global-map [end] 'move-end-of-line)
880 (define-key global-map [C-end] 'end-of-buffer)
881 (define-key global-map [M-end] 'end-of-buffer-other-window)
882 (define-key esc-map [end] 'end-of-buffer-other-window)
883 (define-key global-map [begin] 'beginning-of-buffer)
884 (define-key global-map [M-begin] 'beginning-of-buffer-other-window)
885 (define-key esc-map [begin] 'beginning-of-buffer-other-window)
886 ;; (define-key global-map [select] 'function-key-error)
887 ;; (define-key global-map [print] 'function-key-error)
888 (define-key global-map [execute] 'execute-extended-command)
889 (define-key global-map [insert] 'overwrite-mode)
890 (define-key global-map [C-insert] 'kill-ring-save)
891 (define-key global-map [S-insert] 'yank)
892 ;; `insertchar' is what term.c produces. Should we change term.c
893 ;; to produce `insert' instead?
894 (define-key global-map [insertchar] 'overwrite-mode)
895 (define-key global-map [C-insertchar] 'kill-ring-save)
896 (define-key global-map [S-insertchar] 'yank)
897 (define-key global-map [undo] 'undo)
898 (define-key global-map [redo] 'repeat-complex-command)
899 (define-key global-map [again] 'repeat-complex-command) ; Sun keyboard
900 (define-key global-map [open] 'find-file) ; Sun
901 ;; The following wouldn't work to interrupt running code since C-g is
902 ;; treated specially in the event loop.
903 ;; (define-key global-map [stop] 'keyboard-quit) ; Sun
904 ;; (define-key global-map [clearline] 'function-key-error)
905 (define-key global-map [insertline] 'open-line)
906 (define-key global-map [deleteline] 'kill-line)
907 (define-key global-map [deletechar] 'delete-char)
908 ;; (define-key global-map [backtab] 'function-key-error)
909 ;; (define-key global-map [f1] 'function-key-error)
910 ;; (define-key global-map [f2] 'function-key-error)
911 ;; (define-key global-map [f3] 'function-key-error)
912 ;; (define-key global-map [f4] 'function-key-error)
913 ;; (define-key global-map [f5] 'function-key-error)
914 ;; (define-key global-map [f6] 'function-key-error)
915 ;; (define-key global-map [f7] 'function-key-error)
916 ;; (define-key global-map [f8] 'function-key-error)
917 ;; (define-key global-map [f9] 'function-key-error)
918 ;; (define-key global-map [f10] 'function-key-error)
919 ;; (define-key global-map [f11] 'function-key-error)
920 ;; (define-key global-map [f12] 'function-key-error)
921 ;; (define-key global-map [f13] 'function-key-error)
922 ;; (define-key global-map [f14] 'function-key-error)
923 ;; (define-key global-map [f15] 'function-key-error)
924 ;; (define-key global-map [f16] 'function-key-error)
925 ;; (define-key global-map [f17] 'function-key-error)
926 ;; (define-key global-map [f18] 'function-key-error)
927 ;; (define-key global-map [f19] 'function-key-error)
928 ;; (define-key global-map [f20] 'function-key-error)
929 ;; (define-key global-map [f21] 'function-key-error)
930 ;; (define-key global-map [f22] 'function-key-error)
931 ;; (define-key global-map [f23] 'function-key-error)
932 ;; (define-key global-map [f24] 'function-key-error)
933 ;; (define-key global-map [f25] 'function-key-error)
934 ;; (define-key global-map [f26] 'function-key-error)
935 ;; (define-key global-map [f27] 'function-key-error)
936 ;; (define-key global-map [f28] 'function-key-error)
937 ;; (define-key global-map [f29] 'function-key-error)
938 ;; (define-key global-map [f30] 'function-key-error)
939 ;; (define-key global-map [f31] 'function-key-error)
940 ;; (define-key global-map [f32] 'function-key-error)
941 ;; (define-key global-map [f33] 'function-key-error)
942 ;; (define-key global-map [f34] 'function-key-error)
943 ;; (define-key global-map [f35] 'function-key-error)
944 ;; (define-key global-map [kp-backtab] 'function-key-error)
945 ;; (define-key global-map [kp-space] 'function-key-error)
946 ;; (define-key global-map [kp-tab] 'function-key-error)
947 ;; (define-key global-map [kp-enter] 'function-key-error)
948 ;; (define-key global-map [kp-f1] 'function-key-error)
949 ;; (define-key global-map [kp-f2] 'function-key-error)
950 ;; (define-key global-map [kp-f3] 'function-key-error)
951 ;; (define-key global-map [kp-f4] 'function-key-error)
952 ;; (define-key global-map [kp-multiply] 'function-key-error)
953 ;; (define-key global-map [kp-add] 'function-key-error)
954 ;; (define-key global-map [kp-separator] 'function-key-error)
955 ;; (define-key global-map [kp-subtract] 'function-key-error)
956 ;; (define-key global-map [kp-decimal] 'function-key-error)
957 ;; (define-key global-map [kp-divide] 'function-key-error)
958 ;; (define-key global-map [kp-0] 'function-key-error)
959 ;; (define-key global-map [kp-1] 'function-key-error)
960 ;; (define-key global-map [kp-2] 'function-key-error)
961 ;; (define-key global-map [kp-3] 'function-key-error)
962 ;; (define-key global-map [kp-4] 'function-key-error)
963 ;; (define-key global-map [kp-5] 'recenter)
964 ;; (define-key global-map [kp-6] 'function-key-error)
965 ;; (define-key global-map [kp-7] 'function-key-error)
966 ;; (define-key global-map [kp-8] 'function-key-error)
967 ;; (define-key global-map [kp-9] 'function-key-error)
968 ;; (define-key global-map [kp-equal] 'function-key-error)
969
970 ;; X11R6 distinguishes these keys from the non-kp keys.
971 ;; Make them behave like the non-kp keys unless otherwise bound.
972 (define-key function-key-map [kp-home] [home])
973 (define-key function-key-map [kp-left] [left])
974 (define-key function-key-map [kp-up] [up])
975 (define-key function-key-map [kp-right] [right])
976 (define-key function-key-map [kp-down] [down])
977 (define-key function-key-map [kp-prior] [prior])
978 (define-key function-key-map [kp-next] [next])
979 (define-key function-key-map [M-kp-next] [M-next])
980 (define-key function-key-map [kp-end] [end])
981 (define-key function-key-map [kp-begin] [begin])
982 (define-key function-key-map [kp-insert] [insert])
983 (define-key function-key-map [backspace] [?\C-?])
984 (define-key function-key-map [delete] [?\C-?])
985 (define-key function-key-map [kp-delete] [?\C-?])
986 (define-key function-key-map [S-kp-end] [S-end])
987 (define-key function-key-map [S-kp-down] [S-down])
988 (define-key function-key-map [S-kp-next] [S-next])
989 (define-key function-key-map [S-kp-left] [S-left])
990 (define-key function-key-map [S-kp-right] [S-right])
991 (define-key function-key-map [S-kp-home] [S-home])
992 (define-key function-key-map [S-kp-up] [S-up])
993 (define-key function-key-map [S-kp-prior] [S-prior])
994 (define-key function-key-map [C-S-kp-end] [C-S-end])
995 (define-key function-key-map [C-S-kp-down] [C-S-down])
996 (define-key function-key-map [C-S-kp-next] [C-S-next])
997 (define-key function-key-map [C-S-kp-left] [C-S-left])
998 (define-key function-key-map [C-S-kp-right] [C-S-right])
999 (define-key function-key-map [C-S-kp-home] [C-S-home])
1000 (define-key function-key-map [C-S-kp-up] [C-S-up])
1001 (define-key function-key-map [C-S-kp-prior] [C-S-prior])
1002 ;; Don't bind shifted keypad numeric keys, they reportedly
1003 ;; interfere with the feature of some keyboards to produce
1004 ;; numbers when NumLock is off.
1005 ;(define-key function-key-map [S-kp-1] [S-end])
1006 ;(define-key function-key-map [S-kp-2] [S-down])
1007 ;(define-key function-key-map [S-kp-3] [S-next])
1008 ;(define-key function-key-map [S-kp-4] [S-left])
1009 ;(define-key function-key-map [S-kp-6] [S-right])
1010 ;(define-key function-key-map [S-kp-7] [S-home])
1011 ;(define-key function-key-map [S-kp-8] [S-up])
1012 ;(define-key function-key-map [S-kp-9] [S-prior])
1013 (define-key function-key-map [C-S-kp-1] [C-S-end])
1014 (define-key function-key-map [C-S-kp-2] [C-S-down])
1015 (define-key function-key-map [C-S-kp-3] [C-S-next])
1016 (define-key function-key-map [C-S-kp-4] [C-S-left])
1017 (define-key function-key-map [C-S-kp-6] [C-S-right])
1018 (define-key function-key-map [C-S-kp-7] [C-S-home])
1019 (define-key function-key-map [C-S-kp-8] [C-S-up])
1020 (define-key function-key-map [C-S-kp-9] [C-S-prior])
1021
1022 (define-key global-map [mouse-movement] 'ignore)
1023
1024 (define-key global-map "\C-t" 'transpose-chars)
1025 (define-key esc-map "t" 'transpose-words)
1026 (define-key esc-map "\C-t" 'transpose-sexps)
1027 (define-key ctl-x-map "\C-t" 'transpose-lines)
1028
1029 (define-key esc-map ";" 'comment-dwim)
1030 (define-key esc-map "j" 'indent-new-comment-line)
1031 (define-key esc-map "\C-j" 'indent-new-comment-line)
1032 (define-key ctl-x-map ";" 'comment-set-column)
1033 (define-key ctl-x-map "f" 'set-fill-column)
1034 (define-key ctl-x-map "$" 'set-selective-display)
1035
1036 (define-key esc-map "@" 'mark-word)
1037 (define-key esc-map "f" 'forward-word)
1038 (define-key esc-map "b" 'backward-word)
1039 (define-key esc-map "d" 'kill-word)
1040 (define-key esc-map "\177" 'backward-kill-word)
1041
1042 (define-key esc-map "<" 'beginning-of-buffer)
1043 (define-key esc-map ">" 'end-of-buffer)
1044 (define-key ctl-x-map "h" 'mark-whole-buffer)
1045 (define-key esc-map "\\" 'delete-horizontal-space)
1046
1047 (defalias 'mode-specific-command-prefix (make-sparse-keymap))
1048 (defvar mode-specific-map (symbol-function 'mode-specific-command-prefix)
1049 "Keymap for characters following C-c.")
1050 (define-key global-map "\C-c" 'mode-specific-command-prefix)
1051
1052 (global-set-key [M-right] 'forward-word)
1053 (define-key esc-map [right] 'forward-word)
1054 (global-set-key [M-left] 'backward-word)
1055 (define-key esc-map [left] 'backward-word)
1056 ;; ilya@math.ohio-state.edu says these bindings are standard on PC editors.
1057 (global-set-key [C-right] 'forward-word)
1058 (global-set-key [C-left] 'backward-word)
1059 ;; This is not quite compatible, but at least is analogous
1060 (global-set-key [C-delete] 'kill-word)
1061 (global-set-key [C-backspace] 'backward-kill-word)
1062 ;; This is "move to the clipboard", or as close as we come.
1063 (global-set-key [S-delete] 'kill-region)
1064
1065 (global-set-key [C-M-left] 'backward-sexp)
1066 (define-key esc-map [C-left] 'backward-sexp)
1067 (global-set-key [C-M-right] 'forward-sexp)
1068 (define-key esc-map [C-right] 'forward-sexp)
1069 (global-set-key [C-M-up] 'backward-up-list)
1070 (define-key esc-map [C-up] 'backward-up-list)
1071 (global-set-key [C-M-down] 'down-list)
1072 (define-key esc-map [C-down] 'down-list)
1073 (global-set-key [C-M-home] 'beginning-of-defun)
1074 (define-key esc-map [C-home] 'beginning-of-defun)
1075 (global-set-key [C-M-end] 'end-of-defun)
1076 (define-key esc-map [C-end] 'end-of-defun)
1077
1078 (define-key esc-map "\C-f" 'forward-sexp)
1079 (define-key esc-map "\C-b" 'backward-sexp)
1080 (define-key esc-map "\C-u" 'backward-up-list)
1081 (define-key esc-map "\C-@" 'mark-sexp)
1082 (define-key esc-map [?\C-\ ] 'mark-sexp)
1083 (define-key esc-map "\C-d" 'down-list)
1084 (define-key esc-map "\C-k" 'kill-sexp)
1085 ;;; These are dangerous in various situations,
1086 ;;; so let's not encourage anyone to use them.
1087 ;;;(define-key global-map [C-M-delete] 'backward-kill-sexp)
1088 ;;;(define-key global-map [C-M-backspace] 'backward-kill-sexp)
1089 (define-key esc-map [C-delete] 'backward-kill-sexp)
1090 (define-key esc-map [C-backspace] 'backward-kill-sexp)
1091 (define-key esc-map "\C-n" 'forward-list)
1092 (define-key esc-map "\C-p" 'backward-list)
1093 (define-key esc-map "\C-a" 'beginning-of-defun)
1094 (define-key esc-map "\C-e" 'end-of-defun)
1095 (define-key esc-map "\C-h" 'mark-defun)
1096 (define-key ctl-x-map "nd" 'narrow-to-defun)
1097 (define-key esc-map "(" 'insert-parentheses)
1098 (define-key esc-map ")" 'move-past-close-and-reindent)
1099
1100 (define-key ctl-x-map "\C-e" 'eval-last-sexp)
1101
1102 (define-key ctl-x-map "m" 'compose-mail)
1103 (define-key ctl-x-4-map "m" 'compose-mail-other-window)
1104 (define-key ctl-x-5-map "m" 'compose-mail-other-frame)
1105 \f
1106
1107 (defvar ctl-x-r-map (make-sparse-keymap)
1108 "Keymap for subcommands of C-x r.")
1109 (define-key ctl-x-map "r" ctl-x-r-map)
1110
1111 (define-key esc-map "q" 'fill-paragraph)
1112 (define-key ctl-x-map "." 'set-fill-prefix)
1113 \f
1114 (define-key esc-map "{" 'backward-paragraph)
1115 (define-key esc-map "}" 'forward-paragraph)
1116 (define-key esc-map "h" 'mark-paragraph)
1117 (define-key esc-map "a" 'backward-sentence)
1118 (define-key esc-map "e" 'forward-sentence)
1119 (define-key esc-map "k" 'kill-sentence)
1120 (define-key ctl-x-map "\177" 'backward-kill-sentence)
1121
1122 (define-key ctl-x-map "[" 'backward-page)
1123 (define-key ctl-x-map "]" 'forward-page)
1124 (define-key ctl-x-map "\C-p" 'mark-page)
1125 (define-key ctl-x-map "l" 'count-lines-page)
1126 (define-key ctl-x-map "np" 'narrow-to-page)
1127 ;; (define-key ctl-x-map "p" 'narrow-to-page)
1128 \f
1129 (defvar abbrev-map (make-sparse-keymap)
1130 "Keymap for abbrev commands.")
1131 (define-key ctl-x-map "a" abbrev-map)
1132
1133 (define-key abbrev-map "l" 'add-mode-abbrev)
1134 (define-key abbrev-map "\C-a" 'add-mode-abbrev)
1135 (define-key abbrev-map "g" 'add-global-abbrev)
1136 (define-key abbrev-map "+" 'add-mode-abbrev)
1137 (define-key abbrev-map "ig" 'inverse-add-global-abbrev)
1138 (define-key abbrev-map "il" 'inverse-add-mode-abbrev)
1139 ;; (define-key abbrev-map "\C-h" 'inverse-add-global-abbrev)
1140 (define-key abbrev-map "-" 'inverse-add-global-abbrev)
1141 (define-key abbrev-map "e" 'expand-abbrev)
1142 (define-key abbrev-map "'" 'expand-abbrev)
1143 ;; (define-key ctl-x-map "\C-a" 'add-mode-abbrev)
1144 ;; (define-key ctl-x-map "\+" 'add-global-abbrev)
1145 ;; (define-key ctl-x-map "\C-h" 'inverse-add-mode-abbrev)
1146 ;; (define-key ctl-x-map "\-" 'inverse-add-global-abbrev)
1147 (define-key esc-map "'" 'abbrev-prefix-mark)
1148 (define-key ctl-x-map "'" 'expand-abbrev)
1149
1150 (define-key ctl-x-map "z" 'repeat)
1151
1152 (define-key esc-map "\C-l" 'reposition-window)
1153
1154 (define-key ctl-x-4-map "a" 'add-change-log-entry-other-window)
1155 (define-key ctl-x-4-map "c" 'clone-indirect-buffer-other-window)
1156
1157 ;; Signal handlers
1158 (define-key special-event-map [sigusr1] 'ignore)
1159 (define-key special-event-map [sigusr2] 'ignore)
1160
1161 ;; Don't look for autoload cookies in this file.
1162 ;; Local Variables:
1163 ;; no-update-autoloads: t
1164 ;; End:
1165
1166 ;; arch-tag: 23b5c7e6-e47b-49ed-8c6c-ed213c5fffe0
1167 ;;; bindings.el ends here