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