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