annotate lisp/bindings.el @ 90996:f55f9811f5d7

Merge from emacs--devo--0 Patches applied: * emacs--devo--0 (patch 824-831) - Update from CVS - Merge from emacs--rel--22 * emacs--rel--22 (patch 70-74) - Update from CVS Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-238
author Miles Bader <miles@gnu.org>
date Fri, 27 Jul 2007 10:52:18 +0000
parents 492971a3f31f b98604865ea0
children 539530fa389c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
38409
153f1b1f2efd Emacs lisp coding convention fixes.
Pavel Janík <Pavel@Janik.cz>
parents: 38300
diff changeset
1 ;;; bindings.el --- define standard key bindings and some variables
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
2
64762
41bb365f41c4 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 64091
diff changeset
3 ;; Copyright (C) 1985, 1986, 1987, 1992, 1993, 1994, 1995, 1996, 1999,
75347
e3694f1cb928 Add 2007 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 75139
diff changeset
4 ;; 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
6 ;; Maintainer: FSF
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
7 ;; Keywords: internal
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
8
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
9 ;; This file is part of GNU Emacs.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12 ;; it under the terms of the GNU General Public License as published by
78236
9355f9b7bbff Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents: 75800
diff changeset
13 ;; the Free Software Foundation; either version 3, or (at your option)
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14 ;; any later version.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16 ;; GNU Emacs is distributed in the hope that it will be useful,
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
19 ;; GNU General Public License for more details.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22 ;; along with GNU Emacs; see the file COPYING. If not, write to
64091
6fb026ad601f Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 63812
diff changeset
23 ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
6fb026ad601f Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 63812
diff changeset
24 ;; Boston, MA 02110-1301, USA.
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
25
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
26 ;;; Commentary:
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
27
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
28 ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
29 ;;; Special formatting conventions are used in this file!
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
30 ;;;
50354
e1b13a2263f8 (mode-line-major-mode-keymap): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 48916
diff changeset
31 ;;; A backslash-newline is used at the beginning of a documentation string
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
32 ;;; when that string should be stored in the file etc/DOCnnn, not in core.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
33 ;;;
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
34 ;;; Such strings read into Lisp as numbers (during the pure-loading phase).
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
35 ;;;
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
36 ;;; But you must obey certain rules to make sure the string is understood
25537
f329ed7625ee Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents: 25312
diff changeset
37 ;;; and goes into etc/DOCnnn properly.
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
38 ;;;
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
39 ;;; The doc string must appear in the standard place in a call to
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
40 ;;; defun, autoload, defvar or defconst. No Lisp macros are recognized.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41 ;;; The open-paren starting the definition must appear in column 0.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
42 ;;;
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
43 ;;; In defvar and defconst, there is an additional rule:
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
44 ;;; The double-quote that starts the string must be on the same
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
45 ;;; line as the defvar or defconst.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
46 ;;; !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
47
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
48 ;;; Code:
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
49
38755
2fa1afcedab9 (make-mode-line-mouse-map): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents: 38752
diff changeset
50 (defun make-mode-line-mouse-map (mouse function) "\
2fa1afcedab9 (make-mode-line-mouse-map): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents: 38752
diff changeset
51 Return a keymap with single entry for mouse key MOUSE on the mode line.
2fa1afcedab9 (make-mode-line-mouse-map): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents: 38752
diff changeset
52 MOUSE is defined to run function FUNCTION with no args in the buffer
27238
bfb9906d58b5 (make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents: 27151
diff changeset
53 corresponding to the mode line clicked."
bfb9906d58b5 (make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents: 27151
diff changeset
54 (let ((map (make-sparse-keymap)))
38755
2fa1afcedab9 (make-mode-line-mouse-map): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents: 38752
diff changeset
55 (define-key map (vector 'mode-line mouse) function)
27238
bfb9906d58b5 (make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents: 27151
diff changeset
56 map))
bfb9906d58b5 (make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents: 27151
diff changeset
57
33261
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
58
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
59 (defun mode-line-toggle-read-only (event)
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
60 "Like `toggle-read-only', for the mode-line."
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
61 (interactive "e")
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
62 (save-selected-window
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
63 (select-window (posn-window (event-start event)))
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
64 (toggle-read-only)
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
65 (force-mode-line-update)))
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
66
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
67
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
68 (defun mode-line-toggle-modified (event)
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
69 "Toggle the buffer-modified flag from the mode-line."
33585
f8f722137584 (mode-line-modified): Fix a typo.
Gerd Moellmann <gerd@gnu.org>
parents: 33261
diff changeset
70 (interactive "e")
33261
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
71 (save-selected-window
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
72 (select-window (posn-window (event-start event)))
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
73 (set-buffer-modified-p (not (buffer-modified-p)))
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
74 (force-mode-line-update)))
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
75
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
76
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
77 (defun mode-line-widen (event)
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
78 "Widen a buffer from the mode-line."
33585
f8f722137584 (mode-line-modified): Fix a typo.
Gerd Moellmann <gerd@gnu.org>
parents: 33261
diff changeset
79 (interactive "e")
33261
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
80 (save-selected-window
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
81 (select-window (posn-window (event-start event)))
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
82 (widen)
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
83 (force-mode-line-update)))
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
84
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
85
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
86 (defun mode-line-abbrev-mode (event)
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
87 "Turn off `abbrev-mode' from the mode-line."
33585
f8f722137584 (mode-line-modified): Fix a typo.
Gerd Moellmann <gerd@gnu.org>
parents: 33261
diff changeset
88 (interactive "e")
33261
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
89 (save-selected-window
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
90 (select-window (posn-window (event-start event)))
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
91 (abbrev-mode)
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
92 (force-mode-line-update)))
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
93
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
94
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
95 (defun mode-line-auto-fill-mode (event)
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
96 "Turn off `auto-fill-mode' from the mode-line."
33585
f8f722137584 (mode-line-modified): Fix a typo.
Gerd Moellmann <gerd@gnu.org>
parents: 33261
diff changeset
97 (interactive "e")
33261
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
98 (save-selected-window
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
99 (select-window (posn-window (event-start event)))
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
100 (auto-fill-mode)
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
101 (force-mode-line-update)))
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
102
a3294ec7a032 (mode-line-toggle-read-only)
Gerd Moellmann <gerd@gnu.org>
parents: 30946
diff changeset
103
27649
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
104 (defvar mode-line-input-method-map
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
105 (let ((map (make-sparse-keymap)))
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
106 (define-key map [mode-line mouse-2]
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
107 (lambda (e)
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
108 (interactive "e")
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
109 (save-selected-window
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
110 (select-window
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
111 (posn-window (event-start e)))
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
112 (toggle-input-method)
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
113 (force-mode-line-update))))
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
114 (define-key map [mode-line mouse-3]
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
115 (lambda (e)
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
116 (interactive "e")
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
117 (save-selected-window
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
118 (select-window
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
119 (posn-window (event-start e)))
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
120 (describe-current-input-method))))
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
121 (purecopy map)))
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
122
39037
e178a1e23722 (mode-line-coding-system-map): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 38903
diff changeset
123
e178a1e23722 (mode-line-coding-system-map): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 38903
diff changeset
124 (defvar mode-line-coding-system-map
e178a1e23722 (mode-line-coding-system-map): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 38903
diff changeset
125 (let ((map (make-sparse-keymap)))
65524
d4001c18bf64 (mode-line-eol-desc, mode-line-coding-system-map)
Nick Roberts <nickrob@snap.net.nz>
parents: 64762
diff changeset
126 (define-key map [mode-line mouse-1]
39037
e178a1e23722 (mode-line-coding-system-map): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 38903
diff changeset
127 (lambda (e)
e178a1e23722 (mode-line-coding-system-map): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 38903
diff changeset
128 (interactive "e")
e178a1e23722 (mode-line-coding-system-map): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 38903
diff changeset
129 (save-selected-window
e178a1e23722 (mode-line-coding-system-map): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 38903
diff changeset
130 (select-window (posn-window (event-start e)))
e178a1e23722 (mode-line-coding-system-map): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 38903
diff changeset
131 (when (and enable-multibyte-characters
e178a1e23722 (mode-line-coding-system-map): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 38903
diff changeset
132 buffer-file-coding-system)
e178a1e23722 (mode-line-coding-system-map): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 38903
diff changeset
133 (describe-coding-system buffer-file-coding-system)))))
e178a1e23722 (mode-line-coding-system-map): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 38903
diff changeset
134 (purecopy map))
e178a1e23722 (mode-line-coding-system-map): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 38903
diff changeset
135 "Local keymap for the coding-system part of the mode line.")
e178a1e23722 (mode-line-coding-system-map): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 38903
diff changeset
136
e178a1e23722 (mode-line-coding-system-map): New variable.
Gerd Moellmann <gerd@gnu.org>
parents: 38903
diff changeset
137
53551
fadd740b9db3 (mode-line-change-eol): Add EVENT parameter.
John Paul Wallington <jpw@pobox.com>
parents: 53463
diff changeset
138 (defun mode-line-change-eol (event)
48124
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
139 "Cycle through the various possible kinds of end-of-line styles."
53551
fadd740b9db3 (mode-line-change-eol): Add EVENT parameter.
John Paul Wallington <jpw@pobox.com>
parents: 53463
diff changeset
140 (interactive "e")
fadd740b9db3 (mode-line-change-eol): Add EVENT parameter.
John Paul Wallington <jpw@pobox.com>
parents: 53463
diff changeset
141 (save-selected-window
fadd740b9db3 (mode-line-change-eol): Add EVENT parameter.
John Paul Wallington <jpw@pobox.com>
parents: 53463
diff changeset
142 (select-window (posn-window (event-start event)))
fadd740b9db3 (mode-line-change-eol): Add EVENT parameter.
John Paul Wallington <jpw@pobox.com>
parents: 53463
diff changeset
143 (let ((eol (coding-system-eol-type buffer-file-coding-system)))
fadd740b9db3 (mode-line-change-eol): Add EVENT parameter.
John Paul Wallington <jpw@pobox.com>
parents: 53463
diff changeset
144 (set-buffer-file-coding-system
fadd740b9db3 (mode-line-change-eol): Add EVENT parameter.
John Paul Wallington <jpw@pobox.com>
parents: 53463
diff changeset
145 (cond ((eq eol 0) 'dos) ((eq eol 1) 'mac) (t 'unix))))))
48124
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
146
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
147 (defvar mode-line-eol-desc-cache nil)
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
148
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
149 (defun mode-line-eol-desc ()
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
150 (let* ((eol (coding-system-eol-type buffer-file-coding-system))
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
151 (mnemonic (coding-system-eol-type-mnemonic buffer-file-coding-system))
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
152 (desc (assq eol mode-line-eol-desc-cache)))
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
153 (if (and desc (eq (cadr desc) mnemonic))
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
154 (cddr desc)
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
155 (if desc (setq mode-line-eol-desc-cache nil)) ;Flush the cache if stale.
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
156 (setq desc
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
157 (propertize
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
158 mnemonic
65524
d4001c18bf64 (mode-line-eol-desc, mode-line-coding-system-map)
Nick Roberts <nickrob@snap.net.nz>
parents: 64762
diff changeset
159 'help-echo (format "%s end-of-line; mouse-1 to cycle"
48124
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
160 (if (eq eol 0) "Unix-style LF"
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
161 (if (eq eol 1) "Dos-style CRLF"
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
162 (if (eq eol 2) "Mac-style CR"
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
163 "Undecided"))))
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
164 'keymap
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
165 (eval-when-compile
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
166 (let ((map (make-sparse-keymap)))
65524
d4001c18bf64 (mode-line-eol-desc, mode-line-coding-system-map)
Nick Roberts <nickrob@snap.net.nz>
parents: 64762
diff changeset
167 (define-key map [mode-line mouse-1] 'mode-line-change-eol)
62651
8d965863dd8c Supprot mouse-face on mode-line.
Masatake YAMATO <jet@gyve.org>
parents: 61709
diff changeset
168 map))
8d965863dd8c Supprot mouse-face on mode-line.
Masatake YAMATO <jet@gyve.org>
parents: 61709
diff changeset
169 'mouse-face 'mode-line-highlight))
48124
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
170 (push (cons eol (cons mnemonic desc)) mode-line-eol-desc-cache)
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
171 desc)))
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
172
27238
bfb9906d58b5 (make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents: 27151
diff changeset
173 (defvar mode-line-mule-info
bfb9906d58b5 (make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents: 27151
diff changeset
174 `(""
27616
18b19e347f65 (mode-line-mule-info): Fix/extend last change.
Dave Love <fx@gnu.org>
parents: 27238
diff changeset
175 (current-input-method
44205
999568e4ea2c (mode-line-mule-info): Use :propertize, not :eval.
Richard M. Stallman <rms@gnu.org>
parents: 43942
diff changeset
176 (:propertize ("" current-input-method-title)
999568e4ea2c (mode-line-mule-info): Use :propertize, not :eval.
Richard M. Stallman <rms@gnu.org>
parents: 43942
diff changeset
177 help-echo (concat
999568e4ea2c (mode-line-mule-info): Use :propertize, not :eval.
Richard M. Stallman <rms@gnu.org>
parents: 43942
diff changeset
178 "Input method: "
999568e4ea2c (mode-line-mule-info): Use :propertize, not :eval.
Richard M. Stallman <rms@gnu.org>
parents: 43942
diff changeset
179 current-input-method
999568e4ea2c (mode-line-mule-info): Use :propertize, not :eval.
Richard M. Stallman <rms@gnu.org>
parents: 43942
diff changeset
180 ". mouse-2: disable, mouse-3: describe")
62651
8d965863dd8c Supprot mouse-face on mode-line.
Masatake YAMATO <jet@gyve.org>
parents: 61709
diff changeset
181 local-map ,mode-line-input-method-map
8d965863dd8c Supprot mouse-face on mode-line.
Masatake YAMATO <jet@gyve.org>
parents: 61709
diff changeset
182 mouse-face mode-line-highlight))
30309
a1ed8edb10b5 (mode-line-mule-info, mode-line-modified): help-echo
Dave Love <fx@gnu.org>
parents: 30113
diff changeset
183 ,(propertize
48124
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
184 "%z"
39840
68ca5f31c24d (completion-ignored-extensions): CL-related
Sam Steingold <sds@gnu.org>
parents: 39587
diff changeset
185 'help-echo
43942
fc8561532c81 (mode-line-mule-info): In computing help-echo prop,
Richard M. Stallman <rms@gnu.org>
parents: 43267
diff changeset
186 #'(lambda (window object point)
fc8561532c81 (mode-line-mule-info): In computing help-echo prop,
Richard M. Stallman <rms@gnu.org>
parents: 43267
diff changeset
187 (with-current-buffer (window-buffer window)
fc8561532c81 (mode-line-mule-info): In computing help-echo prop,
Richard M. Stallman <rms@gnu.org>
parents: 43267
diff changeset
188 ;; Don't show this tip if the coding system is nil,
fc8561532c81 (mode-line-mule-info): In computing help-echo prop,
Richard M. Stallman <rms@gnu.org>
parents: 43267
diff changeset
189 ;; it reads like a bug, and is not useful anyway.
fc8561532c81 (mode-line-mule-info): In computing help-echo prop,
Richard M. Stallman <rms@gnu.org>
parents: 43267
diff changeset
190 (when buffer-file-coding-system
fc8561532c81 (mode-line-mule-info): In computing help-echo prop,
Richard M. Stallman <rms@gnu.org>
parents: 43267
diff changeset
191 (if enable-multibyte-characters
fc8561532c81 (mode-line-mule-info): In computing help-echo prop,
Richard M. Stallman <rms@gnu.org>
parents: 43267
diff changeset
192 (concat (symbol-name buffer-file-coding-system)
65524
d4001c18bf64 (mode-line-eol-desc, mode-line-coding-system-map)
Nick Roberts <nickrob@snap.net.nz>
parents: 64762
diff changeset
193 " buffer; mouse-1: describe coding system")
43942
fc8561532c81 (mode-line-mule-info): In computing help-echo prop,
Richard M. Stallman <rms@gnu.org>
parents: 43267
diff changeset
194 (concat "Unibyte " (symbol-name buffer-file-coding-system)
fc8561532c81 (mode-line-mule-info): In computing help-echo prop,
Richard M. Stallman <rms@gnu.org>
parents: 43267
diff changeset
195 " buffer")))))
62651
8d965863dd8c Supprot mouse-face on mode-line.
Masatake YAMATO <jet@gyve.org>
parents: 61709
diff changeset
196 'mouse-face 'mode-line-highlight
48124
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
197 'local-map mode-line-coding-system-map)
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
198 (:eval (mode-line-eol-desc)))
18303
8d8d4aa12426 (mode-line-mule-info): Change style for showing
Kenichi Handa <handa@m17n.org>
parents: 18225
diff changeset
199 "Mode-line control for displaying information of multilingual environment.
8d8d4aa12426 (mode-line-mule-info): Change style for showing
Kenichi Handa <handa@m17n.org>
parents: 18225
diff changeset
200 Normally it displays current input method (if any activated) and
8d8d4aa12426 (mode-line-mule-info): Change style for showing
Kenichi Handa <handa@m17n.org>
parents: 18225
diff changeset
201 mnemonics of the following coding systems:
8d8d4aa12426 (mode-line-mule-info): Change style for showing
Kenichi Handa <handa@m17n.org>
parents: 18225
diff changeset
202 coding system for saving or writing the current buffer
8d8d4aa12426 (mode-line-mule-info): Change style for showing
Kenichi Handa <handa@m17n.org>
parents: 18225
diff changeset
203 coding system for keyboard input (if Emacs is running on terminal)
25282
e09cfa43a165 (mode-line-mule-info): Doc fix.
Dave Love <fx@gnu.org>
parents: 24985
diff changeset
204 coding system for terminal output (if Emacs is running on terminal)"
48124
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
205 ;; Currently not:
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
206 ;; coding system for decoding output of buffer process (if any)
110ec10bd1ea (mode-line-change-eol, mode-line-eol-desc-cache, mode-line-eol-desc): New.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 46991
diff changeset
207 ;; coding system for encoding text to send to buffer process (if any)."
25282
e09cfa43a165 (mode-line-mule-info): Doc fix.
Dave Love <fx@gnu.org>
parents: 24985
diff changeset
208 )
17058
8d2ff69b0c0a (mode-line-mule-info): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 16776
diff changeset
209
8d2ff69b0c0a (mode-line-mule-info): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 16776
diff changeset
210 (make-variable-buffer-local 'mode-line-mule-info)
8d2ff69b0c0a (mode-line-mule-info): New variable.
Karl Heuer <kwzh@gnu.org>
parents: 16776
diff changeset
211
40585
595d79a92c0e (mode-line-frame-identification): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents: 40533
diff changeset
212 (defvar mode-line-frame-identification '("-%F ")
595d79a92c0e (mode-line-frame-identification): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents: 40533
diff changeset
213 "Mode-line control to describe the current frame.")
17812
7fb38e7df85b (mode-line-mule-info): Delete the colon.
Richard M. Stallman <rms@gnu.org>
parents: 17793
diff changeset
214
25537
f329ed7625ee Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents: 25312
diff changeset
215 (defvar mode-line-process nil "\
f329ed7625ee Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents: 25312
diff changeset
216 Mode-line control for displaying info on process status.
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
217 Normally nil in most modes, since there is no process to display.")
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
218
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
219 (make-variable-buffer-local 'mode-line-process)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
220
27238
bfb9906d58b5 (make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents: 27151
diff changeset
221 (defvar mode-line-modified
bfb9906d58b5 (make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents: 27151
diff changeset
222 (list (propertize
30309
a1ed8edb10b5 (mode-line-mule-info, mode-line-modified): help-echo
Dave Love <fx@gnu.org>
parents: 30113
diff changeset
223 "%1*"
a1ed8edb10b5 (mode-line-mule-info, mode-line-modified): help-echo
Dave Love <fx@gnu.org>
parents: 30113
diff changeset
224 'help-echo (purecopy (lambda (window object point)
65524
d4001c18bf64 (mode-line-eol-desc, mode-line-coding-system-map)
Nick Roberts <nickrob@snap.net.nz>
parents: 64762
diff changeset
225 (format "%sead-only: mouse-1 toggles"
30309
a1ed8edb10b5 (mode-line-mule-info, mode-line-modified): help-echo
Dave Love <fx@gnu.org>
parents: 30113
diff changeset
226 (save-selected-window
a1ed8edb10b5 (mode-line-mule-info, mode-line-modified): help-echo
Dave Love <fx@gnu.org>
parents: 30113
diff changeset
227 (select-window window)
a1ed8edb10b5 (mode-line-mule-info, mode-line-modified): help-echo
Dave Love <fx@gnu.org>
parents: 30113
diff changeset
228 (if buffer-read-only
a1ed8edb10b5 (mode-line-mule-info, mode-line-modified): help-echo
Dave Love <fx@gnu.org>
parents: 30113
diff changeset
229 "R"
a1ed8edb10b5 (mode-line-mule-info, mode-line-modified): help-echo
Dave Love <fx@gnu.org>
parents: 30113
diff changeset
230 "Not r")))))
38755
2fa1afcedab9 (make-mode-line-mouse-map): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents: 38752
diff changeset
231 'local-map (purecopy (make-mode-line-mouse-map
65524
d4001c18bf64 (mode-line-eol-desc, mode-line-coding-system-map)
Nick Roberts <nickrob@snap.net.nz>
parents: 64762
diff changeset
232 'mouse-1
62651
8d965863dd8c Supprot mouse-face on mode-line.
Masatake YAMATO <jet@gyve.org>
parents: 61709
diff changeset
233 #'mode-line-toggle-read-only))
8d965863dd8c Supprot mouse-face on mode-line.
Masatake YAMATO <jet@gyve.org>
parents: 61709
diff changeset
234 'mouse-face 'mode-line-highlight)
30309
a1ed8edb10b5 (mode-line-mule-info, mode-line-modified): help-echo
Dave Love <fx@gnu.org>
parents: 30113
diff changeset
235 (propertize
a1ed8edb10b5 (mode-line-mule-info, mode-line-modified): help-echo
Dave Love <fx@gnu.org>
parents: 30113
diff changeset
236 "%1+"
a1ed8edb10b5 (mode-line-mule-info, mode-line-modified): help-echo
Dave Love <fx@gnu.org>
parents: 30113
diff changeset
237 'help-echo (purecopy (lambda (window object point)
65524
d4001c18bf64 (mode-line-eol-desc, mode-line-coding-system-map)
Nick Roberts <nickrob@snap.net.nz>
parents: 64762
diff changeset
238 (format "%sodified: mouse-1 toggles"
30309
a1ed8edb10b5 (mode-line-mule-info, mode-line-modified): help-echo
Dave Love <fx@gnu.org>
parents: 30113
diff changeset
239 (save-selected-window
a1ed8edb10b5 (mode-line-mule-info, mode-line-modified): help-echo
Dave Love <fx@gnu.org>
parents: 30113
diff changeset
240 (select-window window)
a1ed8edb10b5 (mode-line-mule-info, mode-line-modified): help-echo
Dave Love <fx@gnu.org>
parents: 30113
diff changeset
241 (if (buffer-modified-p)
a1ed8edb10b5 (mode-line-mule-info, mode-line-modified): help-echo
Dave Love <fx@gnu.org>
parents: 30113
diff changeset
242 "M"
a1ed8edb10b5 (mode-line-mule-info, mode-line-modified): help-echo
Dave Love <fx@gnu.org>
parents: 30113
diff changeset
243 "Not m")))))
38755
2fa1afcedab9 (make-mode-line-mouse-map): Renamed from
Gerd Moellmann <gerd@gnu.org>
parents: 38752
diff changeset
244 'local-map (purecopy (make-mode-line-mouse-map
65524
d4001c18bf64 (mode-line-eol-desc, mode-line-coding-system-map)
Nick Roberts <nickrob@snap.net.nz>
parents: 64762
diff changeset
245 'mouse-1 #'mode-line-toggle-modified))
62651
8d965863dd8c Supprot mouse-face on mode-line.
Masatake YAMATO <jet@gyve.org>
parents: 61709
diff changeset
246 'mouse-face 'mode-line-highlight))
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
247 "Mode-line control for displaying whether current buffer is modified.")
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
248
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
249 (make-variable-buffer-local 'mode-line-modified)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
250
82042
422bb10d6d88 (mode-line-remote): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents: 75800
diff changeset
251 (defvar mode-line-remote
422bb10d6d88 (mode-line-remote): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents: 75800
diff changeset
252 (list (propertize
422bb10d6d88 (mode-line-remote): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents: 75800
diff changeset
253 "%1R"
422bb10d6d88 (mode-line-remote): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents: 75800
diff changeset
254 'help-echo (purecopy (lambda (window object point)
422bb10d6d88 (mode-line-remote): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents: 75800
diff changeset
255 (format "%s"
422bb10d6d88 (mode-line-remote): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents: 75800
diff changeset
256 (save-selected-window
422bb10d6d88 (mode-line-remote): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents: 75800
diff changeset
257 (select-window window)
422bb10d6d88 (mode-line-remote): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents: 75800
diff changeset
258 (concat
422bb10d6d88 (mode-line-remote): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents: 75800
diff changeset
259 (if (file-remote-p default-directory)
422bb10d6d88 (mode-line-remote): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents: 75800
diff changeset
260 "Remote: "
422bb10d6d88 (mode-line-remote): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents: 75800
diff changeset
261 "Local: ")
422bb10d6d88 (mode-line-remote): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents: 75800
diff changeset
262 default-directory)))))))
422bb10d6d88 (mode-line-remote): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents: 75800
diff changeset
263 "Mode-line flag to show if default-directory for current buffer is remote.")
422bb10d6d88 (mode-line-remote): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents: 75800
diff changeset
264
422bb10d6d88 (mode-line-remote): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents: 75800
diff changeset
265 (make-variable-buffer-local 'mode-line-remote)
422bb10d6d88 (mode-line-remote): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents: 75800
diff changeset
266
40585
595d79a92c0e (mode-line-frame-identification): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents: 40533
diff changeset
267 ;; Actual initialization is below.
595d79a92c0e (mode-line-frame-identification): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents: 40533
diff changeset
268 (defvar mode-line-position nil
52629
af4a74ff079d (mode-line-position): Mention size indication in docstring.
Lute Kamstra <lute@gnu.org>
parents: 52465
diff changeset
269 "Mode-line control for displaying the position in the buffer.
af4a74ff079d (mode-line-position): Mention size indication in docstring.
Lute Kamstra <lute@gnu.org>
parents: 52465
diff changeset
270 Normally displays the buffer percentage and, optionally, the
af4a74ff079d (mode-line-position): Mention size indication in docstring.
Lute Kamstra <lute@gnu.org>
parents: 52465
diff changeset
271 buffer size, the line number and the column number.")
40585
595d79a92c0e (mode-line-frame-identification): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents: 40533
diff changeset
272
595d79a92c0e (mode-line-frame-identification): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents: 40533
diff changeset
273 (defvar mode-line-modes nil
595d79a92c0e (mode-line-frame-identification): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents: 40533
diff changeset
274 "Mode-line control for displaying major and minor modes.")
595d79a92c0e (mode-line-frame-identification): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents: 40533
diff changeset
275
53463
160b4f3af303 (completion-ignored-extensions): Add .pfsl.
John Paul Wallington <jpw@pobox.com>
parents: 52815
diff changeset
276 (defvar mode-line-major-mode-keymap
50565
cd863af50ea1 * help.el (describe-minor-mode): New function implementation.
Masatake YAMATO <jet@gyve.org>
parents: 50554
diff changeset
277 (let ((map (make-sparse-keymap)))
70288
45b7cad845ee (mode-line-major-mode-keymap): Undo last change.
Richard M. Stallman <rms@gnu.org>
parents: 70286
diff changeset
278 (define-key map [mode-line down-mouse-1] 'mouse-major-mode-menu)
50565
cd863af50ea1 * help.el (describe-minor-mode): New function implementation.
Masatake YAMATO <jet@gyve.org>
parents: 50554
diff changeset
279 (define-key map [mode-line mouse-2] 'describe-mode)
70288
45b7cad845ee (mode-line-major-mode-keymap): Undo last change.
Richard M. Stallman <rms@gnu.org>
parents: 70286
diff changeset
280 (define-key map [mode-line down-mouse-3] 'mode-line-mode-menu-1)
50565
cd863af50ea1 * help.el (describe-minor-mode): New function implementation.
Masatake YAMATO <jet@gyve.org>
parents: 50554
diff changeset
281 map) "\
50354
e1b13a2263f8 (mode-line-major-mode-keymap): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 48916
diff changeset
282 Keymap to display on major mode.")
e1b13a2263f8 (mode-line-major-mode-keymap): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 48916
diff changeset
283
53463
160b4f3af303 (completion-ignored-extensions): Add .pfsl.
John Paul Wallington <jpw@pobox.com>
parents: 52815
diff changeset
284 (defvar mode-line-minor-mode-keymap
50565
cd863af50ea1 * help.el (describe-minor-mode): New function implementation.
Masatake YAMATO <jet@gyve.org>
parents: 50554
diff changeset
285 (let ((map (make-sparse-keymap)))
cd863af50ea1 * help.el (describe-minor-mode): New function implementation.
Masatake YAMATO <jet@gyve.org>
parents: 50554
diff changeset
286 (define-key map [mode-line mouse-2] 'mode-line-minor-mode-help)
cd863af50ea1 * help.el (describe-minor-mode): New function implementation.
Masatake YAMATO <jet@gyve.org>
parents: 50554
diff changeset
287 (define-key map [mode-line down-mouse-3] 'mode-line-mode-menu-1)
cd863af50ea1 * help.el (describe-minor-mode): New function implementation.
Masatake YAMATO <jet@gyve.org>
parents: 50554
diff changeset
288 (define-key map [header-line down-mouse-3] 'mode-line-mode-menu-1)
cd863af50ea1 * help.el (describe-minor-mode): New function implementation.
Masatake YAMATO <jet@gyve.org>
parents: 50554
diff changeset
289 map) "\
50354
e1b13a2263f8 (mode-line-major-mode-keymap): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 48916
diff changeset
290 Keymap to display on minor modes.")
e1b13a2263f8 (mode-line-major-mode-keymap): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 48916
diff changeset
291
40585
595d79a92c0e (mode-line-frame-identification): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents: 40533
diff changeset
292 (let* ((help-echo
595d79a92c0e (mode-line-frame-identification): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents: 40533
diff changeset
293 ;; The multi-line message doesn't work terribly well on the
595d79a92c0e (mode-line-frame-identification): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents: 40533
diff changeset
294 ;; bottom mode line... Better ideas?
41172
138cb29c858e (mode-line-mode-name): Only put the help-echo property
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 40585
diff changeset
295 ;; "\
138cb29c858e (mode-line-mode-name): Only put the help-echo property
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 40585
diff changeset
296 ;; mouse-1: select window, mouse-2: delete others, mouse-3: delete,
138cb29c858e (mode-line-mode-name): Only put the help-echo property
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 40585
diff changeset
297 ;; drag-mouse-1: resize, C-mouse-2: split horizontally"
73774
76374993905a Shorten and clarify usual mode line mouse help string.
Richard M. Stallman <rms@gnu.org>
parents: 73493
diff changeset
298 "mouse-1: select (drag to resize), mouse-2 = C-x 1, mouse-3 = C-x 0")
72291
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
299 (dashes (propertize "--" 'help-echo help-echo))
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
300 (standard-mode-line-format
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
301 (list
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
302 "%e"
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
303 (propertize "-" 'help-echo help-echo)
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
304 'mode-line-mule-info
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
305 'mode-line-modified
82042
422bb10d6d88 (mode-line-remote): New variable.
Nick Roberts <nickrob@snap.net.nz>
parents: 75800
diff changeset
306 'mode-line-remote
72291
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
307 'mode-line-frame-identification
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
308 'mode-line-buffer-identification
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
309 (propertize " " 'help-echo help-echo)
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
310 'mode-line-position
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
311 '(vc-mode vc-mode)
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
312 (propertize " " 'help-echo help-echo)
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
313 'mode-line-modes
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
314 `(which-func-mode ("" which-func-format ,dashes))
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
315 `(global-mode-string (,dashes global-mode-string))
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
316 (propertize "-%-" 'help-echo help-echo)))
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
317 (standard-mode-line-modes
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
318 (list
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
319 (propertize "%[(" 'help-echo help-echo)
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
320 `(:propertize ("" mode-name)
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
321 help-echo "mouse-1: major mode, mouse-2: major mode help, mouse-3: toggle minor modes"
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
322 mouse-face mode-line-highlight
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
323 local-map ,mode-line-major-mode-keymap)
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
324 '("" mode-line-process)
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
325 `(:propertize ("" minor-mode-alist)
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
326 mouse-face mode-line-highlight
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
327 help-echo "mouse-2: minor mode help, mouse-3: toggle minor modes"
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
328 local-map ,mode-line-minor-mode-keymap)
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
329 (propertize "%n" 'help-echo "mouse-2: widen"
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
330 'mouse-face 'mode-line-highlight
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
331 'local-map (make-mode-line-mouse-map
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
332 'mouse-2 #'mode-line-widen))
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
333 (propertize ")%]--" 'help-echo help-echo)))
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
334 (standard-mode-line-position
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
335 `((-3 ,(propertize "%p" 'help-echo help-echo))
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
336 (size-indication-mode
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
337 (8 ,(propertize " of %I" 'help-echo help-echo)))
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
338 (line-number-mode
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
339 ((column-number-mode
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
340 (10 ,(propertize " (%l,%c)" 'help-echo help-echo))
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
341 (6 ,(propertize " L%l" 'help-echo help-echo))))
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
342 ((column-number-mode
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
343 (5 ,(propertize " C%c" 'help-echo help-echo))))))))
40585
595d79a92c0e (mode-line-frame-identification): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents: 40533
diff changeset
344
72291
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
345 (setq-default mode-line-format standard-mode-line-format)
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
346 (put 'mode-line-format 'standard-value
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
347 (list `(quote ,standard-mode-line-format)))
40585
595d79a92c0e (mode-line-frame-identification): Add doc string.
Richard M. Stallman <rms@gnu.org>
parents: 40533
diff changeset
348
72291
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
349 (setq-default mode-line-modes standard-mode-line-modes)
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
350 (put 'mode-line-modes 'standard-value
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
351 (list `(quote ,standard-mode-line-modes)))
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
352
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
353 (setq-default mode-line-position standard-mode-line-position)
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
354 (put 'mode-line-position 'standard-value
6425e3ef6472 * bindings.el: Give mode-line-format, mode-line-modes, and
Chong Yidong <cyd@stupidchicken.com>
parents: 72241
diff changeset
355 (list `(quote ,standard-mode-line-position))))
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
356
72798
6e061fdbf037 (mode-line-buffer-identification-keymap):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 72291
diff changeset
357 (defvar mode-line-buffer-identification-keymap
6e061fdbf037 (mode-line-buffer-identification-keymap):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 72291
diff changeset
358 ;; Add menu of buffer operations to the buffer identification part
6e061fdbf037 (mode-line-buffer-identification-keymap):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 72291
diff changeset
359 ;; of the mode line.or header line.
6e061fdbf037 (mode-line-buffer-identification-keymap):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 72291
diff changeset
360 (let ((map (make-sparse-keymap)))
6e061fdbf037 (mode-line-buffer-identification-keymap):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 72291
diff changeset
361 ;; Bind down- events so that the global keymap won't ``shine
6e061fdbf037 (mode-line-buffer-identification-keymap):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 72291
diff changeset
362 ;; through''.
6e061fdbf037 (mode-line-buffer-identification-keymap):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 72291
diff changeset
363 (define-key map [mode-line mouse-1] 'mode-line-previous-buffer)
6e061fdbf037 (mode-line-buffer-identification-keymap):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 72291
diff changeset
364 (define-key map [header-line down-mouse-1] 'ignore)
6e061fdbf037 (mode-line-buffer-identification-keymap):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 72291
diff changeset
365 (define-key map [header-line mouse-1] 'mode-line-previous-buffer)
6e061fdbf037 (mode-line-buffer-identification-keymap):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 72291
diff changeset
366 (define-key map [mode-line mouse-3] 'mode-line-next-buffer)
6e061fdbf037 (mode-line-buffer-identification-keymap):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 72291
diff changeset
367 (define-key map [header-line down-mouse-3] 'ignore)
6e061fdbf037 (mode-line-buffer-identification-keymap):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 72291
diff changeset
368 (define-key map [header-line mouse-3] 'mode-line-next-buffer)
6e061fdbf037 (mode-line-buffer-identification-keymap):
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 72291
diff changeset
369 map) "\
25537
f329ed7625ee Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents: 25312
diff changeset
370 Keymap for what is displayed by `mode-line-buffer-identification'.")
24985
e4f2a5d1dc28 (make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents: 24606
diff changeset
371
72174
a2038efe61ed (mode-line-frame-identification)
Richard M. Stallman <rms@gnu.org>
parents: 72000
diff changeset
372 (defun propertized-buffer-identification (fmt)
a2038efe61ed (mode-line-frame-identification)
Richard M. Stallman <rms@gnu.org>
parents: 72000
diff changeset
373 "Return a list suitable for `mode-line-buffer-identification'.
a2038efe61ed (mode-line-frame-identification)
Richard M. Stallman <rms@gnu.org>
parents: 72000
diff changeset
374 FMT is a format specifier such as \"%12b\". This function adds
a2038efe61ed (mode-line-frame-identification)
Richard M. Stallman <rms@gnu.org>
parents: 72000
diff changeset
375 text properties for face, help-echo, and local-map to it."
a2038efe61ed (mode-line-frame-identification)
Richard M. Stallman <rms@gnu.org>
parents: 72000
diff changeset
376 (list (propertize fmt
a2038efe61ed (mode-line-frame-identification)
Richard M. Stallman <rms@gnu.org>
parents: 72000
diff changeset
377 'face 'mode-line-buffer-id
a2038efe61ed (mode-line-frame-identification)
Richard M. Stallman <rms@gnu.org>
parents: 72000
diff changeset
378 'help-echo
a2038efe61ed (mode-line-frame-identification)
Richard M. Stallman <rms@gnu.org>
parents: 72000
diff changeset
379 (purecopy "mouse-1: previous buffer, mouse-3: next buffer")
a2038efe61ed (mode-line-frame-identification)
Richard M. Stallman <rms@gnu.org>
parents: 72000
diff changeset
380 'mouse-face 'mode-line-highlight
a2038efe61ed (mode-line-frame-identification)
Richard M. Stallman <rms@gnu.org>
parents: 72000
diff changeset
381 'local-map mode-line-buffer-identification-keymap)))
a2038efe61ed (mode-line-frame-identification)
Richard M. Stallman <rms@gnu.org>
parents: 72000
diff changeset
382
a2038efe61ed (mode-line-frame-identification)
Richard M. Stallman <rms@gnu.org>
parents: 72000
diff changeset
383 (defvar mode-line-buffer-identification (propertized-buffer-identification "%12b") "\
a2038efe61ed (mode-line-frame-identification)
Richard M. Stallman <rms@gnu.org>
parents: 72000
diff changeset
384 Mode-line control for identifying the buffer being displayed.
a2038efe61ed (mode-line-frame-identification)
Richard M. Stallman <rms@gnu.org>
parents: 72000
diff changeset
385 Its default value is (\"%12b\") with some text properties added.
a2038efe61ed (mode-line-frame-identification)
Richard M. Stallman <rms@gnu.org>
parents: 72000
diff changeset
386 Major modes that edit things other than ordinary files may change this
a2038efe61ed (mode-line-frame-identification)
Richard M. Stallman <rms@gnu.org>
parents: 72000
diff changeset
387 \(e.g. Info, Dired,...)")
a2038efe61ed (mode-line-frame-identification)
Richard M. Stallman <rms@gnu.org>
parents: 72000
diff changeset
388
a2038efe61ed (mode-line-frame-identification)
Richard M. Stallman <rms@gnu.org>
parents: 72000
diff changeset
389 (make-variable-buffer-local 'mode-line-buffer-identification)
a2038efe61ed (mode-line-frame-identification)
Richard M. Stallman <rms@gnu.org>
parents: 72000
diff changeset
390
41457
60f633593ee0 (last-buffer, unbury-buffer): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 41280
diff changeset
391 (defun unbury-buffer () "\
60f633593ee0 (last-buffer, unbury-buffer): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents: 41280
diff changeset
392 Switch to the last buffer in the buffer list."
41280
77b1386373e0 (last-buffer, unbury-buffer): New functions.
Sam Steingold <sds@gnu.org>
parents: 41210
diff changeset
393 (interactive)
77b1386373e0 (last-buffer, unbury-buffer): New functions.
Sam Steingold <sds@gnu.org>
parents: 41210
diff changeset
394 (switch-to-buffer (last-buffer)))
77b1386373e0 (last-buffer, unbury-buffer): New functions.
Sam Steingold <sds@gnu.org>
parents: 41210
diff changeset
395
38903
5653fe43d6fb (mode-line-unbury-buffer): Add EVENT parameter.
Gerd Moellmann <gerd@gnu.org>
parents: 38757
diff changeset
396 (defun mode-line-unbury-buffer (event) "\
41280
77b1386373e0 (last-buffer, unbury-buffer): New functions.
Sam Steingold <sds@gnu.org>
parents: 41210
diff changeset
397 Call `unbury-buffer' in this window."
38903
5653fe43d6fb (mode-line-unbury-buffer): Add EVENT parameter.
Gerd Moellmann <gerd@gnu.org>
parents: 38757
diff changeset
398 (interactive "e")
5653fe43d6fb (mode-line-unbury-buffer): Add EVENT parameter.
Gerd Moellmann <gerd@gnu.org>
parents: 38757
diff changeset
399 (save-selected-window
5653fe43d6fb (mode-line-unbury-buffer): Add EVENT parameter.
Gerd Moellmann <gerd@gnu.org>
parents: 38757
diff changeset
400 (select-window (posn-window (event-start event)))
41280
77b1386373e0 (last-buffer, unbury-buffer): New functions.
Sam Steingold <sds@gnu.org>
parents: 41210
diff changeset
401 (unbury-buffer)))
38903
5653fe43d6fb (mode-line-unbury-buffer): Add EVENT parameter.
Gerd Moellmann <gerd@gnu.org>
parents: 38757
diff changeset
402
5653fe43d6fb (mode-line-unbury-buffer): Add EVENT parameter.
Gerd Moellmann <gerd@gnu.org>
parents: 38757
diff changeset
403 (defun mode-line-bury-buffer (event) "\
41474
99d79f9219a5 doc tweak
Sam Steingold <sds@gnu.org>
parents: 41457
diff changeset
404 Like `bury-buffer', but temporarily select EVENT's window."
38903
5653fe43d6fb (mode-line-unbury-buffer): Add EVENT parameter.
Gerd Moellmann <gerd@gnu.org>
parents: 38757
diff changeset
405 (interactive "e")
5653fe43d6fb (mode-line-unbury-buffer): Add EVENT parameter.
Gerd Moellmann <gerd@gnu.org>
parents: 38757
diff changeset
406 (save-selected-window
5653fe43d6fb (mode-line-unbury-buffer): Add EVENT parameter.
Gerd Moellmann <gerd@gnu.org>
parents: 38757
diff changeset
407 (select-window (posn-window (event-start event)))
5653fe43d6fb (mode-line-unbury-buffer): Add EVENT parameter.
Gerd Moellmann <gerd@gnu.org>
parents: 38757
diff changeset
408 (bury-buffer)))
24985
e4f2a5d1dc28 (make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents: 24606
diff changeset
409
25537
f329ed7625ee Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents: 25312
diff changeset
410 (defun mode-line-other-buffer () "\
f329ed7625ee Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents: 25312
diff changeset
411 Switch to the most recently selected buffer other than the current one."
24985
e4f2a5d1dc28 (make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents: 24606
diff changeset
412 (interactive)
e4f2a5d1dc28 (make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents: 24606
diff changeset
413 (switch-to-buffer (other-buffer)))
e4f2a5d1dc28 (make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents: 24606
diff changeset
414
68215
d300de715fe6 (propertized-buffer-identification): Use face
Juri Linkov <juri@jurta.org>
parents: 67602
diff changeset
415 (defun mode-line-next-buffer (event)
d300de715fe6 (propertized-buffer-identification): Use face
Juri Linkov <juri@jurta.org>
parents: 67602
diff changeset
416 "Like `next-buffer', but temporarily select EVENT's window."
d300de715fe6 (propertized-buffer-identification): Use face
Juri Linkov <juri@jurta.org>
parents: 67602
diff changeset
417 (interactive "e")
d300de715fe6 (propertized-buffer-identification): Use face
Juri Linkov <juri@jurta.org>
parents: 67602
diff changeset
418 (save-selected-window
d300de715fe6 (propertized-buffer-identification): Use face
Juri Linkov <juri@jurta.org>
parents: 67602
diff changeset
419 (select-window (posn-window (event-start event)))
d300de715fe6 (propertized-buffer-identification): Use face
Juri Linkov <juri@jurta.org>
parents: 67602
diff changeset
420 (next-buffer)))
d300de715fe6 (propertized-buffer-identification): Use face
Juri Linkov <juri@jurta.org>
parents: 67602
diff changeset
421
d300de715fe6 (propertized-buffer-identification): Use face
Juri Linkov <juri@jurta.org>
parents: 67602
diff changeset
422 (defun mode-line-previous-buffer (event)
d300de715fe6 (propertized-buffer-identification): Use face
Juri Linkov <juri@jurta.org>
parents: 67602
diff changeset
423 "Like `previous-buffer', but temporarily select EVENT's window."
d300de715fe6 (propertized-buffer-identification): Use face
Juri Linkov <juri@jurta.org>
parents: 67602
diff changeset
424 (interactive "e")
d300de715fe6 (propertized-buffer-identification): Use face
Juri Linkov <juri@jurta.org>
parents: 67602
diff changeset
425 (save-selected-window
d300de715fe6 (propertized-buffer-identification): Use face
Juri Linkov <juri@jurta.org>
parents: 67602
diff changeset
426 (select-window (posn-window (event-start event)))
d300de715fe6 (propertized-buffer-identification): Use face
Juri Linkov <juri@jurta.org>
parents: 67602
diff changeset
427 (previous-buffer)))
d300de715fe6 (propertized-buffer-identification): Use face
Juri Linkov <juri@jurta.org>
parents: 67602
diff changeset
428
27649
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
429 (defvar mode-line-mode-menu (make-sparse-keymap "Minor Modes") "\
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
430 Menu of mode operations in the mode line.")
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
431
24985
e4f2a5d1dc28 (make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents: 24606
diff changeset
432 (defun mode-line-mode-menu-1 (event)
e4f2a5d1dc28 (make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents: 24606
diff changeset
433 (interactive "e")
e4f2a5d1dc28 (make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents: 24606
diff changeset
434 (save-selected-window
e4f2a5d1dc28 (make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents: 24606
diff changeset
435 (select-window (posn-window (event-start event)))
e4f2a5d1dc28 (make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents: 24606
diff changeset
436 (let* ((selection (mode-line-mode-menu event))
e4f2a5d1dc28 (make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents: 24606
diff changeset
437 (binding (and selection (lookup-key mode-line-mode-menu
e4f2a5d1dc28 (make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents: 24606
diff changeset
438 (vector (car selection))))))
e4f2a5d1dc28 (make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents: 24606
diff changeset
439 (if binding
e4f2a5d1dc28 (make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents: 24606
diff changeset
440 (call-interactively binding)))))
e4f2a5d1dc28 (make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents: 24606
diff changeset
441
25898
a39db912a76f (bound-and-true-p): New macro.
Dave Love <fx@gnu.org>
parents: 25629
diff changeset
442 (defmacro bound-and-true-p (var)
a39db912a76f (bound-and-true-p): New macro.
Dave Love <fx@gnu.org>
parents: 25629
diff changeset
443 "Return the value of symbol VAR if it is bound, else nil."
26052
b6e77fbb182b (completion-ignored-extensions): Added ".sparcf"
Gerd Moellmann <gerd@gnu.org>
parents: 25898
diff changeset
444 `(and (boundp (quote ,var)) ,var))
25898
a39db912a76f (bound-and-true-p): New macro.
Dave Love <fx@gnu.org>
parents: 25629
diff changeset
445
73493
334001e04b9b (mode-line-mode-menu): Remove bindings for global
Nick Roberts <nickrob@snap.net.nz>
parents: 73475
diff changeset
446 ;; Use mode-line-mode-menu for local minor-modes only.
334001e04b9b (mode-line-mode-menu): Remove bindings for global
Nick Roberts <nickrob@snap.net.nz>
parents: 73475
diff changeset
447 ;; Global ones can go on the menubar (Options --> Show/Hide).
34337
b7ae6305e6eb (mode-line-mode-menu): Reverse the order
Gerd Moellmann <gerd@gnu.org>
parents: 33585
diff changeset
448 (define-key mode-line-mode-menu [overwrite-mode]
43267
a98ecf783878 (mode-line-minor-mode-keymap): Definition moved up.
Richard M. Stallman <rms@gnu.org>
parents: 42911
diff changeset
449 `(menu-item ,(purecopy "Overwrite (Ovwrt)") overwrite-mode
34337
b7ae6305e6eb (mode-line-mode-menu): Reverse the order
Gerd Moellmann <gerd@gnu.org>
parents: 33585
diff changeset
450 :button (:toggle . overwrite-mode)))
b7ae6305e6eb (mode-line-mode-menu): Reverse the order
Gerd Moellmann <gerd@gnu.org>
parents: 33585
diff changeset
451 (define-key mode-line-mode-menu [outline-minor-mode]
43267
a98ecf783878 (mode-line-minor-mode-keymap): Definition moved up.
Richard M. Stallman <rms@gnu.org>
parents: 42911
diff changeset
452 `(menu-item ,(purecopy "Outline (Outl)") outline-minor-mode
34337
b7ae6305e6eb (mode-line-mode-menu): Reverse the order
Gerd Moellmann <gerd@gnu.org>
parents: 33585
diff changeset
453 :button (:toggle . (bound-and-true-p outline-minor-mode))))
b7ae6305e6eb (mode-line-mode-menu): Reverse the order
Gerd Moellmann <gerd@gnu.org>
parents: 33585
diff changeset
454 (define-key mode-line-mode-menu [highlight-changes-mode]
43267
a98ecf783878 (mode-line-minor-mode-keymap): Definition moved up.
Richard M. Stallman <rms@gnu.org>
parents: 42911
diff changeset
455 `(menu-item ,(purecopy "Highlight changes (Chg)") highlight-changes-mode
59600
26b237e765bf (mode-line-mode-menu): Use bound-and-true-p for all the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58942
diff changeset
456 :button (:toggle . (bound-and-true-p highlight-changes-mode))))
56416
5b6d3a196c92 (mode-line-mode-menu): Fix alphabetical ordering and add auto-revert-tail-mode.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 56049
diff changeset
457 (define-key mode-line-mode-menu [hide-ifdef-mode]
5b6d3a196c92 (mode-line-mode-menu): Fix alphabetical ordering and add auto-revert-tail-mode.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 56049
diff changeset
458 `(menu-item ,(purecopy "Hide ifdef (Ifdef)") hide-ifdef-mode
5b6d3a196c92 (mode-line-mode-menu): Fix alphabetical ordering and add auto-revert-tail-mode.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 56049
diff changeset
459 :button (:toggle . (bound-and-true-p hide-ifdef-mode))))
34339
b00a4ef86bb4 (mode-line-mode-menu): Add glasses-mode.
Gerd Moellmann <gerd@gnu.org>
parents: 34337
diff changeset
460 (define-key mode-line-mode-menu [glasses-mode]
43267
a98ecf783878 (mode-line-minor-mode-keymap): Definition moved up.
Richard M. Stallman <rms@gnu.org>
parents: 42911
diff changeset
461 `(menu-item ,(purecopy "Glasses (o^o)") glasses-mode
36882
595b423a9b3f (mode-line-mode-menu): `glasses-mode' might be unbound.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 36806
diff changeset
462 :button (:toggle . (bound-and-true-p glasses-mode))))
34337
b7ae6305e6eb (mode-line-mode-menu): Reverse the order
Gerd Moellmann <gerd@gnu.org>
parents: 33585
diff changeset
463 (define-key mode-line-mode-menu [font-lock-mode]
44623
29ce36db46de (mode-line-mode-menu): Update names to reflect latest changes.
Pavel Janík <Pavel@Janik.cz>
parents: 44205
diff changeset
464 `(menu-item ,(purecopy "Font Lock") font-lock-mode
34337
b7ae6305e6eb (mode-line-mode-menu): Reverse the order
Gerd Moellmann <gerd@gnu.org>
parents: 33585
diff changeset
465 :button (:toggle . font-lock-mode)))
27238
bfb9906d58b5 (make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents: 27151
diff changeset
466 (define-key mode-line-mode-menu [flyspell-mode]
43267
a98ecf783878 (mode-line-minor-mode-keymap): Definition moved up.
Richard M. Stallman <rms@gnu.org>
parents: 42911
diff changeset
467 `(menu-item ,(purecopy "Flyspell (Fly)") flyspell-mode
27238
bfb9906d58b5 (make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents: 27151
diff changeset
468 :button (:toggle . (bound-and-true-p flyspell-mode))))
56416
5b6d3a196c92 (mode-line-mode-menu): Fix alphabetical ordering and add auto-revert-tail-mode.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 56049
diff changeset
469 (define-key mode-line-mode-menu [auto-revert-tail-mode]
5b6d3a196c92 (mode-line-mode-menu): Fix alphabetical ordering and add auto-revert-tail-mode.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 56049
diff changeset
470 `(menu-item ,(purecopy "Auto revert tail (Tail)") auto-revert-tail-mode
73453
c4f0807660f6 (mode-line-mode-menu): Disable auto-revert-tail-mode
Nick Roberts <nickrob@snap.net.nz>
parents: 73050
diff changeset
471 :enable (buffer-file-name)
59600
26b237e765bf (mode-line-mode-menu): Use bound-and-true-p for all the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58942
diff changeset
472 :button (:toggle . (bound-and-true-p auto-revert-tail-mode))))
34337
b7ae6305e6eb (mode-line-mode-menu): Reverse the order
Gerd Moellmann <gerd@gnu.org>
parents: 33585
diff changeset
473 (define-key mode-line-mode-menu [auto-revert-mode]
43267
a98ecf783878 (mode-line-minor-mode-keymap): Definition moved up.
Richard M. Stallman <rms@gnu.org>
parents: 42911
diff changeset
474 `(menu-item ,(purecopy "Auto revert (ARev)") auto-revert-mode
59600
26b237e765bf (mode-line-mode-menu): Use bound-and-true-p for all the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58942
diff changeset
475 :button (:toggle . (bound-and-true-p auto-revert-mode))))
56416
5b6d3a196c92 (mode-line-mode-menu): Fix alphabetical ordering and add auto-revert-tail-mode.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 56049
diff changeset
476 (define-key mode-line-mode-menu [auto-fill-mode]
5b6d3a196c92 (mode-line-mode-menu): Fix alphabetical ordering and add auto-revert-tail-mode.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 56049
diff changeset
477 `(menu-item ,(purecopy "Auto fill (Fill)") auto-fill-mode
5b6d3a196c92 (mode-line-mode-menu): Fix alphabetical ordering and add auto-revert-tail-mode.
Daniel Pfeiffer <occitan@esperanto.org>
parents: 56049
diff changeset
478 :button (:toggle . auto-fill-function)))
34337
b7ae6305e6eb (mode-line-mode-menu): Reverse the order
Gerd Moellmann <gerd@gnu.org>
parents: 33585
diff changeset
479 (define-key mode-line-mode-menu [abbrev-mode]
43267
a98ecf783878 (mode-line-minor-mode-keymap): Definition moved up.
Richard M. Stallman <rms@gnu.org>
parents: 42911
diff changeset
480 `(menu-item ,(purecopy "Abbrev (Abbrev)") abbrev-mode
34337
b7ae6305e6eb (mode-line-mode-menu): Reverse the order
Gerd Moellmann <gerd@gnu.org>
parents: 33585
diff changeset
481 :button (:toggle . abbrev-mode)))
27238
bfb9906d58b5 (make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents: 27151
diff changeset
482
27649
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
483 (defun mode-line-mode-menu (event)
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
484 (interactive "@e")
248e0de1bae2 (mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents: 27616
diff changeset
485 (x-popup-menu event mode-line-mode-menu))
24985
e4f2a5d1dc28 (make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents: 24606
diff changeset
486
50354
e1b13a2263f8 (mode-line-major-mode-keymap): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 48916
diff changeset
487 (defun mode-line-minor-mode-help (event)
75139
685bae49b575 (battery-search-for-one-match-in-files): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 74752
diff changeset
488 "Describe minor mode for EVENT occurred on minor modes area of the mode line."
50354
e1b13a2263f8 (mode-line-major-mode-keymap): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 48916
diff changeset
489 (interactive "@e")
e1b13a2263f8 (mode-line-major-mode-keymap): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 48916
diff changeset
490 (let ((indicator (car (nth 4 (car (cdr event))))))
e1b13a2263f8 (mode-line-major-mode-keymap): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 48916
diff changeset
491 (describe-minor-mode-from-indicator indicator)))
e1b13a2263f8 (mode-line-major-mode-keymap): New variable.
Juanma Barranquero <lekktu@gmail.com>
parents: 48916
diff changeset
492
38757
75666bd5d498 (minor-mode-alist): Use mode-line-minor-mode-keymap
Gerd Moellmann <gerd@gnu.org>
parents: 38755
diff changeset
493 (defvar minor-mode-alist nil "\
75666bd5d498 (minor-mode-alist): Use mode-line-minor-mode-keymap
Gerd Moellmann <gerd@gnu.org>
parents: 38755
diff changeset
494 Alist saying how to show minor modes in the mode line.
75666bd5d498 (minor-mode-alist): Use mode-line-minor-mode-keymap
Gerd Moellmann <gerd@gnu.org>
parents: 38755
diff changeset
495 Each element looks like (VARIABLE STRING);
75666bd5d498 (minor-mode-alist): Use mode-line-minor-mode-keymap
Gerd Moellmann <gerd@gnu.org>
parents: 38755
diff changeset
496 STRING is included in the mode line iff VARIABLE's value is non-nil.
75666bd5d498 (minor-mode-alist): Use mode-line-minor-mode-keymap
Gerd Moellmann <gerd@gnu.org>
parents: 38755
diff changeset
497
75666bd5d498 (minor-mode-alist): Use mode-line-minor-mode-keymap
Gerd Moellmann <gerd@gnu.org>
parents: 38755
diff changeset
498 Actually, STRING need not be a string; any possible mode-line element
75666bd5d498 (minor-mode-alist): Use mode-line-minor-mode-keymap
Gerd Moellmann <gerd@gnu.org>
parents: 38755
diff changeset
499 is okay. See `mode-line-format'.")
75666bd5d498 (minor-mode-alist): Use mode-line-minor-mode-keymap
Gerd Moellmann <gerd@gnu.org>
parents: 38755
diff changeset
500 ;; Don't use purecopy here--some people want to change these strings.
75666bd5d498 (minor-mode-alist): Use mode-line-minor-mode-keymap
Gerd Moellmann <gerd@gnu.org>
parents: 38755
diff changeset
501 (setq minor-mode-alist
75666bd5d498 (minor-mode-alist): Use mode-line-minor-mode-keymap
Gerd Moellmann <gerd@gnu.org>
parents: 38755
diff changeset
502 (list
43267
a98ecf783878 (mode-line-minor-mode-keymap): Definition moved up.
Richard M. Stallman <rms@gnu.org>
parents: 42911
diff changeset
503 (list 'abbrev-mode " Abbrev")
38757
75666bd5d498 (minor-mode-alist): Use mode-line-minor-mode-keymap
Gerd Moellmann <gerd@gnu.org>
parents: 38755
diff changeset
504 '(overwrite-mode overwrite-mode)
43267
a98ecf783878 (mode-line-minor-mode-keymap): Definition moved up.
Richard M. Stallman <rms@gnu.org>
parents: 42911
diff changeset
505 (list 'auto-fill-function " Fill")
38757
75666bd5d498 (minor-mode-alist): Use mode-line-minor-mode-keymap
Gerd Moellmann <gerd@gnu.org>
parents: 38755
diff changeset
506 ;; not really a minor mode...
75666bd5d498 (minor-mode-alist): Use mode-line-minor-mode-keymap
Gerd Moellmann <gerd@gnu.org>
parents: 38755
diff changeset
507 '(defining-kbd-macro " Def")))
75666bd5d498 (minor-mode-alist): Use mode-line-minor-mode-keymap
Gerd Moellmann <gerd@gnu.org>
parents: 38755
diff changeset
508
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
509 ;; These variables are used by autoloadable packages.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
510 ;; They are defined here so that they do not get overridden
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
511 ;; by the loading of those packages.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
512
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
513 ;; Names in directory that end in one of these
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
514 ;; are ignored in completion,
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
515 ;; making it more likely you will get a unique match.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
516 (setq completion-ignored-extensions
16776
b998fe0016d5 (completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents: 16691
diff changeset
517 (append
39930
2e2351633c8e (completion-ignored-extensions) [ms-dos, windows-nt]:
Eli Zaretskii <eliz@gnu.org>
parents: 39903
diff changeset
518 (cond ((memq system-type '(ms-dos windows-nt))
2e2351633c8e (completion-ignored-extensions) [ms-dos, windows-nt]:
Eli Zaretskii <eliz@gnu.org>
parents: 39903
diff changeset
519 '(".o" "~" ".bin" ".bak" ".obj" ".map" ".ico" ".pif" ".lnk"
2e2351633c8e (completion-ignored-extensions) [ms-dos, windows-nt]:
Eli Zaretskii <eliz@gnu.org>
parents: 39903
diff changeset
520 ".a" ".ln" ".blg" ".bbl" ".dll" ".drv" ".vxd" ".386"))
16776
b998fe0016d5 (completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents: 16691
diff changeset
521 ((eq system-type 'vax-vms)
b998fe0016d5 (completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents: 16691
diff changeset
522 '(".obj" ".exe" ".bin" ".lbin" ".sbin"
60822
65691b78b6f2 (completion-ignored-extensions): Remove ".lis" for `vax-vms'.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 60685
diff changeset
523 ".brn" ".rnt" ".lni"
16776
b998fe0016d5 (completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents: 16691
diff changeset
524 ".olb" ".tlb" ".mlb" ".hlb"))
b998fe0016d5 (completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents: 16691
diff changeset
525 (t
39930
2e2351633c8e (completion-ignored-extensions) [ms-dos, windows-nt]:
Eli Zaretskii <eliz@gnu.org>
parents: 39903
diff changeset
526 '(".o" "~" ".bin" ".lbin" ".so"
16776
b998fe0016d5 (completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents: 16691
diff changeset
527 ".a" ".ln" ".blg" ".bbl")))
b998fe0016d5 (completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents: 16691
diff changeset
528 '(".elc" ".lof"
b998fe0016d5 (completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents: 16691
diff changeset
529 ".glo" ".idx" ".lot"
b998fe0016d5 (completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents: 16691
diff changeset
530 ;; TeX-related
26951
b0cf9bf5d505 (completion-ignored-extensions): Add .pdf.
Gerd Moellmann <gerd@gnu.org>
parents: 26926
diff changeset
531 ".dvi" ".fmt" ".tfm" ".pdf"
21309
dfa28803a4aa (completion-ignored-extensions): Add a few.
Richard M. Stallman <rms@gnu.org>
parents: 20798
diff changeset
532 ;; Java compiled
dfa28803a4aa (completion-ignored-extensions): Add a few.
Richard M. Stallman <rms@gnu.org>
parents: 20798
diff changeset
533 ".class"
39840
68ca5f31c24d (completion-ignored-extensions): CL-related
Sam Steingold <sds@gnu.org>
parents: 39587
diff changeset
534 ;; CLISP
68ca5f31c24d (completion-ignored-extensions): CL-related
Sam Steingold <sds@gnu.org>
parents: 39587
diff changeset
535 ".fas" ".lib" ".mem"
21309
dfa28803a4aa (completion-ignored-extensions): Add a few.
Richard M. Stallman <rms@gnu.org>
parents: 20798
diff changeset
536 ;; CMUCL
26052
b6e77fbb182b (completion-ignored-extensions): Added ".sparcf"
Gerd Moellmann <gerd@gnu.org>
parents: 25898
diff changeset
537 ".x86f" ".sparcf"
53463
160b4f3af303 (completion-ignored-extensions): Add .pfsl.
John Paul Wallington <jpw@pobox.com>
parents: 52815
diff changeset
538 ;; Other CL implementations (Allegro, LispWorks, OpenMCL)
57168
b4b1dca14832 (completion-ignored-extensions): Add .dfsl.
John Paul Wallington <jpw@pobox.com>
parents: 57166
diff changeset
539 ".fasl" ".ufsl" ".fsl" ".dxl" ".pfsl" ".dfsl"
30508
976820f4a1bb (completion-ignored-extensions): Add `.la', `.lo',
Gerd Moellmann <gerd@gnu.org>
parents: 30309
diff changeset
540 ;; Libtool
976820f4a1bb (completion-ignored-extensions): Add `.la', `.lo',
Gerd Moellmann <gerd@gnu.org>
parents: 30309
diff changeset
541 ".lo" ".la"
46191
ee1f09c2135a (completion-ignored-extensions): Add .gmo and .mo.
Richard M. Stallman <rms@gnu.org>
parents: 44623
diff changeset
542 ;; Gettext
ee1f09c2135a (completion-ignored-extensions): Add .gmo and .mo.
Richard M. Stallman <rms@gnu.org>
parents: 44623
diff changeset
543 ".gmo" ".mo"
16776
b998fe0016d5 (completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents: 16691
diff changeset
544 ;; Texinfo-related
52775
cbc9675be6b0 (completion-ignored-extensions): Remove .log.
Dave Love <fx@gnu.org>
parents: 52664
diff changeset
545 ;; This used to contain .log, but that's commonly used for log
cbc9675be6b0 (completion-ignored-extensions): Remove .log.
Dave Love <fx@gnu.org>
parents: 52664
diff changeset
546 ;; files you do want to see, not just TeX stuff. -- fx
cbc9675be6b0 (completion-ignored-extensions): Remove .log.
Dave Love <fx@gnu.org>
parents: 52664
diff changeset
547 ".toc" ".aux"
16776
b998fe0016d5 (completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents: 16691
diff changeset
548 ".cp" ".fn" ".ky" ".pg" ".tp" ".vr"
56049
ae7b62bc4999 (completion-ignored-extensions): Add file extensions
Eli Zaretskii <eliz@gnu.org>
parents: 55942
diff changeset
549 ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs"
ae7b62bc4999 (completion-ignored-extensions): Add file extensions
Eli Zaretskii <eliz@gnu.org>
parents: 55942
diff changeset
550 ;; Python byte-compiled
ae7b62bc4999 (completion-ignored-extensions): Add file extensions
Eli Zaretskii <eliz@gnu.org>
parents: 55942
diff changeset
551 ".pyc" ".pyo")))
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
552
39932
ade54d52bb06 (exec-suffixes): Initialize to a system-dependent value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39930
diff changeset
553 ;; Suffixes used for executables.
ade54d52bb06 (exec-suffixes): Initialize to a system-dependent value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39930
diff changeset
554 (setq exec-suffixes
ade54d52bb06 (exec-suffixes): Initialize to a system-dependent value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39930
diff changeset
555 (cond
ade54d52bb06 (exec-suffixes): Initialize to a system-dependent value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39930
diff changeset
556 ((memq system-type '(ms-dos windows-nt))
ade54d52bb06 (exec-suffixes): Initialize to a system-dependent value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39930
diff changeset
557 '(".exe" ".com" ".bat" ".cmd" ".btm" ""))
ade54d52bb06 (exec-suffixes): Initialize to a system-dependent value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39930
diff changeset
558 (t
ade54d52bb06 (exec-suffixes): Initialize to a system-dependent value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39930
diff changeset
559 '(""))))
ade54d52bb06 (exec-suffixes): Initialize to a system-dependent value.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39930
diff changeset
560
28105
763e873d5257 (mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents: 27783
diff changeset
561 ;; Packages should add to this list appropriately when they are
763e873d5257 (mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents: 27783
diff changeset
562 ;; loaded, rather than listing everything here.
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
563 (setq debug-ignored-errors
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
564 '(beginning-of-line beginning-of-buffer end-of-line
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
565 end-of-buffer end-of-file buffer-read-only
21309
dfa28803a4aa (completion-ignored-extensions): Add a few.
Richard M. Stallman <rms@gnu.org>
parents: 20798
diff changeset
566 file-supersession
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
567 "^Previous command was not a yank$"
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
568 "^Minibuffer window is not active$"
55942
7297a6eaf64b * bindings.el (debug-ignored-errors): Add regexps for history
Juri Linkov <juri@jurta.org>
parents: 55275
diff changeset
569 "^No previous history search regexp$"
7297a6eaf64b * bindings.el (debug-ignored-errors): Add regexps for history
Juri Linkov <juri@jurta.org>
parents: 55275
diff changeset
570 "^No later matching history item$"
7297a6eaf64b * bindings.el (debug-ignored-errors): Add regexps for history
Juri Linkov <juri@jurta.org>
parents: 55275
diff changeset
571 "^No earlier matching history item$"
7297a6eaf64b * bindings.el (debug-ignored-errors): Add regexps for history
Juri Linkov <juri@jurta.org>
parents: 55275
diff changeset
572 "^End of history; no default available$"
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
573 "^End of history; no next item$"
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
574 "^Beginning of history; no preceding item$"
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
575 "^No recursive edit is in progress$"
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
576 "^Changes to be undone are outside visible portion of buffer$"
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
577 "^No undo information in this buffer$"
55942
7297a6eaf64b * bindings.el (debug-ignored-errors): Add regexps for history
Juri Linkov <juri@jurta.org>
parents: 55275
diff changeset
578 "^No further undo information"
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
579 "^Save not confirmed$"
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
580 "^Recover-file cancelled\\.$"
20798
25b0721fc2fc (debug-ignored-errors): Add some elements.
Richard M. Stallman <rms@gnu.org>
parents: 20638
diff changeset
581 "^Cannot switch buffers in a dedicated window$"
55942
7297a6eaf64b * bindings.el (debug-ignored-errors): Add regexps for history
Juri Linkov <juri@jurta.org>
parents: 55275
diff changeset
582 ))
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
583
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
584
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
585 (make-variable-buffer-local 'indent-tabs-mode)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
586
36806
6eaf3f2390b4 (features): Add `md5' and `overlay' to the list.
Gerd Moellmann <gerd@gnu.org>
parents: 35777
diff changeset
587 ;; We have base64 and md5 functions built in now.
41172
138cb29c858e (mode-line-mode-name): Only put the help-echo property
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 40585
diff changeset
588 (provide 'base64)
138cb29c858e (mode-line-mode-name): Only put the help-echo property
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 40585
diff changeset
589 (provide 'md5)
138cb29c858e (mode-line-mode-name): Only put the help-echo property
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 40585
diff changeset
590 (provide 'overlay '(display syntax-table field))
138cb29c858e (mode-line-mode-name): Only put the help-echo property
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 40585
diff changeset
591 (provide 'text-properties '(display syntax-table field point-entered))
23783
d015bfcaaead (features): Add `base64' to this list.
Richard M. Stallman <rms@gnu.org>
parents: 22705
diff changeset
592
18325
65986b1a2cd6 (complete-symbol): New function.
Richard M. Stallman <rms@gnu.org>
parents: 18303
diff changeset
593 (define-key esc-map "\t" 'complete-symbol)
65986b1a2cd6 (complete-symbol): New function.
Richard M. Stallman <rms@gnu.org>
parents: 18303
diff changeset
594
25537
f329ed7625ee Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents: 25312
diff changeset
595 (defun complete-symbol (arg) "\
f329ed7625ee Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents: 25312
diff changeset
596 Perform tags completion on the text around point.
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
597 Completes to the set of names listed in the current tags table.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
598 The string to complete is chosen in the same way as the default
24606
6f29d3fe8aa5 (complete-symbol): Invert meaning of prefix arg.
Richard M. Stallman <rms@gnu.org>
parents: 23783
diff changeset
599 for \\[find-tag] (which see).
6f29d3fe8aa5 (complete-symbol): Invert meaning of prefix arg.
Richard M. Stallman <rms@gnu.org>
parents: 23783
diff changeset
600
6f29d3fe8aa5 (complete-symbol): Invert meaning of prefix arg.
Richard M. Stallman <rms@gnu.org>
parents: 23783
diff changeset
601 With a prefix argument, this command does completion within
6f29d3fe8aa5 (complete-symbol): Invert meaning of prefix arg.
Richard M. Stallman <rms@gnu.org>
parents: 23783
diff changeset
602 the collection of symbols listed in the index of the manual for the
6f29d3fe8aa5 (complete-symbol): Invert meaning of prefix arg.
Richard M. Stallman <rms@gnu.org>
parents: 23783
diff changeset
603 language you are using."
18325
65986b1a2cd6 (complete-symbol): New function.
Richard M. Stallman <rms@gnu.org>
parents: 18303
diff changeset
604 (interactive "P")
65986b1a2cd6 (complete-symbol): New function.
Richard M. Stallman <rms@gnu.org>
parents: 18303
diff changeset
605 (if arg
24606
6f29d3fe8aa5 (complete-symbol): Invert meaning of prefix arg.
Richard M. Stallman <rms@gnu.org>
parents: 23783
diff changeset
606 (info-complete-symbol)
6f29d3fe8aa5 (complete-symbol): Invert meaning of prefix arg.
Richard M. Stallman <rms@gnu.org>
parents: 23783
diff changeset
607 (if (fboundp 'complete-tag)
6f29d3fe8aa5 (complete-symbol): Invert meaning of prefix arg.
Richard M. Stallman <rms@gnu.org>
parents: 23783
diff changeset
608 (complete-tag)
6f29d3fe8aa5 (complete-symbol): Invert meaning of prefix arg.
Richard M. Stallman <rms@gnu.org>
parents: 23783
diff changeset
609 ;; Don't autoload etags if we have no tags table.
6f29d3fe8aa5 (complete-symbol): Invert meaning of prefix arg.
Richard M. Stallman <rms@gnu.org>
parents: 23783
diff changeset
610 (error (substitute-command-keys
6f29d3fe8aa5 (complete-symbol): Invert meaning of prefix arg.
Richard M. Stallman <rms@gnu.org>
parents: 23783
diff changeset
611 "No tags table loaded; use \\[visit-tags-table] to load one")))))
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
612
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
613 ;; Reduce total amount of space we must allocate during this function
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
614 ;; that we will not need to keep permanently.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
615 (garbage-collect)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
616
17784
5b2fa4a13a8b Define Latin-1, Latin-2 and Latin-3 chars as self-inserting.
Richard M. Stallman <rms@gnu.org>
parents: 17595
diff changeset
617
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
618 (setq help-event-list '(help f1))
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
619
20577
46c697b88c83 (minor-mode-overriding-map-alist):
Richard M. Stallman <rms@gnu.org>
parents: 20416
diff changeset
620 (make-variable-buffer-local 'minor-mode-overriding-map-alist)
46c697b88c83 (minor-mode-overriding-map-alist):
Richard M. Stallman <rms@gnu.org>
parents: 20416
diff changeset
621
41172
138cb29c858e (mode-line-mode-name): Only put the help-echo property
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 40585
diff changeset
622 ;; From frame.c
138cb29c858e (mode-line-mode-name): Only put the help-echo property
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 40585
diff changeset
623 (global-set-key [switch-frame] 'handle-switch-frame)
50554
ff982d8c0772 (global-map): Bind [select-window].
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50354
diff changeset
624 (global-set-key [select-window] 'handle-select-window)
ff982d8c0772 (global-map): Bind [select-window].
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50354
diff changeset
625
ff982d8c0772 (global-map): Bind [select-window].
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50354
diff changeset
626 ;; FIXME: Do those 3 events really ever reach the global-map ?
ff982d8c0772 (global-map): Bind [select-window].
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50354
diff changeset
627 ;; It seems that they can't because they're handled via
ff982d8c0772 (global-map): Bind [select-window].
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 50354
diff changeset
628 ;; special-event-map which is used at very low-level. -stef
41172
138cb29c858e (mode-line-mode-name): Only put the help-echo property
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 40585
diff changeset
629 (global-set-key [delete-frame] 'handle-delete-frame)
138cb29c858e (mode-line-mode-name): Only put the help-echo property
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 40585
diff changeset
630 (global-set-key [iconify-frame] 'ignore-event)
138cb29c858e (mode-line-mode-name): Only put the help-echo property
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 40585
diff changeset
631 (global-set-key [make-frame-visible] 'ignore-event)
138cb29c858e (mode-line-mode-name): Only put the help-echo property
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 40585
diff changeset
632
138cb29c858e (mode-line-mode-name): Only put the help-echo property
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 40585
diff changeset
633
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
634 ;These commands are defined in editfns.c
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
635 ;but they are not assigned to keys there.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
636 (put 'narrow-to-region 'disabled t)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
637 (define-key ctl-x-map "nn" 'narrow-to-region)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
638 (define-key ctl-x-map "nw" 'widen)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
639 ;; (define-key ctl-x-map "n" 'narrow-to-region)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
640 ;; (define-key ctl-x-map "w" 'widen)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
641
61650
9a27f4097b8f (next-buffer, prev-buffer, next-error)
Kim F. Storm <storm@cua.dk>
parents: 60822
diff changeset
642 ;; Quitting
9a27f4097b8f (next-buffer, prev-buffer, next-error)
Kim F. Storm <storm@cua.dk>
parents: 60822
diff changeset
643 (define-key global-map "\e\e\e" 'keyboard-escape-quit)
9a27f4097b8f (next-buffer, prev-buffer, next-error)
Kim F. Storm <storm@cua.dk>
parents: 60822
diff changeset
644 (define-key global-map "\C-g" 'keyboard-quit)
9a27f4097b8f (next-buffer, prev-buffer, next-error)
Kim F. Storm <storm@cua.dk>
parents: 60822
diff changeset
645
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
646 (define-key global-map "\C-j" 'newline-and-indent)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
647 (define-key global-map "\C-m" 'newline)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
648 (define-key global-map "\C-o" 'open-line)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
649 (define-key esc-map "\C-o" 'split-line)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
650 (define-key global-map "\C-q" 'quoted-insert)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
651 (define-key esc-map "^" 'delete-indentation)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
652 (define-key esc-map "\\" 'delete-horizontal-space)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
653 (define-key esc-map "m" 'back-to-indentation)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
654 (define-key ctl-x-map "\C-o" 'delete-blank-lines)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
655 (define-key esc-map " " 'just-one-space)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
656 (define-key esc-map "z" 'zap-to-char)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
657 (define-key esc-map "=" 'count-lines-region)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
658 (define-key ctl-x-map "=" 'what-cursor-position)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
659 (define-key esc-map ":" 'eval-expression)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
660 ;; Define ESC ESC : like ESC : for people who type ESC ESC out of habit.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
661 (define-key esc-map "\M-:" 'eval-expression)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
662 ;; Changed from C-x ESC so that function keys work following C-x.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
663 (define-key ctl-x-map "\e\e" 'repeat-complex-command)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
664 ;; New binding analogous to M-:.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
665 (define-key ctl-x-map "\M-:" 'repeat-complex-command)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
666 (define-key ctl-x-map "u" 'advertised-undo)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
667 ;; Many people are used to typing C-/ on X terminals and getting C-_.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
668 (define-key global-map [?\C-/] 'undo)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
669 (define-key global-map "\C-_" 'undo)
61650
9a27f4097b8f (next-buffer, prev-buffer, next-error)
Kim F. Storm <storm@cua.dk>
parents: 60822
diff changeset
670 ;; Richard said that we should not use C-x <uppercase letter> and I have
9a27f4097b8f (next-buffer, prev-buffer, next-error)
Kim F. Storm <storm@cua.dk>
parents: 60822
diff changeset
671 ;; no idea whereas to bind it. Any suggestion welcome. -stef
9a27f4097b8f (next-buffer, prev-buffer, next-error)
Kim F. Storm <storm@cua.dk>
parents: 60822
diff changeset
672 ;; (define-key ctl-x-map "U" 'undo-only)
9a27f4097b8f (next-buffer, prev-buffer, next-error)
Kim F. Storm <storm@cua.dk>
parents: 60822
diff changeset
673
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
674 (define-key esc-map "!" 'shell-command)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
675 (define-key esc-map "|" 'shell-command-on-region)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
676
61650
9a27f4097b8f (next-buffer, prev-buffer, next-error)
Kim F. Storm <storm@cua.dk>
parents: 60822
diff changeset
677 (define-key global-map [?\C-x right] 'next-buffer)
9a27f4097b8f (next-buffer, prev-buffer, next-error)
Kim F. Storm <storm@cua.dk>
parents: 60822
diff changeset
678 (define-key global-map [?\C-x C-right] 'next-buffer)
67602
3fbbf35e6d87 2005-12-16 L«Örentey K«¡roly <lorentey@elte.hu>
Károly Lőrentey <lorentey@elte.hu>
parents: 66492
diff changeset
679 (define-key global-map [?\C-x left] 'previous-buffer)
3fbbf35e6d87 2005-12-16 L«Örentey K«¡roly <lorentey@elte.hu>
Károly Lőrentey <lorentey@elte.hu>
parents: 66492
diff changeset
680 (define-key global-map [?\C-x C-left] 'previous-buffer)
61650
9a27f4097b8f (next-buffer, prev-buffer, next-error)
Kim F. Storm <storm@cua.dk>
parents: 60822
diff changeset
681
39842
12413db4a01f (minibuffer-local-map): Also bind next, C-n, C-s, prior,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39840
diff changeset
682 (let ((map minibuffer-local-map))
12413db4a01f (minibuffer-local-map): Also bind next, C-n, C-s, prior,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39840
diff changeset
683 (define-key map "\en" 'next-history-element)
12413db4a01f (minibuffer-local-map): Also bind next, C-n, C-s, prior,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39840
diff changeset
684 (define-key map [next] 'next-history-element)
12413db4a01f (minibuffer-local-map): Also bind next, C-n, C-s, prior,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39840
diff changeset
685 (define-key map [down] 'next-history-element)
12413db4a01f (minibuffer-local-map): Also bind next, C-n, C-s, prior,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39840
diff changeset
686 (define-key map "\ep" 'previous-history-element)
12413db4a01f (minibuffer-local-map): Also bind next, C-n, C-s, prior,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39840
diff changeset
687 (define-key map [prior] 'previous-history-element)
12413db4a01f (minibuffer-local-map): Also bind next, C-n, C-s, prior,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39840
diff changeset
688 (define-key map [up] 'previous-history-element)
12413db4a01f (minibuffer-local-map): Also bind next, C-n, C-s, prior,
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39840
diff changeset
689 (define-key map "\es" 'next-matching-history-element)
72000
8c5ba642d479 (minibuffer-local-map): Rebind TAB so it inserts a \t.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 71393
diff changeset
690 (define-key map "\er" 'previous-matching-history-element)
8c5ba642d479 (minibuffer-local-map): Rebind TAB so it inserts a \t.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 71393
diff changeset
691 ;; Override the global binding (which calls indent-relative via
8c5ba642d479 (minibuffer-local-map): Rebind TAB so it inserts a \t.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 71393
diff changeset
692 ;; indent-for-tab-command). The alignment that indent-relative tries to
8c5ba642d479 (minibuffer-local-map): Rebind TAB so it inserts a \t.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 71393
diff changeset
693 ;; do doesn't make much sense here since the prompt messes it up.
8c5ba642d479 (minibuffer-local-map): Rebind TAB so it inserts a \t.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 71393
diff changeset
694 (define-key map "\t" 'self-insert-command))
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
695
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
696 (define-key global-map "\C-u" 'universal-argument)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
697 (let ((i ?0))
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
698 (while (<= i ?9)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
699 (define-key esc-map (char-to-string i) 'digit-argument)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
700 (setq i (1+ i))))
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
701 (define-key esc-map "-" 'negative-argument)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
702 ;; Define control-digits.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
703 (let ((i ?0))
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
704 (while (<= i ?9)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
705 (define-key global-map (read (format "[?\\C-%c]" i)) 'digit-argument)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
706 (setq i (1+ i))))
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
707 (define-key global-map [?\C--] 'negative-argument)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
708 ;; Define control-meta-digits.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
709 (let ((i ?0))
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
710 (while (<= i ?9)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
711 (define-key esc-map (read (format "[?\\C-%c]" i)) 'digit-argument)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
712 (setq i (1+ i))))
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
713 (define-key global-map [?\C-\M--] 'negative-argument)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
714
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
715 (define-key global-map "\C-k" 'kill-line)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
716 (define-key global-map "\C-w" 'kill-region)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
717 (define-key esc-map "w" 'kill-ring-save)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
718 (define-key esc-map "\C-w" 'append-next-kill)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
719 (define-key global-map "\C-y" 'yank)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
720 (define-key esc-map "y" 'yank-pop)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
721
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
722 ;; (define-key ctl-x-map "a" 'append-to-buffer)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
723
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
724 (define-key global-map "\C-@" 'set-mark-command)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
725 ;; Many people are used to typing C-SPC and getting C-@.
20638
c3360a392ae4 Change "?\C-\ " to "?\C- " because "\ " is changed
Kenichi Handa <handa@m17n.org>
parents: 20577
diff changeset
726 (define-key global-map [?\C- ] 'set-mark-command)
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
727 (define-key ctl-x-map "\C-x" 'exchange-point-and-mark)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
728 (define-key ctl-x-map "\C-@" 'pop-global-mark)
20638
c3360a392ae4 Change "?\C-\ " to "?\C- " because "\ " is changed
Kenichi Handa <handa@m17n.org>
parents: 20577
diff changeset
729 (define-key ctl-x-map [?\C- ] 'pop-global-mark)
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
730
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
731 (define-key global-map "\C-n" 'next-line)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
732 (define-key global-map "\C-p" 'previous-line)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
733 (define-key ctl-x-map "\C-n" 'set-goal-column)
60485
6a79fa294dd4 (global-map): Bind C-a to move-beginning-of-line.
Kim F. Storm <storm@cua.dk>
parents: 60469
diff changeset
734 (define-key global-map "\C-a" 'move-beginning-of-line)
58355
7c3e2674726f (global-map): Bind C-e to move-end-of-line.
Richard M. Stallman <rms@gnu.org>
parents: 57168
diff changeset
735 (define-key global-map "\C-e" 'move-end-of-line)
60685
08055baffb97 (esc-map): Make M-g a prefix. Bind M-g g and M-g M-g to goto-line.
Richard M. Stallman <rms@gnu.org>
parents: 60540
diff changeset
736 (define-key esc-map "g" (make-sparse-keymap))
08055baffb97 (esc-map): Make M-g a prefix. Bind M-g g and M-g M-g to goto-line.
Richard M. Stallman <rms@gnu.org>
parents: 60540
diff changeset
737 (define-key esc-map "g\M-g" 'goto-line)
08055baffb97 (esc-map): Make M-g a prefix. Bind M-g g and M-g M-g to goto-line.
Richard M. Stallman <rms@gnu.org>
parents: 60540
diff changeset
738 (define-key esc-map "gg" 'goto-line)
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
739
61650
9a27f4097b8f (next-buffer, prev-buffer, next-error)
Kim F. Storm <storm@cua.dk>
parents: 60822
diff changeset
740 (define-key esc-map "gn" 'next-error)
9a27f4097b8f (next-buffer, prev-buffer, next-error)
Kim F. Storm <storm@cua.dk>
parents: 60822
diff changeset
741 (define-key esc-map "g\M-n" 'next-error)
9a27f4097b8f (next-buffer, prev-buffer, next-error)
Kim F. Storm <storm@cua.dk>
parents: 60822
diff changeset
742 (define-key ctl-x-map "`" 'next-error)
9a27f4097b8f (next-buffer, prev-buffer, next-error)
Kim F. Storm <storm@cua.dk>
parents: 60822
diff changeset
743
9a27f4097b8f (next-buffer, prev-buffer, next-error)
Kim F. Storm <storm@cua.dk>
parents: 60822
diff changeset
744 (define-key esc-map "gp" 'previous-error)
9a27f4097b8f (next-buffer, prev-buffer, next-error)
Kim F. Storm <storm@cua.dk>
parents: 60822
diff changeset
745 (define-key esc-map "g\M-p" 'previous-error)
9a27f4097b8f (next-buffer, prev-buffer, next-error)
Kim F. Storm <storm@cua.dk>
parents: 60822
diff changeset
746
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
747 ;;(defun function-key-error ()
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
748 ;; (interactive)
38409
153f1b1f2efd Emacs lisp coding convention fixes.
Pavel Janík <Pavel@Janik.cz>
parents: 38300
diff changeset
749 ;; (error "That function key is not bound to anything"))
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
750
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
751 (define-key global-map [menu] 'execute-extended-command)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
752 (define-key global-map [find] 'search-forward)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
753
35347
696e854064c5 Bind <backspace> and <delete> via function-key-map.
Gerd Moellmann <gerd@gnu.org>
parents: 35164
diff changeset
754 ;; Don't do this. We define <delete> in function-key-map instead.
696e854064c5 Bind <backspace> and <delete> via function-key-map.
Gerd Moellmann <gerd@gnu.org>
parents: 35164
diff changeset
755 ;(define-key global-map [delete] 'backward-delete-char)
30113
44717f85a62c Bind ?[delete]' to delete-char.
Gerd Moellmann <gerd@gnu.org>
parents: 29216
diff changeset
756
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
757 ;; natural bindings for terminal keycaps --- defined in X keysym order
51541
0b97efe4ae23 (global-map): Bind `kill-whole-line' to C-S-<backspace>.
Luc Teirlinck <teirllm@auburn.edu>
parents: 51420
diff changeset
758 (define-key global-map [C-S-backspace] 'kill-whole-line)
65844
d5c276f89641 (global-map): Resync [home] and [end] bindings with C-a and C-e.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65524
diff changeset
759 (define-key global-map [home] 'move-beginning-of-line)
35164
b3365833b164 (global-map): Bind <home> to beginning-of-line,
Gerd Moellmann <gerd@gnu.org>
parents: 34830
diff changeset
760 (define-key global-map [C-home] 'beginning-of-buffer)
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
761 (define-key global-map [M-home] 'beginning-of-buffer-other-window)
63301
5a2af2a8e232 Add binding of `ESC functionkey' for every `M-functionkey'.
Andreas Schwab <schwab@suse.de>
parents: 62651
diff changeset
762 (define-key esc-map [home] 'beginning-of-buffer-other-window)
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
763 (define-key global-map [left] 'backward-char)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
764 (define-key global-map [up] 'previous-line)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
765 (define-key global-map [right] 'forward-char)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
766 (define-key global-map [down] 'next-line)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
767 (define-key global-map [prior] 'scroll-down)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
768 (define-key global-map [next] 'scroll-up)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
769 (define-key global-map [C-up] 'backward-paragraph)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
770 (define-key global-map [C-down] 'forward-paragraph)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
771 (define-key global-map [C-prior] 'scroll-right)
57166
229978f30136 (scroll-left): Make it disabled.
Richard M. Stallman <rms@gnu.org>
parents: 56416
diff changeset
772 (put 'scroll-left 'disabled t)
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
773 (define-key global-map [C-next] 'scroll-left)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
774 (define-key global-map [M-next] 'scroll-other-window)
63301
5a2af2a8e232 Add binding of `ESC functionkey' for every `M-functionkey'.
Andreas Schwab <schwab@suse.de>
parents: 62651
diff changeset
775 (define-key esc-map [next] 'scroll-other-window)
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
776 (define-key global-map [M-prior] 'scroll-other-window-down)
63301
5a2af2a8e232 Add binding of `ESC functionkey' for every `M-functionkey'.
Andreas Schwab <schwab@suse.de>
parents: 62651
diff changeset
777 (define-key esc-map [prior] 'scroll-other-window-down)
61650
9a27f4097b8f (next-buffer, prev-buffer, next-error)
Kim F. Storm <storm@cua.dk>
parents: 60822
diff changeset
778 (define-key esc-map [?\C-\S-v] 'scroll-other-window-down)
65844
d5c276f89641 (global-map): Resync [home] and [end] bindings with C-a and C-e.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 65524
diff changeset
779 (define-key global-map [end] 'move-end-of-line)
35164
b3365833b164 (global-map): Bind <home> to beginning-of-line,
Gerd Moellmann <gerd@gnu.org>
parents: 34830
diff changeset
780 (define-key global-map [C-end] 'end-of-buffer)
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
781 (define-key global-map [M-end] 'end-of-buffer-other-window)
63301
5a2af2a8e232 Add binding of `ESC functionkey' for every `M-functionkey'.
Andreas Schwab <schwab@suse.de>
parents: 62651
diff changeset
782 (define-key esc-map [end] 'end-of-buffer-other-window)
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
783 (define-key global-map [begin] 'beginning-of-buffer)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
784 (define-key global-map [M-begin] 'beginning-of-buffer-other-window)
63301
5a2af2a8e232 Add binding of `ESC functionkey' for every `M-functionkey'.
Andreas Schwab <schwab@suse.de>
parents: 62651
diff changeset
785 (define-key esc-map [begin] 'beginning-of-buffer-other-window)
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
786 ;; (define-key global-map [select] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
787 ;; (define-key global-map [print] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
788 (define-key global-map [execute] 'execute-extended-command)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
789 (define-key global-map [insert] 'overwrite-mode)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
790 (define-key global-map [C-insert] 'kill-ring-save)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
791 (define-key global-map [S-insert] 'yank)
63812
f4952f257c55 (global-map): Bind insertchar and its variants.
Richard M. Stallman <rms@gnu.org>
parents: 63654
diff changeset
792 ;; `insertchar' is what term.c produces. Should we change term.c
f4952f257c55 (global-map): Bind insertchar and its variants.
Richard M. Stallman <rms@gnu.org>
parents: 63654
diff changeset
793 ;; to produce `insert' instead?
f4952f257c55 (global-map): Bind insertchar and its variants.
Richard M. Stallman <rms@gnu.org>
parents: 63654
diff changeset
794 (define-key global-map [insertchar] 'overwrite-mode)
f4952f257c55 (global-map): Bind insertchar and its variants.
Richard M. Stallman <rms@gnu.org>
parents: 63654
diff changeset
795 (define-key global-map [C-insertchar] 'kill-ring-save)
f4952f257c55 (global-map): Bind insertchar and its variants.
Richard M. Stallman <rms@gnu.org>
parents: 63654
diff changeset
796 (define-key global-map [S-insertchar] 'yank)
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
797 (define-key global-map [undo] 'undo)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
798 (define-key global-map [redo] 'repeat-complex-command)
52775
cbc9675be6b0 (completion-ignored-extensions): Remove .log.
Dave Love <fx@gnu.org>
parents: 52664
diff changeset
799 (define-key global-map [again] 'repeat-complex-command) ; Sun keyboard
cbc9675be6b0 (completion-ignored-extensions): Remove .log.
Dave Love <fx@gnu.org>
parents: 52664
diff changeset
800 (define-key global-map [open] 'find-file) ; Sun
52815
0ddba5352cdf Don't bind stop.
Dave Love <fx@gnu.org>
parents: 52775
diff changeset
801 ;; The following wouldn't work to interrupt running code since C-g is
0ddba5352cdf Don't bind stop.
Dave Love <fx@gnu.org>
parents: 52775
diff changeset
802 ;; treated specially in the event loop.
0ddba5352cdf Don't bind stop.
Dave Love <fx@gnu.org>
parents: 52775
diff changeset
803 ;; (define-key global-map [stop] 'keyboard-quit) ; Sun
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
804 ;; (define-key global-map [clearline] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
805 (define-key global-map [insertline] 'open-line)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
806 (define-key global-map [deleteline] 'kill-line)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
807 (define-key global-map [deletechar] 'delete-char)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
808 ;; (define-key global-map [backtab] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
809 ;; (define-key global-map [f1] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
810 ;; (define-key global-map [f2] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
811 ;; (define-key global-map [f3] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
812 ;; (define-key global-map [f4] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
813 ;; (define-key global-map [f5] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
814 ;; (define-key global-map [f6] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
815 ;; (define-key global-map [f7] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
816 ;; (define-key global-map [f8] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
817 ;; (define-key global-map [f9] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
818 ;; (define-key global-map [f10] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
819 ;; (define-key global-map [f11] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
820 ;; (define-key global-map [f12] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
821 ;; (define-key global-map [f13] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
822 ;; (define-key global-map [f14] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
823 ;; (define-key global-map [f15] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
824 ;; (define-key global-map [f16] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
825 ;; (define-key global-map [f17] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
826 ;; (define-key global-map [f18] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
827 ;; (define-key global-map [f19] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
828 ;; (define-key global-map [f20] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
829 ;; (define-key global-map [f21] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
830 ;; (define-key global-map [f22] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
831 ;; (define-key global-map [f23] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
832 ;; (define-key global-map [f24] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
833 ;; (define-key global-map [f25] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
834 ;; (define-key global-map [f26] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
835 ;; (define-key global-map [f27] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
836 ;; (define-key global-map [f28] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
837 ;; (define-key global-map [f29] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
838 ;; (define-key global-map [f30] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
839 ;; (define-key global-map [f31] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
840 ;; (define-key global-map [f32] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
841 ;; (define-key global-map [f33] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
842 ;; (define-key global-map [f34] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
843 ;; (define-key global-map [f35] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
844 ;; (define-key global-map [kp-backtab] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
845 ;; (define-key global-map [kp-space] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
846 ;; (define-key global-map [kp-tab] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
847 ;; (define-key global-map [kp-enter] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
848 ;; (define-key global-map [kp-f1] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
849 ;; (define-key global-map [kp-f2] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
850 ;; (define-key global-map [kp-f3] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
851 ;; (define-key global-map [kp-f4] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
852 ;; (define-key global-map [kp-multiply] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
853 ;; (define-key global-map [kp-add] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
854 ;; (define-key global-map [kp-separator] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
855 ;; (define-key global-map [kp-subtract] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
856 ;; (define-key global-map [kp-decimal] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
857 ;; (define-key global-map [kp-divide] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
858 ;; (define-key global-map [kp-0] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
859 ;; (define-key global-map [kp-1] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
860 ;; (define-key global-map [kp-2] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
861 ;; (define-key global-map [kp-3] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
862 ;; (define-key global-map [kp-4] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
863 ;; (define-key global-map [kp-5] 'recenter)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
864 ;; (define-key global-map [kp-6] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
865 ;; (define-key global-map [kp-7] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
866 ;; (define-key global-map [kp-8] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
867 ;; (define-key global-map [kp-9] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
868 ;; (define-key global-map [kp-equal] 'function-key-error)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
869
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
870 ;; X11R6 distinguishes these keys from the non-kp keys.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
871 ;; Make them behave like the non-kp keys unless otherwise bound.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
872 (define-key function-key-map [kp-home] [home])
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
873 (define-key function-key-map [kp-left] [left])
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
874 (define-key function-key-map [kp-up] [up])
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
875 (define-key function-key-map [kp-right] [right])
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
876 (define-key function-key-map [kp-down] [down])
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
877 (define-key function-key-map [kp-prior] [prior])
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
878 (define-key function-key-map [kp-next] [next])
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
879 (define-key function-key-map [M-kp-next] [M-next])
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
880 (define-key function-key-map [kp-end] [end])
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
881 (define-key function-key-map [kp-begin] [begin])
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
882 (define-key function-key-map [kp-insert] [insert])
35347
696e854064c5 Bind <backspace> and <delete> via function-key-map.
Gerd Moellmann <gerd@gnu.org>
parents: 35164
diff changeset
883 (define-key function-key-map [backspace] [?\C-?])
696e854064c5 Bind <backspace> and <delete> via function-key-map.
Gerd Moellmann <gerd@gnu.org>
parents: 35164
diff changeset
884 (define-key function-key-map [delete] [?\C-?])
35777
b13d1ed54cfc Define `kp-delete' like `delete' in function-key-map.
Gerd Moellmann <gerd@gnu.org>
parents: 35347
diff changeset
885 (define-key function-key-map [kp-delete] [?\C-?])
38642
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
886 (define-key function-key-map [S-kp-end] [S-end])
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
887 (define-key function-key-map [S-kp-down] [S-down])
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
888 (define-key function-key-map [S-kp-next] [S-next])
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
889 (define-key function-key-map [S-kp-left] [S-left])
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
890 (define-key function-key-map [S-kp-right] [S-right])
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
891 (define-key function-key-map [S-kp-home] [S-home])
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
892 (define-key function-key-map [S-kp-up] [S-up])
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
893 (define-key function-key-map [S-kp-prior] [S-prior])
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
894 (define-key function-key-map [C-S-kp-end] [C-S-end])
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
895 (define-key function-key-map [C-S-kp-down] [C-S-down])
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
896 (define-key function-key-map [C-S-kp-next] [C-S-next])
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
897 (define-key function-key-map [C-S-kp-left] [C-S-left])
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
898 (define-key function-key-map [C-S-kp-right] [C-S-right])
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
899 (define-key function-key-map [C-S-kp-home] [C-S-home])
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
900 (define-key function-key-map [C-S-kp-up] [C-S-up])
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
901 (define-key function-key-map [C-S-kp-prior] [C-S-prior])
42482
955a445b9717 (function-key-map): Don't bind shifted keypad numeric keys.
Eli Zaretskii <eliz@gnu.org>
parents: 41826
diff changeset
902 ;; Don't bind shifted keypad numeric keys, they reportedly
955a445b9717 (function-key-map): Don't bind shifted keypad numeric keys.
Eli Zaretskii <eliz@gnu.org>
parents: 41826
diff changeset
903 ;; interfere with the feature of some keyboards to produce
955a445b9717 (function-key-map): Don't bind shifted keypad numeric keys.
Eli Zaretskii <eliz@gnu.org>
parents: 41826
diff changeset
904 ;; numbers when NumLock is off.
955a445b9717 (function-key-map): Don't bind shifted keypad numeric keys.
Eli Zaretskii <eliz@gnu.org>
parents: 41826
diff changeset
905 ;(define-key function-key-map [S-kp-1] [S-end])
955a445b9717 (function-key-map): Don't bind shifted keypad numeric keys.
Eli Zaretskii <eliz@gnu.org>
parents: 41826
diff changeset
906 ;(define-key function-key-map [S-kp-2] [S-down])
955a445b9717 (function-key-map): Don't bind shifted keypad numeric keys.
Eli Zaretskii <eliz@gnu.org>
parents: 41826
diff changeset
907 ;(define-key function-key-map [S-kp-3] [S-next])
955a445b9717 (function-key-map): Don't bind shifted keypad numeric keys.
Eli Zaretskii <eliz@gnu.org>
parents: 41826
diff changeset
908 ;(define-key function-key-map [S-kp-4] [S-left])
955a445b9717 (function-key-map): Don't bind shifted keypad numeric keys.
Eli Zaretskii <eliz@gnu.org>
parents: 41826
diff changeset
909 ;(define-key function-key-map [S-kp-6] [S-right])
955a445b9717 (function-key-map): Don't bind shifted keypad numeric keys.
Eli Zaretskii <eliz@gnu.org>
parents: 41826
diff changeset
910 ;(define-key function-key-map [S-kp-7] [S-home])
955a445b9717 (function-key-map): Don't bind shifted keypad numeric keys.
Eli Zaretskii <eliz@gnu.org>
parents: 41826
diff changeset
911 ;(define-key function-key-map [S-kp-8] [S-up])
955a445b9717 (function-key-map): Don't bind shifted keypad numeric keys.
Eli Zaretskii <eliz@gnu.org>
parents: 41826
diff changeset
912 ;(define-key function-key-map [S-kp-9] [S-prior])
38642
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
913 (define-key function-key-map [C-S-kp-1] [C-S-end])
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
914 (define-key function-key-map [C-S-kp-2] [C-S-down])
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
915 (define-key function-key-map [C-S-kp-3] [C-S-next])
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
916 (define-key function-key-map [C-S-kp-4] [C-S-left])
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
917 (define-key function-key-map [C-S-kp-6] [C-S-right])
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
918 (define-key function-key-map [C-S-kp-7] [C-S-home])
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
919 (define-key function-key-map [C-S-kp-8] [C-S-up])
4d538c0a8afc Bind shifted and control-shifted kp-* keys to the
Eli Zaretskii <eliz@gnu.org>
parents: 38409
diff changeset
920 (define-key function-key-map [C-S-kp-9] [C-S-prior])
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
921
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
922 (define-key global-map [mouse-movement] 'ignore)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
923
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
924 (define-key global-map "\C-t" 'transpose-chars)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
925 (define-key esc-map "t" 'transpose-words)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
926 (define-key esc-map "\C-t" 'transpose-sexps)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
927 (define-key ctl-x-map "\C-t" 'transpose-lines)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
928
29216
bc6192b0e1af (esc-map): Change ; to comment-dwim and use the new function
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 29081
diff changeset
929 (define-key esc-map ";" 'comment-dwim)
39903
001efc29394a (esc-map): Revert `j' and `C-j' bindings to
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39842
diff changeset
930 (define-key esc-map "j" 'indent-new-comment-line)
001efc29394a (esc-map): Revert `j' and `C-j' bindings to
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 39842
diff changeset
931 (define-key esc-map "\C-j" 'indent-new-comment-line)
29216
bc6192b0e1af (esc-map): Change ; to comment-dwim and use the new function
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 29081
diff changeset
932 (define-key ctl-x-map ";" 'comment-set-column)
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
933 (define-key ctl-x-map "f" 'set-fill-column)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
934 (define-key ctl-x-map "$" 'set-selective-display)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
935
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
936 (define-key esc-map "@" 'mark-word)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
937 (define-key esc-map "f" 'forward-word)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
938 (define-key esc-map "b" 'backward-word)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
939 (define-key esc-map "d" 'kill-word)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
940 (define-key esc-map "\177" 'backward-kill-word)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
941
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
942 (define-key esc-map "<" 'beginning-of-buffer)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
943 (define-key esc-map ">" 'end-of-buffer)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
944 (define-key ctl-x-map "h" 'mark-whole-buffer)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
945 (define-key esc-map "\\" 'delete-horizontal-space)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
946
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
947 (defalias 'mode-specific-command-prefix (make-sparse-keymap))
16691
285f4e41d163 Change defconsts to defvars.
Richard M. Stallman <rms@gnu.org>
parents: 16523
diff changeset
948 (defvar mode-specific-map (symbol-function 'mode-specific-command-prefix)
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
949 "Keymap for characters following C-c.")
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
950 (define-key global-map "\C-c" 'mode-specific-command-prefix)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
951
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
952 (global-set-key [M-right] 'forward-word)
63301
5a2af2a8e232 Add binding of `ESC functionkey' for every `M-functionkey'.
Andreas Schwab <schwab@suse.de>
parents: 62651
diff changeset
953 (define-key esc-map [right] 'forward-word)
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
954 (global-set-key [M-left] 'backward-word)
63301
5a2af2a8e232 Add binding of `ESC functionkey' for every `M-functionkey'.
Andreas Schwab <schwab@suse.de>
parents: 62651
diff changeset
955 (define-key esc-map [left] 'backward-word)
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
956 ;; ilya@math.ohio-state.edu says these bindings are standard on PC editors.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
957 (global-set-key [C-right] 'forward-word)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
958 (global-set-key [C-left] 'backward-word)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
959 ;; This is not quite compatible, but at least is analogous
34830
67390da4022e ([C-backspace]): Bind C-backspace to kill-word.
Gerd Moellmann <gerd@gnu.org>
parents: 34554
diff changeset
960 (global-set-key [C-delete] 'backward-kill-word)
67390da4022e ([C-backspace]): Bind C-backspace to kill-word.
Gerd Moellmann <gerd@gnu.org>
parents: 34554
diff changeset
961 (global-set-key [C-backspace] 'kill-word)
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
962 ;; This is "move to the clipboard", or as close as we come.
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
963 (global-set-key [S-delete] 'kill-region)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
964
63301
5a2af2a8e232 Add binding of `ESC functionkey' for every `M-functionkey'.
Andreas Schwab <schwab@suse.de>
parents: 62651
diff changeset
965 (global-set-key [C-M-left] 'backward-sexp)
5a2af2a8e232 Add binding of `ESC functionkey' for every `M-functionkey'.
Andreas Schwab <schwab@suse.de>
parents: 62651
diff changeset
966 (define-key esc-map [C-left] 'backward-sexp)
5a2af2a8e232 Add binding of `ESC functionkey' for every `M-functionkey'.
Andreas Schwab <schwab@suse.de>
parents: 62651
diff changeset
967 (global-set-key [C-M-right] 'forward-sexp)
5a2af2a8e232 Add binding of `ESC functionkey' for every `M-functionkey'.
Andreas Schwab <schwab@suse.de>
parents: 62651
diff changeset
968 (define-key esc-map [C-right] 'forward-sexp)
5a2af2a8e232 Add binding of `ESC functionkey' for every `M-functionkey'.
Andreas Schwab <schwab@suse.de>
parents: 62651
diff changeset
969 (global-set-key [C-M-up] 'backward-up-list)
5a2af2a8e232 Add binding of `ESC functionkey' for every `M-functionkey'.
Andreas Schwab <schwab@suse.de>
parents: 62651
diff changeset
970 (define-key esc-map [C-up] 'backward-up-list)
5a2af2a8e232 Add binding of `ESC functionkey' for every `M-functionkey'.
Andreas Schwab <schwab@suse.de>
parents: 62651
diff changeset
971 (global-set-key [C-M-down] 'down-list)
5a2af2a8e232 Add binding of `ESC functionkey' for every `M-functionkey'.
Andreas Schwab <schwab@suse.de>
parents: 62651
diff changeset
972 (define-key esc-map [C-down] 'down-list)
5a2af2a8e232 Add binding of `ESC functionkey' for every `M-functionkey'.
Andreas Schwab <schwab@suse.de>
parents: 62651
diff changeset
973 (global-set-key [C-M-home] 'beginning-of-defun)
5a2af2a8e232 Add binding of `ESC functionkey' for every `M-functionkey'.
Andreas Schwab <schwab@suse.de>
parents: 62651
diff changeset
974 (define-key esc-map [C-home] 'beginning-of-defun)
5a2af2a8e232 Add binding of `ESC functionkey' for every `M-functionkey'.
Andreas Schwab <schwab@suse.de>
parents: 62651
diff changeset
975 (global-set-key [C-M-end] 'end-of-defun)
5a2af2a8e232 Add binding of `ESC functionkey' for every `M-functionkey'.
Andreas Schwab <schwab@suse.de>
parents: 62651
diff changeset
976 (define-key esc-map [C-end] 'end-of-defun)
55275
1fcfb5d038a2 (propertized-buffer-identification):
Juri Linkov <juri@jurta.org>
parents: 53551
diff changeset
977
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
978 (define-key esc-map "\C-f" 'forward-sexp)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
979 (define-key esc-map "\C-b" 'backward-sexp)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
980 (define-key esc-map "\C-u" 'backward-up-list)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
981 (define-key esc-map "\C-@" 'mark-sexp)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
982 (define-key esc-map [?\C-\ ] 'mark-sexp)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
983 (define-key esc-map "\C-d" 'down-list)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
984 (define-key esc-map "\C-k" 'kill-sexp)
51420
22c87cfe7fe4 (global-map): Delete C-M-delete and C-M-backspace.
Richard M. Stallman <rms@gnu.org>
parents: 51260
diff changeset
985 ;;; These are dangerous in various situations,
22c87cfe7fe4 (global-map): Delete C-M-delete and C-M-backspace.
Richard M. Stallman <rms@gnu.org>
parents: 51260
diff changeset
986 ;;; so let's not encourage anyone to use them.
22c87cfe7fe4 (global-map): Delete C-M-delete and C-M-backspace.
Richard M. Stallman <rms@gnu.org>
parents: 51260
diff changeset
987 ;;;(define-key global-map [C-M-delete] 'backward-kill-sexp)
22c87cfe7fe4 (global-map): Delete C-M-delete and C-M-backspace.
Richard M. Stallman <rms@gnu.org>
parents: 51260
diff changeset
988 ;;;(define-key global-map [C-M-backspace] 'backward-kill-sexp)
30946
0cc084d7b4a7 (esc-map): Bind `C-delete' and `C-backspace' to
Gerd Moellmann <gerd@gnu.org>
parents: 30508
diff changeset
989 (define-key esc-map [C-delete] 'backward-kill-sexp)
0cc084d7b4a7 (esc-map): Bind `C-delete' and `C-backspace' to
Gerd Moellmann <gerd@gnu.org>
parents: 30508
diff changeset
990 (define-key esc-map [C-backspace] 'backward-kill-sexp)
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
991 (define-key esc-map "\C-n" 'forward-list)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
992 (define-key esc-map "\C-p" 'backward-list)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
993 (define-key esc-map "\C-a" 'beginning-of-defun)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
994 (define-key esc-map "\C-e" 'end-of-defun)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
995 (define-key esc-map "\C-h" 'mark-defun)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
996 (define-key ctl-x-map "nd" 'narrow-to-defun)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
997 (define-key esc-map "(" 'insert-parentheses)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
998 (define-key esc-map ")" 'move-past-close-and-reindent)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
999
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1000 (define-key ctl-x-map "\C-e" 'eval-last-sexp)
17595
eaad8bd00b12 Bind C-x m, C-x 4 m, C-x 5 m to compose-mail...
Richard M. Stallman <rms@gnu.org>
parents: 17537
diff changeset
1001
eaad8bd00b12 Bind C-x m, C-x 4 m, C-x 5 m to compose-mail...
Richard M. Stallman <rms@gnu.org>
parents: 17537
diff changeset
1002 (define-key ctl-x-map "m" 'compose-mail)
eaad8bd00b12 Bind C-x m, C-x 4 m, C-x 5 m to compose-mail...
Richard M. Stallman <rms@gnu.org>
parents: 17537
diff changeset
1003 (define-key ctl-x-4-map "m" 'compose-mail-other-window)
eaad8bd00b12 Bind C-x m, C-x 4 m, C-x 5 m to compose-mail...
Richard M. Stallman <rms@gnu.org>
parents: 17537
diff changeset
1004 (define-key ctl-x-5-map "m" 'compose-mail-other-frame)
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1005
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1006 (define-key ctl-x-map "r\C-@" 'point-to-register)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1007 (define-key ctl-x-map [?r ?\C-\ ] 'point-to-register)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1008 (define-key ctl-x-map "r " 'point-to-register)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1009 (define-key ctl-x-map "rj" 'jump-to-register)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1010 (define-key ctl-x-map "rs" 'copy-to-register)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1011 (define-key ctl-x-map "rx" 'copy-to-register)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1012 (define-key ctl-x-map "ri" 'insert-register)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1013 (define-key ctl-x-map "rg" 'insert-register)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1014 (define-key ctl-x-map "rr" 'copy-rectangle-to-register)
20416
449a1e694780 (ctl-x-map): Add bindings rn and r+
Karl Heuer <kwzh@gnu.org>
parents: 20353
diff changeset
1015 (define-key ctl-x-map "rn" 'number-to-register)
449a1e694780 (ctl-x-map): Add bindings rn and r+
Karl Heuer <kwzh@gnu.org>
parents: 20353
diff changeset
1016 (define-key ctl-x-map "r+" 'increment-register)
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1017 (define-key ctl-x-map "rc" 'clear-rectangle)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1018 (define-key ctl-x-map "rk" 'kill-rectangle)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1019 (define-key ctl-x-map "rd" 'delete-rectangle)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1020 (define-key ctl-x-map "ry" 'yank-rectangle)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1021 (define-key ctl-x-map "ro" 'open-rectangle)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1022 (define-key ctl-x-map "rt" 'string-rectangle)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1023 (define-key ctl-x-map "rw" 'window-configuration-to-register)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1024 (define-key ctl-x-map "rf" 'frame-configuration-to-register)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1025
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1026 (define-key esc-map "q" 'fill-paragraph)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1027 ;; (define-key esc-map "g" 'fill-region)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1028 (define-key ctl-x-map "." 'set-fill-prefix)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1029
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1030 (define-key esc-map "{" 'backward-paragraph)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1031 (define-key esc-map "}" 'forward-paragraph)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1032 (define-key esc-map "h" 'mark-paragraph)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1033 (define-key esc-map "a" 'backward-sentence)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1034 (define-key esc-map "e" 'forward-sentence)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1035 (define-key esc-map "k" 'kill-sentence)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1036 (define-key ctl-x-map "\177" 'backward-kill-sentence)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1037
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1038 (define-key ctl-x-map "[" 'backward-page)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1039 (define-key ctl-x-map "]" 'forward-page)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1040 (define-key ctl-x-map "\C-p" 'mark-page)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1041 (define-key ctl-x-map "l" 'count-lines-page)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1042 (define-key ctl-x-map "np" 'narrow-to-page)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1043 ;; (define-key ctl-x-map "p" 'narrow-to-page)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1044
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1045 (define-key ctl-x-map "al" 'add-mode-abbrev)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1046 (define-key ctl-x-map "a\C-a" 'add-mode-abbrev)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1047 (define-key ctl-x-map "ag" 'add-global-abbrev)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1048 (define-key ctl-x-map "a+" 'add-mode-abbrev)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1049 (define-key ctl-x-map "aig" 'inverse-add-global-abbrev)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1050 (define-key ctl-x-map "ail" 'inverse-add-mode-abbrev)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1051 ;; (define-key ctl-x-map "a\C-h" 'inverse-add-global-abbrev)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1052 (define-key ctl-x-map "a-" 'inverse-add-global-abbrev)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1053 (define-key ctl-x-map "ae" 'expand-abbrev)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1054 (define-key ctl-x-map "a'" 'expand-abbrev)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1055 ;; (define-key ctl-x-map "\C-a" 'add-mode-abbrev)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1056 ;; (define-key ctl-x-map "\+" 'add-global-abbrev)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1057 ;; (define-key ctl-x-map "\C-h" 'inverse-add-mode-abbrev)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1058 ;; (define-key ctl-x-map "\-" 'inverse-add-global-abbrev)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1059 (define-key esc-map "'" 'abbrev-prefix-mark)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1060 (define-key ctl-x-map "'" 'expand-abbrev)
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1061
22424
d8368e1df721 (ctl-x-map): Change vi-dot binding to repeat.
Richard M. Stallman <rms@gnu.org>
parents: 22064
diff changeset
1062 (define-key ctl-x-map "z" 'repeat)
22064
6855330db15c Add binding for C-x z to vi-dot here.
Richard M. Stallman <rms@gnu.org>
parents: 21670
diff changeset
1063
61650
9a27f4097b8f (next-buffer, prev-buffer, next-error)
Kim F. Storm <storm@cua.dk>
parents: 60822
diff changeset
1064 (define-key ctl-x-4-map "c" 'clone-indirect-buffer-other-window)
9a27f4097b8f (next-buffer, prev-buffer, next-error)
Kim F. Storm <storm@cua.dk>
parents: 60822
diff changeset
1065
74410
ae98808fc6e4 (global-map): Bind [signal t] to ignore, to have
Kim F. Storm <storm@cua.dk>
parents: 73774
diff changeset
1066 ;; Signal handlers
74752
259471a9b617 Bind sigusr1 and sigusr2 in special-event-map instead of global-map.
Kim F. Storm <storm@cua.dk>
parents: 74410
diff changeset
1067 (define-key special-event-map [sigusr1] 'ignore)
259471a9b617 Bind sigusr1 and sigusr2 in special-event-map instead of global-map.
Kim F. Storm <storm@cua.dk>
parents: 74410
diff changeset
1068 (define-key special-event-map [sigusr2] 'ignore)
74410
ae98808fc6e4 (global-map): Bind [signal t] to ignore, to have
Kim F. Storm <storm@cua.dk>
parents: 73774
diff changeset
1069
41172
138cb29c858e (mode-line-mode-name): Only put the help-echo property
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 40585
diff changeset
1070 ;; Don't look for autoload cookies in this file.
138cb29c858e (mode-line-mode-name): Only put the help-echo property
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 40585
diff changeset
1071 ;; Local Variables:
138cb29c858e (mode-line-mode-name): Only put the help-echo property
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 40585
diff changeset
1072 ;; no-update-autoloads: t
138cb29c858e (mode-line-mode-name): Only put the help-echo property
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 40585
diff changeset
1073 ;; End:
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1074
59600
26b237e765bf (mode-line-mode-menu): Use bound-and-true-p for all the
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 58942
diff changeset
1075 ;; arch-tag: 23b5c7e6-e47b-49ed-8c6c-ed213c5fffe0
16164
33c5b9ccc216 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1076 ;;; bindings.el ends here