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