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