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