Mercurial > emacs
annotate lisp/bindings.el @ 28923:dcafe3c9cd6c
(sh-while-getopts) <sh>: Handle case that
user-specified option string is empty.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Mon, 15 May 2000 20:14:39 +0000 |
| parents | 763e873d5257 |
| children | ac55b16c8782 |
| rev | line source |
|---|---|
| 16164 | 1 ;;; bindings.el --- define standard key bindings and some variables. |
| 2 | |
|
27616
18b19e347f65
(mode-line-mule-info): Fix/extend last change.
Dave Love <fx@gnu.org>
parents:
27238
diff
changeset
|
3 ;; Copyright (C) 1985,86,87,92,93,94,95,96,99,2000 |
|
18b19e347f65
(mode-line-mule-info): Fix/extend last change.
Dave Love <fx@gnu.org>
parents:
27238
diff
changeset
|
4 ;; 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 ;;; | |
| 31 ;;; a backslash-newline is used at the beginning of a documentation string | |
| 32 ;;; when that string should be stored in the file etc/DOCnnn, not in core. | |
| 33 ;;; | |
| 34 ;;; Such strings read into Lisp as numbers (during the pure-loading phase). | |
| 35 ;;; | |
| 36 ;;; But you must obey certain rules to make sure the string is understood | |
|
25537
f329ed7625ee
Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents:
25312
diff
changeset
|
37 ;;; and goes into etc/DOCnnn properly. |
| 16164 | 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 | |
|
27238
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
50 (defun make-mode-line-mouse2-map (f) "\ |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
51 Return a keymap with single entry for mouse-2 on mode line. |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
52 This is defined to run function F with no args in the buffer |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
53 corresponding to the mode line clicked." |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
54 (let ((map (make-sparse-keymap))) |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
55 (define-key map [mode-line mouse-2] |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
56 `(lambda (e) |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
57 (interactive "e") |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
58 (save-selected-window |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
59 (select-window |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
60 (posn-window (event-start e))) |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
61 (,f) |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
62 (force-mode-line-update)))) |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
63 map)) |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
64 |
|
27649
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
65 (defvar mode-line-input-method-map |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
66 (let ((map (make-sparse-keymap))) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
67 (define-key map [mode-line mouse-2] |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
68 (lambda (e) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
69 (interactive "e") |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
70 (save-selected-window |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
71 (select-window |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
72 (posn-window (event-start e))) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
73 (toggle-input-method) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
74 (force-mode-line-update)))) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
75 (define-key map [mode-line mouse-3] |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
76 (lambda (e) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
77 (interactive "e") |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
78 (save-selected-window |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
79 (select-window |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
80 (posn-window (event-start e))) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
81 (describe-current-input-method)))) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
82 (purecopy map))) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
83 |
|
27238
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
84 (defvar mode-line-mule-info |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
85 `("" |
|
27616
18b19e347f65
(mode-line-mule-info): Fix/extend last change.
Dave Love <fx@gnu.org>
parents:
27238
diff
changeset
|
86 (current-input-method |
|
27649
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
87 (:eval |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
88 (propertize current-input-method-title |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
89 'help-echo (concat ,(purecopy "Input method: ") |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
90 current-input-method |
|
28105
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
91 ,(purecopy ". mouse-2 disables, \ |
|
27649
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
92 mouse-3 describes")) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
93 'local-map mode-line-input-method-map))) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
94 ,(propertize "%Z" |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
95 'help-echo (purecopy "Coding system information: \ |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
96 see M-x describe-coding-system"))) |
|
18303
8d8d4aa12426
(mode-line-mule-info): Change style for showing
Kenichi Handa <handa@m17n.org>
parents:
18225
diff
changeset
|
97 "Mode-line control for displaying information of multilingual environment. |
|
8d8d4aa12426
(mode-line-mule-info): Change style for showing
Kenichi Handa <handa@m17n.org>
parents:
18225
diff
changeset
|
98 Normally it displays current input method (if any activated) and |
|
8d8d4aa12426
(mode-line-mule-info): Change style for showing
Kenichi Handa <handa@m17n.org>
parents:
18225
diff
changeset
|
99 mnemonics of the following coding systems: |
|
8d8d4aa12426
(mode-line-mule-info): Change style for showing
Kenichi Handa <handa@m17n.org>
parents:
18225
diff
changeset
|
100 coding system for saving or writing the current buffer |
|
8d8d4aa12426
(mode-line-mule-info): Change style for showing
Kenichi Handa <handa@m17n.org>
parents:
18225
diff
changeset
|
101 coding system for keyboard input (if Emacs is running on terminal) |
| 25282 | 102 coding system for terminal output (if Emacs is running on terminal)" |
| 103 ;; Currently not: | |
| 104 ;;; coding system for decoding output of buffer process (if any) | |
| 105 ;;; coding system for encoding text to send to buffer process (if any)." | |
| 106 ) | |
|
17058
8d2ff69b0c0a
(mode-line-mule-info): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
16776
diff
changeset
|
107 |
|
8d2ff69b0c0a
(mode-line-mule-info): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
16776
diff
changeset
|
108 (make-variable-buffer-local 'mode-line-mule-info) |
|
8d2ff69b0c0a
(mode-line-mule-info): New variable.
Karl Heuer <kwzh@gnu.org>
parents:
16776
diff
changeset
|
109 |
|
25537
f329ed7625ee
Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents:
25312
diff
changeset
|
110 (defvar mode-line-buffer-identification (purecopy '("%12b")) "\ |
|
f329ed7625ee
Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents:
25312
diff
changeset
|
111 Mode-line control for identifying the buffer being displayed. |
|
17812
7fb38e7df85b
(mode-line-mule-info): Delete the colon.
Richard M. Stallman <rms@gnu.org>
parents:
17793
diff
changeset
|
112 Its default value is (\"%12b\"). |
| 16164 | 113 Major modes that edit things other than ordinary files may change this |
| 114 \(e.g. Info, Dired,...)") | |
| 115 | |
| 116 (make-variable-buffer-local 'mode-line-buffer-identification) | |
| 117 | |
|
17812
7fb38e7df85b
(mode-line-mule-info): Delete the colon.
Richard M. Stallman <rms@gnu.org>
parents:
17793
diff
changeset
|
118 (defvar mode-line-frame-identification '("-%F ")) |
|
7fb38e7df85b
(mode-line-mule-info): Delete the colon.
Richard M. Stallman <rms@gnu.org>
parents:
17793
diff
changeset
|
119 |
|
25537
f329ed7625ee
Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents:
25312
diff
changeset
|
120 (defvar mode-line-process nil "\ |
|
f329ed7625ee
Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents:
25312
diff
changeset
|
121 Mode-line control for displaying info on process status. |
| 16164 | 122 Normally nil in most modes, since there is no process to display.") |
| 123 | |
| 124 (make-variable-buffer-local 'mode-line-process) | |
| 125 | |
|
27238
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
126 (defvar mode-line-modified |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
127 (list (propertize |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
128 "%1*%1+" |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
129 'help-echo (purecopy "Read-only status: mouse-2 toggles it") |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
130 'local-map (purecopy (make-mode-line-mouse2-map #'toggle-read-only)))) |
| 16164 | 131 "Mode-line control for displaying whether current buffer is modified.") |
| 132 | |
| 133 (make-variable-buffer-local 'mode-line-modified) | |
| 134 | |
| 135 (setq-default mode-line-format | |
|
28105
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
136 (let* ((help-echo |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
137 ;; The multi-line message doesn't work terribly well on the |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
138 ;; bottom mode line... Better ideas? |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
139 ;;; "\ |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
140 ;;; mouse-1: select window, mouse-2: delete others, mouse-3: delete, |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
141 ;;; drag-mouse-1: resize, C-mouse-2: split horizontally" |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
142 "mouse-1: select window, mouse-2: delete others, mouse-3: delete ...") |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
143 (dashes (propertize "--" 'help-echo help-echo))) |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
144 (list |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
145 (propertize "-" 'help-echo help-echo) |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
146 'mode-line-mule-info |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
147 'mode-line-modified |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
148 'mode-line-frame-identification |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
149 'mode-line-buffer-identification |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
150 (propertize " " 'help-echo help-echo) |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
151 'global-mode-string |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
152 (propertize " %[(" 'help-echo help-echo) |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
153 '(:eval (mode-line-mode-name)) 'mode-line-process 'minor-mode-alist |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
154 (propertize "%n" 'help-echo "mouse-2: widen" |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
155 'local-map (make-mode-line-mouse2-map #'widen)) |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
156 (propertize ")%]--" 'help-echo help-echo) |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
157 `(which-func-mode ("" which-func-format ,dashes)) |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
158 `(line-number-mode ("L%l" ,dashes)) |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
159 `(column-number-mode ("C%c" ,dashes)) |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
160 (purecopy '(-3 . "%p")) |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
161 (propertize "-%-" 'help-echo help-echo)))) |
| 16164 | 162 |
| 163 (defvar minor-mode-alist nil "\ | |
| 164 Alist saying how to show minor modes in the mode line. | |
| 165 Each element looks like (VARIABLE STRING); | |
| 166 STRING is included in the mode line iff VARIABLE's value is non-nil. | |
| 167 | |
| 168 Actually, STRING need not be a string; any possible mode-line element | |
| 169 is okay. See `mode-line-format'.") | |
|
16523
53306ee8953d
(minor-mode-alist): Don't use purecopy.
Richard M. Stallman <rms@gnu.org>
parents:
16164
diff
changeset
|
170 ;; Don't use purecopy here--some people want to change these strings. |
|
27238
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
171 (setq minor-mode-alist |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
172 (list |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
173 (list 'abbrev-mode |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
174 (propertize " Abbrev" |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
175 'help-echo (purecopy |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
176 "mouse-2: turn off Abbrev mode") |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
177 'local-map (purecopy (make-mode-line-mouse2-map |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
178 #'abbrev-mode)))) |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
179 '(overwrite-mode overwrite-mode) |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
180 (list 'auto-fill-function |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
181 (propertize " Fill" |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
182 'help-echo (purecopy |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
183 "mouse-2: turn off Autofill mode") |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
184 'local-map (purecopy (make-mode-line-mouse2-map |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
185 #'auto-fill-mode)))) |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
186 ;; not really a minor mode... |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
187 '(defining-kbd-macro " Def"))) |
| 16164 | 188 |
|
25537
f329ed7625ee
Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents:
25312
diff
changeset
|
189 (defvar mode-line-buffer-identification-keymap nil "\ |
|
f329ed7625ee
Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents:
25312
diff
changeset
|
190 Keymap for what is displayed by `mode-line-buffer-identification'.") |
|
24985
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
191 |
|
25537
f329ed7625ee
Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents:
25312
diff
changeset
|
192 (defvar mode-line-minor-mode-keymap nil "\ |
|
f329ed7625ee
Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents:
25312
diff
changeset
|
193 Keymap for what is displayed by `mode-line-mode-name'.") |
|
24985
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
194 |
|
25537
f329ed7625ee
Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents:
25312
diff
changeset
|
195 (defvar mode-line-mode-menu-keymap nil "\ |
|
f329ed7625ee
Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents:
25312
diff
changeset
|
196 Keymap for mode operations menu in the mode line.") |
|
24985
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
197 |
|
25537
f329ed7625ee
Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents:
25312
diff
changeset
|
198 (defun mode-line-unbury-buffer () "\ |
|
f329ed7625ee
Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents:
25312
diff
changeset
|
199 Switch to the last buffer in the buffer list that is not hidden." |
|
24985
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
200 (interactive) |
|
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
201 (let ((list (reverse (buffer-list)))) |
|
25613
422a19bbd516
(mode-line-unbury-buffer): Use aref instead of sref.
Gerd Moellmann <gerd@gnu.org>
parents:
25537
diff
changeset
|
202 (while (eq (aref (buffer-name (car list)) 0) ? ) |
|
24985
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
203 (setq list (cdr list))) |
|
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
204 (switch-to-buffer (car list)))) |
|
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
205 |
|
25537
f329ed7625ee
Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents:
25312
diff
changeset
|
206 (defun mode-line-other-buffer () "\ |
|
f329ed7625ee
Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents:
25312
diff
changeset
|
207 Switch to the most recently selected buffer other than the current one." |
|
24985
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
208 (interactive) |
|
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
209 (switch-to-buffer (other-buffer))) |
|
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
210 |
|
27649
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
211 (defvar mode-line-mode-menu (make-sparse-keymap "Minor Modes") "\ |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
212 Menu of mode operations in the mode line.") |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
213 |
|
24985
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
214 (defun mode-line-mode-menu-1 (event) |
|
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
215 (interactive "e") |
|
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
216 (save-selected-window |
|
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
217 (select-window (posn-window (event-start event))) |
|
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
218 (let* ((selection (mode-line-mode-menu event)) |
|
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
219 (binding (and selection (lookup-key mode-line-mode-menu |
|
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
220 (vector (car selection)))))) |
|
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
221 (if binding |
|
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
222 (call-interactively binding))))) |
|
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
223 |
|
25537
f329ed7625ee
Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents:
25312
diff
changeset
|
224 (defun mode-line-mode-name () "\ |
|
f329ed7625ee
Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents:
25312
diff
changeset
|
225 Return a string to display in the mode line for the current mode name." |
|
24985
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
226 (let (length (result mode-name)) |
|
27649
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
227 (let ((local-map (get-text-property 0 'local-map result)) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
228 (help-echo (get-text-property 0 'help-echo result))) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
229 (setq result (copy-sequence result)) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
230 ;; Add `local-map' property if there isn't already one. |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
231 (when (and (null local-map) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
232 (null (next-single-property-change 0 'local-map result))) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
233 (put-text-property 0 (length result) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
234 'local-map mode-line-minor-mode-keymap result)) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
235 ;; Add `help-echo' property if there isn't already one. |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
236 (when (and (null help-echo) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
237 (null (next-single-property-change 0 'help-echo result))) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
238 (put-text-property 0 (length result) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
239 'help-echo "mouse-3: minor mode menu" result))) |
|
24985
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
240 result)) |
|
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
241 |
| 25898 | 242 (defmacro bound-and-true-p (var) |
| 243 "Return the value of symbol VAR if it is bound, else nil." | |
|
26052
b6e77fbb182b
(completion-ignored-extensions): Added ".sparcf"
Gerd Moellmann <gerd@gnu.org>
parents:
25898
diff
changeset
|
244 `(and (boundp (quote ,var)) ,var)) |
| 25898 | 245 |
|
27238
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
246 (define-key mode-line-mode-menu [abbrev-mode] |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
247 `(menu-item ,(purecopy "Abbrev") abbrev-mode |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
248 :button (:toggle . abbrev-mode))) |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
249 (define-key mode-line-mode-menu [auto-revert-mode] |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
250 `(menu-item ,(purecopy "Auto revert") auto-revert-mode |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
251 :button (:toggle . auto-revert-mode))) |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
252 (define-key mode-line-mode-menu [auto-fill-mode] |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
253 `(menu-item ,(purecopy "Auto-fill") auto-fill-mode |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
254 :button (:toggle . auto-fill-function))) |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
255 (define-key mode-line-mode-menu [column-number-mode] |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
256 `(menu-item ,(purecopy "Column number") column-number-mode |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
257 :button (:toggle . column-number-mode))) |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
258 (define-key mode-line-mode-menu [flyspell-mode] |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
259 `(menu-item ,(purecopy "Flyspell") flyspell-mode |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
260 :button (:toggle . (bound-and-true-p flyspell-mode)))) |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
261 (define-key mode-line-mode-menu [font-lock-mode] |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
262 `(menu-item ,(purecopy "Font-lock") font-lock-mode |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
263 :button (:toggle . font-lock-mode))) |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
264 (define-key mode-line-mode-menu [hide-ifdef-mode] |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
265 `(menu-item ,(purecopy "Hide ifdef") hide-ifdef-mode |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
266 :button (:toggle . (bound-and-true-p hide-ifdef-mode)))) |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
267 (define-key mode-line-mode-menu [highlight-changes-mode] |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
268 `(menu-item ,(purecopy "Highlight changes") highlight-changes-mode |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
269 :button (:toggle . highlight-changes-mode))) |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
270 (define-key mode-line-mode-menu [line-number-mode] |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
271 `(menu-item ,(purecopy "Line number") line-number-mode |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
272 :button (:toggle . line-number-mode))) |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
273 (define-key mode-line-mode-menu [outline-minor-mode] |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
274 `(menu-item ,(purecopy "Outline") outline-minor-mode |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
275 :button (:toggle . (bound-and-true-p outline-minor-mode)))) |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
276 (define-key mode-line-mode-menu [overwrite-mode] |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
277 `(menu-item ,(purecopy "Overwrite") overwrite-mode |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
278 :button (:toggle . overwrite-mode))) |
|
bfb9906d58b5
(make-mode-line-mouse2-map): New function.
Dave Love <fx@gnu.org>
parents:
27151
diff
changeset
|
279 |
|
27649
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
280 (defun mode-line-mode-menu (event) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
281 (interactive "@e") |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
282 (x-popup-menu event mode-line-mode-menu)) |
|
24985
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
283 |
|
27649
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
284 ;; Add menu of buffer operations to the buffer identification part |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
285 ;; of the mode line. |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
286 (let ((map (make-sparse-keymap))) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
287 (define-key map [mode-line mouse-1] 'mode-line-other-buffer) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
288 (define-key map [header-line mouse-1] 'mode-line-other-buffer) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
289 (define-key map [mode-line M-mouse-2] 'mode-line-unbury-buffer) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
290 (define-key map [header-line M-mouse-2] 'mode-line-unbury-buffer) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
291 (define-key map [mode-line mouse-2] 'bury-buffer) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
292 (define-key map [header-line mouse-2] 'bury-buffer) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
293 (define-key map [mode-line down-mouse-3] 'mouse-buffer-menu) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
294 (define-key map [header-line down-mouse-3] 'mouse-buffer-menu) |
|
27783
7d38d1e5d9bb
(propertized-buffer-identification): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27649
diff
changeset
|
295 (setq mode-line-buffer-identification-keymap map)) |
|
7d38d1e5d9bb
(propertized-buffer-identification): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27649
diff
changeset
|
296 |
|
7d38d1e5d9bb
(propertized-buffer-identification): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27649
diff
changeset
|
297 (defun propertized-buffer-identification (fmt) |
|
7d38d1e5d9bb
(propertized-buffer-identification): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27649
diff
changeset
|
298 "Return a list suitable for `mode-line-buffer-identification'. |
|
7d38d1e5d9bb
(propertized-buffer-identification): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27649
diff
changeset
|
299 FMT is a format specifier such as \"%12b\". This function adds |
|
7d38d1e5d9bb
(propertized-buffer-identification): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27649
diff
changeset
|
300 text properties for face, help-echo, and local-map to it." |
|
7d38d1e5d9bb
(propertized-buffer-identification): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27649
diff
changeset
|
301 (list (propertize fmt |
|
7d38d1e5d9bb
(propertized-buffer-identification): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27649
diff
changeset
|
302 'face '(:weight bold) |
|
7d38d1e5d9bb
(propertized-buffer-identification): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27649
diff
changeset
|
303 'help-echo (purecopy "mouse-1: other \ |
|
27649
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
304 buffer, mouse-2: prev, M-mouse-2: next, mouse-3: buffer menu") |
|
27783
7d38d1e5d9bb
(propertized-buffer-identification): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27649
diff
changeset
|
305 'local-map mode-line-buffer-identification-keymap))) |
|
7d38d1e5d9bb
(propertized-buffer-identification): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27649
diff
changeset
|
306 |
|
7d38d1e5d9bb
(propertized-buffer-identification): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27649
diff
changeset
|
307 (setq-default mode-line-buffer-identification |
|
7d38d1e5d9bb
(propertized-buffer-identification): New function.
Gerd Moellmann <gerd@gnu.org>
parents:
27649
diff
changeset
|
308 (propertized-buffer-identification "%12b")) |
|
24985
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
309 |
|
27649
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
310 ;; Menu of minor modes. |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
311 (let ((map (make-sparse-keymap))) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
312 (define-key map [mode-line down-mouse-3] 'mode-line-mode-menu-1) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
313 (define-key map [header-line down-mouse-3] 'mode-line-mode-menu-1) |
|
248e0de1bae2
(mode-line-input-method-map): New variable.
Dave Love <fx@gnu.org>
parents:
27616
diff
changeset
|
314 (setq mode-line-minor-mode-keymap map)) |
|
24985
e4f2a5d1dc28
(make-mode-line-mouse-sensitive): Add key
Gerd Moellmann <gerd@gnu.org>
parents:
24606
diff
changeset
|
315 |
| 16164 | 316 ;; These variables are used by autoloadable packages. |
| 317 ;; They are defined here so that they do not get overridden | |
| 318 ;; by the loading of those packages. | |
| 319 | |
| 320 ;; Names in directory that end in one of these | |
| 321 ;; are ignored in completion, | |
| 322 ;; making it more likely you will get a unique match. | |
| 323 (setq completion-ignored-extensions | |
|
16776
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
324 (append |
|
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
325 (cond ((or (eq system-type 'ms-dos) (eq system-type 'windows-nt)) |
|
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
326 '(".o" "~" ".bin" ".bak" ".obj" ".map" |
|
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
327 ".a" ".ln" ".blg" ".bbl")) |
|
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
328 ((eq system-type 'vax-vms) |
|
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
329 '(".obj" ".exe" ".bin" ".lbin" ".sbin" |
|
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
330 ".brn" ".rnt" ".mem" ".lni" ".lis" |
|
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
331 ".olb" ".tlb" ".mlb" ".hlb")) |
|
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
332 (t |
|
26052
b6e77fbb182b
(completion-ignored-extensions): Added ".sparcf"
Gerd Moellmann <gerd@gnu.org>
parents:
25898
diff
changeset
|
333 '(".o" "~" ".bin" ".lbin" ".fasl" ".ufsl" |
|
16776
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
334 ".a" ".ln" ".blg" ".bbl"))) |
|
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
335 '(".elc" ".lof" |
|
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
336 ".glo" ".idx" ".lot" |
|
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
337 ;; TeX-related |
|
26951
b0cf9bf5d505
(completion-ignored-extensions): Add .pdf.
Gerd Moellmann <gerd@gnu.org>
parents:
26926
diff
changeset
|
338 ".dvi" ".fmt" ".tfm" ".pdf" |
|
21309
dfa28803a4aa
(completion-ignored-extensions): Add a few.
Richard M. Stallman <rms@gnu.org>
parents:
20798
diff
changeset
|
339 ;; Java compiled |
|
dfa28803a4aa
(completion-ignored-extensions): Add a few.
Richard M. Stallman <rms@gnu.org>
parents:
20798
diff
changeset
|
340 ".class" |
|
dfa28803a4aa
(completion-ignored-extensions): Add a few.
Richard M. Stallman <rms@gnu.org>
parents:
20798
diff
changeset
|
341 ;; Clisp |
|
dfa28803a4aa
(completion-ignored-extensions): Add a few.
Richard M. Stallman <rms@gnu.org>
parents:
20798
diff
changeset
|
342 ".fas" ".lib" |
|
dfa28803a4aa
(completion-ignored-extensions): Add a few.
Richard M. Stallman <rms@gnu.org>
parents:
20798
diff
changeset
|
343 ;; CMUCL |
|
26052
b6e77fbb182b
(completion-ignored-extensions): Added ".sparcf"
Gerd Moellmann <gerd@gnu.org>
parents:
25898
diff
changeset
|
344 ".x86f" ".sparcf" |
|
16776
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
345 ;; Texinfo-related |
|
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
346 ".toc" ".log" ".aux" |
|
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
347 ".cp" ".fn" ".ky" ".pg" ".tp" ".vr" |
|
b998fe0016d5
(completion-ignored-extensions):
Richard M. Stallman <rms@gnu.org>
parents:
16691
diff
changeset
|
348 ".cps" ".fns" ".kys" ".pgs" ".tps" ".vrs"))) |
| 16164 | 349 |
|
28105
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
350 ;; Packages should add to this list appropriately when they are |
|
763e873d5257
(mode-line-format): Fix line-number and
Dave Love <fx@gnu.org>
parents:
27783
diff
changeset
|
351 ;; loaded, rather than listing everything here. |
| 16164 | 352 (setq debug-ignored-errors |
| 353 '(beginning-of-line beginning-of-buffer end-of-line | |
| 354 end-of-buffer end-of-file buffer-read-only | |
|
21309
dfa28803a4aa
(completion-ignored-extensions): Add a few.
Richard M. Stallman <rms@gnu.org>
parents:
20798
diff
changeset
|
355 file-supersession |
| 16164 | 356 "^Previous command was not a yank$" |
| 357 "^Minibuffer window is not active$" | |
| 358 "^End of history; no next item$" | |
| 359 "^Beginning of history; no preceding item$" | |
| 360 "^No recursive edit is in progress$" | |
| 361 "^Changes to be undone are outside visible portion of buffer$" | |
| 362 "^No undo information in this buffer$" | |
| 363 "^No further undo information$" | |
| 364 "^Save not confirmed$" | |
| 365 "^Recover-file cancelled\\.$" | |
|
20798
25b0721fc2fc
(debug-ignored-errors): Add some elements.
Richard M. Stallman <rms@gnu.org>
parents:
20638
diff
changeset
|
366 "^Cannot switch buffers in a dedicated window$" |
| 16164 | 367 |
| 368 ;; comint | |
| 369 "^Not at command line$" | |
| 370 "^Empty input ring$" | |
| 371 "^No history$" | |
| 372 "^Not found$";; To common? | |
| 373 "^Current buffer has no process$" | |
| 374 | |
| 375 ;; dabbrev | |
|
17537
353927a72c58
(debug-ignored-errors): Update the regexps for
Richard M. Stallman <rms@gnu.org>
parents:
17058
diff
changeset
|
376 "^No dynamic expansion for .* found$" |
|
353927a72c58
(debug-ignored-errors): Update the regexps for
Richard M. Stallman <rms@gnu.org>
parents:
17058
diff
changeset
|
377 "^No further dynamic expansion for .* found$" |
|
18954
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
378 "^No possible abbreviation preceding point$" |
| 16164 | 379 |
| 380 ;; Completion | |
| 381 "^To complete, the point must be after a symbol at least [0-9]* character long\\.$" | |
| 382 "^The string \".*\" is too short to be saved as a completion\\.$" | |
| 383 | |
| 384 ;; Compile | |
| 385 "^No more errors\\( yet\\|\\)$" | |
| 386 | |
| 387 ;; Gnus | |
| 388 "^NNTP: Connection closed\\.$" | |
| 389 | |
| 390 ;; info | |
| 391 "^Node has no Previous$" | |
|
20798
25b0721fc2fc
(debug-ignored-errors): Add some elements.
Richard M. Stallman <rms@gnu.org>
parents:
20638
diff
changeset
|
392 "^No menu in this node$" |
|
25b0721fc2fc
(debug-ignored-errors): Add some elements.
Richard M. Stallman <rms@gnu.org>
parents:
20638
diff
changeset
|
393 "^Node has no Next$" |
| 16164 | 394 "^No \".*\" in index$" |
| 395 | |
| 396 ;; imenu | |
| 397 "^No items suitable for an index found in this buffer\\.$" | |
|
18450
327eba076416
(debug-ignored-errors): Correct the error messages
Richard M. Stallman <rms@gnu.org>
parents:
18325
diff
changeset
|
398 "^This buffer cannot use `imenu-default-create-index-function'$" |
|
327eba076416
(debug-ignored-errors): Correct the error messages
Richard M. Stallman <rms@gnu.org>
parents:
18325
diff
changeset
|
399 "^The mode `.*' does not support Imenu$" |
| 16164 | 400 |
| 401 ;; ispell | |
| 402 "^No word found to check!$" | |
| 403 | |
| 404 ;; mh-e | |
| 405 "^Cursor not pointing to message$" | |
| 406 "^There is no other window$" | |
| 407 | |
| 408 ;; man | |
| 409 "^No manpage [0-9]* found$" | |
|
21634
f1b591066832
(debug-ignored-errors): Add and remove strings.
Richard M. Stallman <rms@gnu.org>
parents:
21309
diff
changeset
|
410 "^Can't find the .* manpage$" |
| 16164 | 411 |
| 412 ;; etags | |
|
18624
ecf30a8391d5
(complete-symbol): Accept an argument.
Richard M. Stallman <rms@gnu.org>
parents:
18524
diff
changeset
|
413 "^No tags table in use; use .* to select one$" |
| 16164 | 414 "^There is no default tag$" |
| 415 "^No previous tag locations$" | |
| 416 "^File .* is not a valid tags table$" | |
| 417 "^No \\(more \\|\\)tags \\(matching\\|containing\\) " | |
| 418 "^Rerun etags: `.*' not found in " | |
|
18624
ecf30a8391d5
(complete-symbol): Accept an argument.
Richard M. Stallman <rms@gnu.org>
parents:
18524
diff
changeset
|
419 "^All files processed$" |
|
ecf30a8391d5
(complete-symbol): Accept an argument.
Richard M. Stallman <rms@gnu.org>
parents:
18524
diff
changeset
|
420 "^No .* or .* in progress$" |
| 16164 | 421 "^File .* not in current tags tables$" |
|
18624
ecf30a8391d5
(complete-symbol): Accept an argument.
Richard M. Stallman <rms@gnu.org>
parents:
18524
diff
changeset
|
422 "^No tags table loaded" |
| 16164 | 423 "^Nothing to complete$" |
|
18954
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
424 |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
425 ;; ediff |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
426 "^Errors in diff output. Diff output is in " |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
427 "^Hmm... I don't see an Ediff command around here...$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
428 "^Undocumented command! Type `G' in Ediff Control Panel to drop a note to the Ediff maintainer$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
429 ": This command runs in Ediff Control Buffer only!$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
430 ": Invalid op in ediff-check-version$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
431 "^ediff-shrink-window-C can be used only for merging jobs$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
432 "^Lost difference info on these directories$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
433 "^This command is inapplicable in the present context$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
434 "^This session group has no parent$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
435 "^Can't hide active session, $" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
436 "^Ediff: something wrong--no multiple diffs buffer$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
437 "^Can't make context diff for Session $" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
438 "^The patch buffer wasn't found$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
439 "^Aborted$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
440 "^This Ediff session is not part of a session group$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
441 "^No active Ediff sessions or corrupted session registry$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
442 "^No session info in this line$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
443 "^`.*' is not an ordinary file$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
444 "^Patch appears to have failed$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
445 "^Recomputation of differences cancelled$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
446 "^No fine differences in this mode$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
447 "^Lost connection to ancestor buffer...sorry$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
448 "^Not merging with ancestor$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
449 "^Don't know how to toggle read-only in buffer " |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
450 "Emacs is not running as a window application$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
451 "^This command makes sense only when merging with an ancestor$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
452 "^At end of the difference list$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
453 "^At beginning of the difference list$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
454 "^Nothing saved for diff .* in buffer " |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
455 "^Buffer is out of sync for file " |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
456 "^Buffer out of sync for file " |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
457 "^Output from `diff' not found$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
458 "^You forgot to specify a region in buffer " |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
459 "^All right. Make up your mind and come back...$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
460 "^Current buffer is not visiting any file$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
461 "^Failed to retrieve revision: $" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
462 "^Can't determine display width.$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
463 "^File `.*' does not exist or is not readable$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
464 "^File `.*' is a directory$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
465 "^Buffer .* doesn't exist$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
466 "^Directories . and . are the same: " |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
467 "^Directory merge aborted$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
468 "^Merge of directory revisions aborted$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
469 "^Buffer .* doesn't exist$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
470 "^There is no file to merge$" |
|
c247e7c26139
(debug-ignored-errors): Update the dabbrev.el errors.
Richard M. Stallman <rms@gnu.org>
parents:
18939
diff
changeset
|
471 "^Version control package .*.el not found. Use vc.el instead$" |
|
21670
808ecc2eaa84
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21634
diff
changeset
|
472 |
|
808ecc2eaa84
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
21634
diff
changeset
|
473 ;; cus-edit |
|
25629
ddc2a0543928
(debug-ignored-errors): Restore BBDB stuff.
Dave Love <fx@gnu.org>
parents:
25613
diff
changeset
|
474 "^No user options have changed defaults in recent Emacs versions$" |
|
ddc2a0543928
(debug-ignored-errors): Restore BBDB stuff.
Dave Love <fx@gnu.org>
parents:
25613
diff
changeset
|
475 |
|
ddc2a0543928
(debug-ignored-errors): Restore BBDB stuff.
Dave Love <fx@gnu.org>
parents:
25613
diff
changeset
|
476 ;; BBDB |
|
ddc2a0543928
(debug-ignored-errors): Restore BBDB stuff.
Dave Love <fx@gnu.org>
parents:
25613
diff
changeset
|
477 "^no previous record$" |
|
ddc2a0543928
(debug-ignored-errors): Restore BBDB stuff.
Dave Love <fx@gnu.org>
parents:
25613
diff
changeset
|
478 "^no next record$")) |
| 16164 | 479 |
| 480 | |
| 481 (make-variable-buffer-local 'indent-tabs-mode) | |
| 482 | |
|
23783
d015bfcaaead
(features): Add `base64' to this list.
Richard M. Stallman <rms@gnu.org>
parents:
22705
diff
changeset
|
483 ;; We have base64 functions built in now. |
|
d015bfcaaead
(features): Add `base64' to this list.
Richard M. Stallman <rms@gnu.org>
parents:
22705
diff
changeset
|
484 (add-to-list 'features 'base64) |
|
d015bfcaaead
(features): Add `base64' to this list.
Richard M. Stallman <rms@gnu.org>
parents:
22705
diff
changeset
|
485 |
|
18325
65986b1a2cd6
(complete-symbol): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18303
diff
changeset
|
486 (define-key esc-map "\t" 'complete-symbol) |
|
65986b1a2cd6
(complete-symbol): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18303
diff
changeset
|
487 |
|
25537
f329ed7625ee
Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents:
25312
diff
changeset
|
488 (defun complete-symbol (arg) "\ |
|
f329ed7625ee
Make some doc strings obey the make-docfile convention.
Dave Love <fx@gnu.org>
parents:
25312
diff
changeset
|
489 Perform tags completion on the text around point. |
| 16164 | 490 Completes to the set of names listed in the current tags table. |
| 491 The string to complete is chosen in the same way as the default | |
|
24606
6f29d3fe8aa5
(complete-symbol): Invert meaning of prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
23783
diff
changeset
|
492 for \\[find-tag] (which see). |
|
6f29d3fe8aa5
(complete-symbol): Invert meaning of prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
23783
diff
changeset
|
493 |
|
6f29d3fe8aa5
(complete-symbol): Invert meaning of prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
23783
diff
changeset
|
494 With a prefix argument, this command does completion within |
|
6f29d3fe8aa5
(complete-symbol): Invert meaning of prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
23783
diff
changeset
|
495 the collection of symbols listed in the index of the manual for the |
|
6f29d3fe8aa5
(complete-symbol): Invert meaning of prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
23783
diff
changeset
|
496 language you are using." |
|
18325
65986b1a2cd6
(complete-symbol): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18303
diff
changeset
|
497 (interactive "P") |
|
65986b1a2cd6
(complete-symbol): New function.
Richard M. Stallman <rms@gnu.org>
parents:
18303
diff
changeset
|
498 (if arg |
|
24606
6f29d3fe8aa5
(complete-symbol): Invert meaning of prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
23783
diff
changeset
|
499 (info-complete-symbol) |
|
6f29d3fe8aa5
(complete-symbol): Invert meaning of prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
23783
diff
changeset
|
500 (if (fboundp 'complete-tag) |
|
6f29d3fe8aa5
(complete-symbol): Invert meaning of prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
23783
diff
changeset
|
501 (complete-tag) |
|
6f29d3fe8aa5
(complete-symbol): Invert meaning of prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
23783
diff
changeset
|
502 ;; Don't autoload etags if we have no tags table. |
|
6f29d3fe8aa5
(complete-symbol): Invert meaning of prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
23783
diff
changeset
|
503 (error (substitute-command-keys |
|
6f29d3fe8aa5
(complete-symbol): Invert meaning of prefix arg.
Richard M. Stallman <rms@gnu.org>
parents:
23783
diff
changeset
|
504 "No tags table loaded; use \\[visit-tags-table] to load one"))))) |
| 16164 | 505 |
| 506 ;; Reduce total amount of space we must allocate during this function | |
| 507 ;; that we will not need to keep permanently. | |
| 508 (garbage-collect) | |
| 509 | |
|
22705
34b38e5d0e9d
Make all multibyte characters self-insert.
Kenichi Handa <handa@m17n.org>
parents:
22424
diff
changeset
|
510 ;; Make all multibyte characters self-insert. |
|
34b38e5d0e9d
Make all multibyte characters self-insert.
Kenichi Handa <handa@m17n.org>
parents:
22424
diff
changeset
|
511 (let ((l (generic-character-list)) |
|
34b38e5d0e9d
Make all multibyte characters self-insert.
Kenichi Handa <handa@m17n.org>
parents:
22424
diff
changeset
|
512 (table (nth 1 global-map))) |
|
34b38e5d0e9d
Make all multibyte characters self-insert.
Kenichi Handa <handa@m17n.org>
parents:
22424
diff
changeset
|
513 (while l |
|
34b38e5d0e9d
Make all multibyte characters self-insert.
Kenichi Handa <handa@m17n.org>
parents:
22424
diff
changeset
|
514 (set-char-table-default table (car l) 'self-insert-command) |
|
34b38e5d0e9d
Make all multibyte characters self-insert.
Kenichi Handa <handa@m17n.org>
parents:
22424
diff
changeset
|
515 (setq l (cdr l)))) |
|
17784
5b2fa4a13a8b
Define Latin-1, Latin-2 and Latin-3 chars as self-inserting.
Richard M. Stallman <rms@gnu.org>
parents:
17595
diff
changeset
|
516 |
| 16164 | 517 (setq help-event-list '(help f1)) |
| 518 | |
|
20577
46c697b88c83
(minor-mode-overriding-map-alist):
Richard M. Stallman <rms@gnu.org>
parents:
20416
diff
changeset
|
519 (make-variable-buffer-local 'minor-mode-overriding-map-alist) |
|
46c697b88c83
(minor-mode-overriding-map-alist):
Richard M. Stallman <rms@gnu.org>
parents:
20416
diff
changeset
|
520 |
| 16164 | 521 ;These commands are defined in editfns.c |
| 522 ;but they are not assigned to keys there. | |
| 523 (put 'narrow-to-region 'disabled t) | |
| 524 (define-key ctl-x-map "nn" 'narrow-to-region) | |
| 525 (define-key ctl-x-map "nw" 'widen) | |
| 526 ;; (define-key ctl-x-map "n" 'narrow-to-region) | |
| 527 ;; (define-key ctl-x-map "w" 'widen) | |
| 528 | |
| 529 (define-key global-map "\C-j" 'newline-and-indent) | |
| 530 (define-key global-map "\C-m" 'newline) | |
| 531 (define-key global-map "\C-o" 'open-line) | |
| 532 (define-key esc-map "\C-o" 'split-line) | |
| 533 (define-key global-map "\C-q" 'quoted-insert) | |
| 534 (define-key esc-map "^" 'delete-indentation) | |
| 535 (define-key esc-map "\\" 'delete-horizontal-space) | |
| 536 (define-key esc-map "m" 'back-to-indentation) | |
| 537 (define-key ctl-x-map "\C-o" 'delete-blank-lines) | |
| 538 (define-key esc-map " " 'just-one-space) | |
| 539 (define-key esc-map "z" 'zap-to-char) | |
| 540 (define-key esc-map "=" 'count-lines-region) | |
| 541 (define-key ctl-x-map "=" 'what-cursor-position) | |
| 542 (define-key esc-map ":" 'eval-expression) | |
| 543 ;; Define ESC ESC : like ESC : for people who type ESC ESC out of habit. | |
| 544 (define-key esc-map "\M-:" 'eval-expression) | |
| 545 ;; Changed from C-x ESC so that function keys work following C-x. | |
| 546 (define-key ctl-x-map "\e\e" 'repeat-complex-command) | |
| 547 ;; New binding analogous to M-:. | |
| 548 (define-key ctl-x-map "\M-:" 'repeat-complex-command) | |
| 549 (define-key ctl-x-map "u" 'advertised-undo) | |
| 550 ;; Many people are used to typing C-/ on X terminals and getting C-_. | |
| 551 (define-key global-map [?\C-/] 'undo) | |
| 552 (define-key global-map "\C-_" 'undo) | |
| 553 (define-key esc-map "!" 'shell-command) | |
| 554 (define-key esc-map "|" 'shell-command-on-region) | |
| 555 | |
| 556 ;; This is an experiment--make up and down arrows do history. | |
| 557 (define-key minibuffer-local-map [up] 'previous-history-element) | |
| 558 (define-key minibuffer-local-map [down] 'next-history-element) | |
| 559 (define-key minibuffer-local-ns-map [up] 'previous-history-element) | |
| 560 (define-key minibuffer-local-ns-map [down] 'next-history-element) | |
| 561 (define-key minibuffer-local-completion-map [up] 'previous-history-element) | |
| 562 (define-key minibuffer-local-completion-map [down] 'next-history-element) | |
| 563 (define-key minibuffer-local-must-match-map [up] 'previous-history-element) | |
| 564 (define-key minibuffer-local-must-match-map [down] 'next-history-element) | |
| 565 | |
| 566 (define-key global-map "\C-u" 'universal-argument) | |
| 567 (let ((i ?0)) | |
| 568 (while (<= i ?9) | |
| 569 (define-key esc-map (char-to-string i) 'digit-argument) | |
| 570 (setq i (1+ i)))) | |
| 571 (define-key esc-map "-" 'negative-argument) | |
| 572 ;; Define control-digits. | |
| 573 (let ((i ?0)) | |
| 574 (while (<= i ?9) | |
| 575 (define-key global-map (read (format "[?\\C-%c]" i)) 'digit-argument) | |
| 576 (setq i (1+ i)))) | |
| 577 (define-key global-map [?\C--] 'negative-argument) | |
| 578 ;; Define control-meta-digits. | |
| 579 (let ((i ?0)) | |
| 580 (while (<= i ?9) | |
| 581 (define-key esc-map (read (format "[?\\C-%c]" i)) 'digit-argument) | |
| 582 (setq i (1+ i)))) | |
| 583 (define-key global-map [?\C-\M--] 'negative-argument) | |
| 584 | |
| 585 (define-key global-map "\C-k" 'kill-line) | |
| 586 (define-key global-map "\C-w" 'kill-region) | |
| 587 (define-key esc-map "w" 'kill-ring-save) | |
| 588 (define-key esc-map "\C-w" 'append-next-kill) | |
| 589 (define-key global-map "\C-y" 'yank) | |
| 590 (define-key esc-map "y" 'yank-pop) | |
| 591 | |
| 592 ;; (define-key ctl-x-map "a" 'append-to-buffer) | |
| 593 | |
| 594 (define-key global-map "\C-@" 'set-mark-command) | |
| 595 ;; Many people are used to typing C-SPC and getting C-@. | |
|
20638
c3360a392ae4
Change "?\C-\ " to "?\C- " because "\ " is changed
Kenichi Handa <handa@m17n.org>
parents:
20577
diff
changeset
|
596 (define-key global-map [?\C- ] 'set-mark-command) |
| 16164 | 597 (define-key ctl-x-map "\C-x" 'exchange-point-and-mark) |
| 598 (define-key ctl-x-map "\C-@" 'pop-global-mark) | |
|
20638
c3360a392ae4
Change "?\C-\ " to "?\C- " because "\ " is changed
Kenichi Handa <handa@m17n.org>
parents:
20577
diff
changeset
|
599 (define-key ctl-x-map [?\C- ] 'pop-global-mark) |
| 16164 | 600 |
| 601 (define-key global-map "\C-n" 'next-line) | |
| 602 (define-key global-map "\C-p" 'previous-line) | |
| 603 (define-key ctl-x-map "\C-n" 'set-goal-column) | |
| 604 | |
| 605 ;;(defun function-key-error () | |
| 606 ;; (interactive) | |
| 607 ;; (error "That function key is not bound to anything.")) | |
| 608 | |
| 609 (define-key global-map [menu] 'execute-extended-command) | |
| 610 (define-key global-map [find] 'search-forward) | |
| 611 | |
| 612 ;; natural bindings for terminal keycaps --- defined in X keysym order | |
| 613 (define-key global-map [home] 'beginning-of-buffer) | |
| 614 (define-key global-map [M-home] 'beginning-of-buffer-other-window) | |
| 615 (define-key global-map [left] 'backward-char) | |
| 616 (define-key global-map [up] 'previous-line) | |
| 617 (define-key global-map [right] 'forward-char) | |
| 618 (define-key global-map [down] 'next-line) | |
| 619 (define-key global-map [prior] 'scroll-down) | |
| 620 (define-key global-map [next] 'scroll-up) | |
| 621 (define-key global-map [C-up] 'backward-paragraph) | |
| 622 (define-key global-map [C-down] 'forward-paragraph) | |
| 623 (define-key global-map [C-prior] 'scroll-right) | |
| 624 (define-key global-map [C-next] 'scroll-left) | |
| 625 (define-key global-map [M-next] 'scroll-other-window) | |
| 626 (define-key global-map [M-prior] 'scroll-other-window-down) | |
| 627 (define-key global-map [end] 'end-of-buffer) | |
| 628 (define-key global-map [M-end] 'end-of-buffer-other-window) | |
| 629 (define-key global-map [begin] 'beginning-of-buffer) | |
| 630 (define-key global-map [M-begin] 'beginning-of-buffer-other-window) | |
| 631 ;; (define-key global-map [select] 'function-key-error) | |
| 632 ;; (define-key global-map [print] 'function-key-error) | |
| 633 (define-key global-map [execute] 'execute-extended-command) | |
| 634 (define-key global-map [insert] 'overwrite-mode) | |
| 635 (define-key global-map [C-insert] 'kill-ring-save) | |
| 636 (define-key global-map [S-insert] 'yank) | |
| 637 (define-key global-map [undo] 'undo) | |
| 638 (define-key global-map [redo] 'repeat-complex-command) | |
| 639 ;; (define-key global-map [clearline] 'function-key-error) | |
| 640 (define-key global-map [insertline] 'open-line) | |
| 641 (define-key global-map [deleteline] 'kill-line) | |
| 642 ;; (define-key global-map [insertchar] 'function-key-error) | |
| 643 (define-key global-map [deletechar] 'delete-char) | |
| 644 ;; (define-key global-map [backtab] 'function-key-error) | |
| 645 ;; (define-key global-map [f1] 'function-key-error) | |
| 646 ;; (define-key global-map [f2] 'function-key-error) | |
| 647 ;; (define-key global-map [f3] 'function-key-error) | |
| 648 ;; (define-key global-map [f4] 'function-key-error) | |
| 649 ;; (define-key global-map [f5] 'function-key-error) | |
| 650 ;; (define-key global-map [f6] 'function-key-error) | |
| 651 ;; (define-key global-map [f7] 'function-key-error) | |
| 652 ;; (define-key global-map [f8] 'function-key-error) | |
| 653 ;; (define-key global-map [f9] 'function-key-error) | |
| 654 ;; (define-key global-map [f10] 'function-key-error) | |
| 655 ;; (define-key global-map [f11] 'function-key-error) | |
| 656 ;; (define-key global-map [f12] 'function-key-error) | |
| 657 ;; (define-key global-map [f13] 'function-key-error) | |
| 658 ;; (define-key global-map [f14] 'function-key-error) | |
| 659 ;; (define-key global-map [f15] 'function-key-error) | |
| 660 ;; (define-key global-map [f16] 'function-key-error) | |
| 661 ;; (define-key global-map [f17] 'function-key-error) | |
| 662 ;; (define-key global-map [f18] 'function-key-error) | |
| 663 ;; (define-key global-map [f19] 'function-key-error) | |
| 664 ;; (define-key global-map [f20] 'function-key-error) | |
| 665 ;; (define-key global-map [f21] 'function-key-error) | |
| 666 ;; (define-key global-map [f22] 'function-key-error) | |
| 667 ;; (define-key global-map [f23] 'function-key-error) | |
| 668 ;; (define-key global-map [f24] 'function-key-error) | |
| 669 ;; (define-key global-map [f25] 'function-key-error) | |
| 670 ;; (define-key global-map [f26] 'function-key-error) | |
| 671 ;; (define-key global-map [f27] 'function-key-error) | |
| 672 ;; (define-key global-map [f28] 'function-key-error) | |
| 673 ;; (define-key global-map [f29] 'function-key-error) | |
| 674 ;; (define-key global-map [f30] 'function-key-error) | |
| 675 ;; (define-key global-map [f31] 'function-key-error) | |
| 676 ;; (define-key global-map [f32] 'function-key-error) | |
| 677 ;; (define-key global-map [f33] 'function-key-error) | |
| 678 ;; (define-key global-map [f34] 'function-key-error) | |
| 679 ;; (define-key global-map [f35] 'function-key-error) | |
| 680 ;; (define-key global-map [kp-backtab] 'function-key-error) | |
| 681 ;; (define-key global-map [kp-space] 'function-key-error) | |
| 682 ;; (define-key global-map [kp-tab] 'function-key-error) | |
| 683 ;; (define-key global-map [kp-enter] 'function-key-error) | |
| 684 ;; (define-key global-map [kp-f1] 'function-key-error) | |
| 685 ;; (define-key global-map [kp-f2] 'function-key-error) | |
| 686 ;; (define-key global-map [kp-f3] 'function-key-error) | |
| 687 ;; (define-key global-map [kp-f4] 'function-key-error) | |
| 688 ;; (define-key global-map [kp-multiply] 'function-key-error) | |
| 689 ;; (define-key global-map [kp-add] 'function-key-error) | |
| 690 ;; (define-key global-map [kp-separator] 'function-key-error) | |
| 691 ;; (define-key global-map [kp-subtract] 'function-key-error) | |
| 692 ;; (define-key global-map [kp-decimal] 'function-key-error) | |
| 693 ;; (define-key global-map [kp-divide] 'function-key-error) | |
| 694 ;; (define-key global-map [kp-0] 'function-key-error) | |
| 695 ;; (define-key global-map [kp-1] 'function-key-error) | |
| 696 ;; (define-key global-map [kp-2] 'function-key-error) | |
| 697 ;; (define-key global-map [kp-3] 'function-key-error) | |
| 698 ;; (define-key global-map [kp-4] 'function-key-error) | |
| 699 ;; (define-key global-map [kp-5] 'recenter) | |
| 700 ;; (define-key global-map [kp-6] 'function-key-error) | |
| 701 ;; (define-key global-map [kp-7] 'function-key-error) | |
| 702 ;; (define-key global-map [kp-8] 'function-key-error) | |
| 703 ;; (define-key global-map [kp-9] 'function-key-error) | |
| 704 ;; (define-key global-map [kp-equal] 'function-key-error) | |
| 705 | |
| 706 ;; X11R6 distinguishes these keys from the non-kp keys. | |
| 707 ;; Make them behave like the non-kp keys unless otherwise bound. | |
| 708 (define-key function-key-map [kp-home] [home]) | |
| 709 (define-key function-key-map [kp-left] [left]) | |
| 710 (define-key function-key-map [kp-up] [up]) | |
| 711 (define-key function-key-map [kp-right] [right]) | |
| 712 (define-key function-key-map [kp-down] [down]) | |
| 713 (define-key function-key-map [kp-prior] [prior]) | |
| 714 (define-key function-key-map [kp-next] [next]) | |
| 715 (define-key function-key-map [M-kp-next] [M-next]) | |
| 716 (define-key function-key-map [kp-end] [end]) | |
| 717 (define-key function-key-map [kp-begin] [begin]) | |
| 718 (define-key function-key-map [kp-insert] [insert]) | |
| 719 (define-key function-key-map [kp-delete] [delete]) | |
| 720 | |
| 721 (define-key global-map [mouse-movement] 'ignore) | |
| 722 | |
| 723 (define-key global-map "\C-t" 'transpose-chars) | |
| 724 (define-key esc-map "t" 'transpose-words) | |
| 725 (define-key esc-map "\C-t" 'transpose-sexps) | |
| 726 (define-key ctl-x-map "\C-t" 'transpose-lines) | |
| 727 | |
| 728 (define-key esc-map ";" 'indent-for-comment) | |
| 729 (define-key esc-map "j" 'indent-new-comment-line) | |
| 730 (define-key esc-map "\C-j" 'indent-new-comment-line) | |
| 731 (define-key ctl-x-map ";" 'set-comment-column) | |
| 732 (define-key ctl-x-map "f" 'set-fill-column) | |
| 733 (define-key ctl-x-map "$" 'set-selective-display) | |
| 734 | |
| 735 (define-key esc-map "@" 'mark-word) | |
| 736 (define-key esc-map "f" 'forward-word) | |
| 737 (define-key esc-map "b" 'backward-word) | |
| 738 (define-key esc-map "d" 'kill-word) | |
| 739 (define-key esc-map "\177" 'backward-kill-word) | |
| 740 | |
| 741 (define-key esc-map "<" 'beginning-of-buffer) | |
| 742 (define-key esc-map ">" 'end-of-buffer) | |
| 743 (define-key ctl-x-map "h" 'mark-whole-buffer) | |
| 744 (define-key esc-map "\\" 'delete-horizontal-space) | |
| 745 | |
| 746 (defalias 'mode-specific-command-prefix (make-sparse-keymap)) | |
|
16691
285f4e41d163
Change defconsts to defvars.
Richard M. Stallman <rms@gnu.org>
parents:
16523
diff
changeset
|
747 (defvar mode-specific-map (symbol-function 'mode-specific-command-prefix) |
| 16164 | 748 "Keymap for characters following C-c.") |
| 749 (define-key global-map "\C-c" 'mode-specific-command-prefix) | |
| 750 | |
| 751 (global-set-key [M-right] 'forward-word) | |
| 752 (global-set-key [M-left] 'backward-word) | |
| 753 ;; ilya@math.ohio-state.edu says these bindings are standard on PC editors. | |
| 754 (global-set-key [C-right] 'forward-word) | |
| 755 (global-set-key [C-left] 'backward-word) | |
| 756 ;; This is not quite compatible, but at least is analogous | |
| 757 (global-set-key [C-delete] 'backward-kill-word) | |
| 758 ;; This is "move to the clipboard", or as close as we come. | |
| 759 (global-set-key [S-delete] 'kill-region) | |
| 760 | |
| 761 (define-key esc-map "\C-f" 'forward-sexp) | |
| 762 (define-key esc-map "\C-b" 'backward-sexp) | |
| 763 (define-key esc-map "\C-u" 'backward-up-list) | |
| 764 (define-key esc-map "\C-@" 'mark-sexp) | |
| 765 (define-key esc-map [?\C-\ ] 'mark-sexp) | |
| 766 (define-key esc-map "\C-d" 'down-list) | |
| 767 (define-key esc-map "\C-k" 'kill-sexp) | |
| 768 (define-key global-map [C-M-delete] 'backward-kill-sexp) | |
| 769 (define-key global-map [C-M-backspace] 'backward-kill-sexp) | |
| 770 (define-key esc-map "\C-n" 'forward-list) | |
| 771 (define-key esc-map "\C-p" 'backward-list) | |
| 772 (define-key esc-map "\C-a" 'beginning-of-defun) | |
| 773 (define-key esc-map "\C-e" 'end-of-defun) | |
| 774 (define-key esc-map "\C-h" 'mark-defun) | |
| 775 (define-key ctl-x-map "nd" 'narrow-to-defun) | |
| 776 (define-key esc-map "(" 'insert-parentheses) | |
| 777 (define-key esc-map ")" 'move-past-close-and-reindent) | |
| 778 | |
| 779 (define-key ctl-x-map "\C-e" 'eval-last-sexp) | |
|
17595
eaad8bd00b12
Bind C-x m, C-x 4 m, C-x 5 m to compose-mail...
Richard M. Stallman <rms@gnu.org>
parents:
17537
diff
changeset
|
780 |
|
eaad8bd00b12
Bind C-x m, C-x 4 m, C-x 5 m to compose-mail...
Richard M. Stallman <rms@gnu.org>
parents:
17537
diff
changeset
|
781 (define-key ctl-x-map "m" 'compose-mail) |
|
eaad8bd00b12
Bind C-x m, C-x 4 m, C-x 5 m to compose-mail...
Richard M. Stallman <rms@gnu.org>
parents:
17537
diff
changeset
|
782 (define-key ctl-x-4-map "m" 'compose-mail-other-window) |
|
eaad8bd00b12
Bind C-x m, C-x 4 m, C-x 5 m to compose-mail...
Richard M. Stallman <rms@gnu.org>
parents:
17537
diff
changeset
|
783 (define-key ctl-x-5-map "m" 'compose-mail-other-frame) |
| 16164 | 784 |
| 785 (define-key ctl-x-map "r\C-@" 'point-to-register) | |
| 786 (define-key ctl-x-map [?r ?\C-\ ] 'point-to-register) | |
| 787 (define-key ctl-x-map "r " 'point-to-register) | |
| 788 (define-key ctl-x-map "rj" 'jump-to-register) | |
| 789 (define-key ctl-x-map "rs" 'copy-to-register) | |
| 790 (define-key ctl-x-map "rx" 'copy-to-register) | |
| 791 (define-key ctl-x-map "ri" 'insert-register) | |
| 792 (define-key ctl-x-map "rg" 'insert-register) | |
| 793 (define-key ctl-x-map "rr" 'copy-rectangle-to-register) | |
|
20416
449a1e694780
(ctl-x-map): Add bindings rn and r+
Karl Heuer <kwzh@gnu.org>
parents:
20353
diff
changeset
|
794 (define-key ctl-x-map "rn" 'number-to-register) |
|
449a1e694780
(ctl-x-map): Add bindings rn and r+
Karl Heuer <kwzh@gnu.org>
parents:
20353
diff
changeset
|
795 (define-key ctl-x-map "r+" 'increment-register) |
| 16164 | 796 (define-key ctl-x-map "rc" 'clear-rectangle) |
| 797 (define-key ctl-x-map "rk" 'kill-rectangle) | |
| 798 (define-key ctl-x-map "rd" 'delete-rectangle) | |
| 799 (define-key ctl-x-map "ry" 'yank-rectangle) | |
| 800 (define-key ctl-x-map "ro" 'open-rectangle) | |
| 801 (define-key ctl-x-map "rt" 'string-rectangle) | |
| 802 (define-key ctl-x-map "rw" 'window-configuration-to-register) | |
| 803 (define-key ctl-x-map "rf" 'frame-configuration-to-register) | |
| 804 | |
| 805 ;; These key bindings are deprecated; use the above C-x r map instead. | |
| 806 ;; We use these aliases so \[...] will show the C-x r bindings instead. | |
| 807 (defalias 'point-to-register-compatibility-binding 'point-to-register) | |
| 808 (defalias 'jump-to-register-compatibility-binding 'jump-to-register) | |
| 809 (defalias 'copy-to-register-compatibility-binding 'copy-to-register) | |
| 810 (defalias 'insert-register-compatibility-binding 'insert-register) | |
| 811 (define-key ctl-x-map "/" 'point-to-register-compatibility-binding) | |
| 812 (define-key ctl-x-map "j" 'jump-to-register-compatibility-binding) | |
| 813 (define-key ctl-x-map "x" 'copy-to-register-compatibility-binding) | |
| 814 (define-key ctl-x-map "g" 'insert-register-compatibility-binding) | |
| 815 ;; (define-key ctl-x-map "r" 'copy-rectangle-to-register) | |
| 816 | |
| 817 (define-key esc-map "q" 'fill-paragraph) | |
| 818 ;; (define-key esc-map "g" 'fill-region) | |
| 819 (define-key ctl-x-map "." 'set-fill-prefix) | |
| 820 | |
| 821 (define-key esc-map "{" 'backward-paragraph) | |
| 822 (define-key esc-map "}" 'forward-paragraph) | |
| 823 (define-key esc-map "h" 'mark-paragraph) | |
| 824 (define-key esc-map "a" 'backward-sentence) | |
| 825 (define-key esc-map "e" 'forward-sentence) | |
| 826 (define-key esc-map "k" 'kill-sentence) | |
| 827 (define-key ctl-x-map "\177" 'backward-kill-sentence) | |
| 828 | |
| 829 (define-key ctl-x-map "[" 'backward-page) | |
| 830 (define-key ctl-x-map "]" 'forward-page) | |
| 831 (define-key ctl-x-map "\C-p" 'mark-page) | |
| 832 (define-key ctl-x-map "l" 'count-lines-page) | |
| 833 (define-key ctl-x-map "np" 'narrow-to-page) | |
| 834 ;; (define-key ctl-x-map "p" 'narrow-to-page) | |
| 835 | |
| 836 (define-key ctl-x-map "al" 'add-mode-abbrev) | |
| 837 (define-key ctl-x-map "a\C-a" 'add-mode-abbrev) | |
| 838 (define-key ctl-x-map "ag" 'add-global-abbrev) | |
| 839 (define-key ctl-x-map "a+" 'add-mode-abbrev) | |
| 840 (define-key ctl-x-map "aig" 'inverse-add-global-abbrev) | |
| 841 (define-key ctl-x-map "ail" 'inverse-add-mode-abbrev) | |
| 842 ;; (define-key ctl-x-map "a\C-h" 'inverse-add-global-abbrev) | |
| 843 (define-key ctl-x-map "a-" 'inverse-add-global-abbrev) | |
| 844 (define-key ctl-x-map "ae" 'expand-abbrev) | |
| 845 (define-key ctl-x-map "a'" 'expand-abbrev) | |
| 846 ;; (define-key ctl-x-map "\C-a" 'add-mode-abbrev) | |
| 847 ;; (define-key ctl-x-map "\+" 'add-global-abbrev) | |
| 848 ;; (define-key ctl-x-map "\C-h" 'inverse-add-mode-abbrev) | |
| 849 ;; (define-key ctl-x-map "\-" 'inverse-add-global-abbrev) | |
| 850 (define-key esc-map "'" 'abbrev-prefix-mark) | |
| 851 (define-key ctl-x-map "'" 'expand-abbrev) | |
| 852 | |
|
22424
d8368e1df721
(ctl-x-map): Change vi-dot binding to repeat.
Richard M. Stallman <rms@gnu.org>
parents:
22064
diff
changeset
|
853 (define-key ctl-x-map "z" 'repeat) |
|
22064
6855330db15c
Add binding for C-x z to vi-dot here.
Richard M. Stallman <rms@gnu.org>
parents:
21670
diff
changeset
|
854 |
| 16164 | 855 ;;; Don't compile this file; it contains no large function definitions. |
| 856 ;;; Don't look for autoload cookies in this file. | |
| 857 ;;; Local Variables: | |
| 858 ;;; no-byte-compile: t | |
| 859 ;;; no-update-autoloads: t | |
| 860 ;;; End: | |
| 861 | |
| 862 ;;; bindings.el ends here |
