Mercurial > emacs
annotate lisp/abbrev.el @ 89818:44f20ef7b2c5
Fix previous change.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Thu, 12 Feb 2004 08:04:00 +0000 |
parents | 375f2633d815 |
children | 68c22ea6027c |
rev | line source |
---|---|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
411
diff
changeset
|
1 ;;; abbrev.el --- abbrev mode commands for Emacs |
411 | 2 |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
3 ;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc. |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
4 |
38697
a19197c6442f
Keyword added and FSF specified as Maintainer.
Pavel Janík <Pavel@Janik.cz>
parents:
33961
diff
changeset
|
5 ;; Maintainer: FSF |
22250
a77d473867b8
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
19307
diff
changeset
|
6 ;; Keywords: abbrev convenience |
2247
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1329
diff
changeset
|
7 |
411 | 8 ;; This file is part of GNU Emacs. |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
12 ;; the Free Software Foundation; either version 2, or (at your option) |
411 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
14169 | 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
23 ;; Boston, MA 02111-1307, USA. | |
411 | 24 |
2307
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
25 ;;; Commentary: |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
26 |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
27 ;; This facility is documented in the Emacs Manual. |
10e417efb12a
Added or corrected Commentary sections
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2247
diff
changeset
|
28 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
29 ;;; Code: |
411 | 30 |
42560
099200f97432
Remove unnecessary whitespaces.
Pavel Janík <Pavel@Janik.cz>
parents:
41142
diff
changeset
|
31 (defcustom only-global-abbrevs nil |
19307 | 32 "*t means user plans to use global abbrevs only. |
33 This makes the commands that normally define mode-specific abbrevs | |
34 define global abbrevs instead." | |
35 :type 'boolean | |
22250
a77d473867b8
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
19307
diff
changeset
|
36 :group 'abbrev-mode |
a77d473867b8
*** empty log message ***
Dan Nicolaescu <done@ece.arizona.edu>
parents:
19307
diff
changeset
|
37 :group 'convenience) |
411 | 38 |
28822
1c03ffa9c07d
(abbrev-mode): Make ARG optional.
Gerd Moellmann <gerd@gnu.org>
parents:
28186
diff
changeset
|
39 (defun abbrev-mode (&optional arg) |
411 | 40 "Toggle abbrev mode. |
1329 | 41 With argument ARG, turn abbrev mode on iff ARG is positive. |
411 | 42 In abbrev mode, inserting an abbreviation causes it to expand |
43 and be replaced by its expansion." | |
44 (interactive "P") | |
45 (setq abbrev-mode | |
46 (if (null arg) (not abbrev-mode) | |
47 (> (prefix-numeric-value arg) 0))) | |
11558
03792bb111ab
(abbrev-mode): Use force-mode-line-update.
Karl Heuer <kwzh@gnu.org>
parents:
9180
diff
changeset
|
48 (force-mode-line-update)) |
19307 | 49 |
50 (defcustom abbrev-mode nil | |
51 "Toggle abbrev mode. | |
24596
5f4d21e85cf6
(abbrev-mode): Customizing sets the default value.
Richard M. Stallman <rms@gnu.org>
parents:
24550
diff
changeset
|
52 Non-nil means automatically expand abbrevs as they are inserted. |
5f4d21e85cf6
(abbrev-mode): Customizing sets the default value.
Richard M. Stallman <rms@gnu.org>
parents:
24550
diff
changeset
|
53 |
5f4d21e85cf6
(abbrev-mode): Customizing sets the default value.
Richard M. Stallman <rms@gnu.org>
parents:
24550
diff
changeset
|
54 Changing it with \\[customize] sets the default value. |
5f4d21e85cf6
(abbrev-mode): Customizing sets the default value.
Richard M. Stallman <rms@gnu.org>
parents:
24550
diff
changeset
|
55 Use the command `abbrev-mode' to enable or disable Abbrev mode in the current |
5f4d21e85cf6
(abbrev-mode): Customizing sets the default value.
Richard M. Stallman <rms@gnu.org>
parents:
24550
diff
changeset
|
56 buffer." |
19307 | 57 :type 'boolean |
58 :group 'abbrev-mode) | |
59 | |
411 | 60 |
61 (defvar edit-abbrevs-map nil | |
62 "Keymap used in edit-abbrevs.") | |
63 (if edit-abbrevs-map | |
64 nil | |
65 (setq edit-abbrevs-map (make-sparse-keymap)) | |
66 (define-key edit-abbrevs-map "\C-x\C-s" 'edit-abbrevs-redefine) | |
67 (define-key edit-abbrevs-map "\C-c\C-c" 'edit-abbrevs-redefine)) | |
68 | |
69 (defun kill-all-abbrevs () | |
70 "Undefine all defined abbrevs." | |
71 (interactive) | |
72 (let ((tables abbrev-table-name-list)) | |
73 (while tables | |
74 (clear-abbrev-table (symbol-value (car tables))) | |
75 (setq tables (cdr tables))))) | |
76 | |
47424
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
77 (defun copy-abbrev-table (table) |
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
78 "Make a new abbrev-table with the same abbrevs as TABLE." |
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
79 (let ((new-table (make-abbrev-table))) |
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
80 (mapatoms |
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
81 (lambda (symbol) |
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
82 (define-abbrev new-table |
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
83 (symbol-name symbol) |
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
84 (symbol-value symbol) |
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
85 (symbol-function symbol))) |
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
86 table) |
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
87 new-table)) |
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
88 |
411 | 89 (defun insert-abbrevs () |
90 "Insert after point a description of all defined abbrevs. | |
91 Mark is set after the inserted text." | |
92 (interactive) | |
93 (push-mark | |
94 (save-excursion | |
95 (let ((tables abbrev-table-name-list)) | |
96 (while tables | |
97 (insert-abbrev-table-description (car tables) t) | |
98 (setq tables (cdr tables)))) | |
99 (point)))) | |
100 | |
31230
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
101 (defun list-abbrevs (&optional local) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
102 "Display a list of defined abbrevs. |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
103 If LOCAL is non-nil, interactively when invoked with a |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
104 prefix arg, display only local, i.e. mode-specific, abbrevs. |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
105 Otherwise display all abbrevs." |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
106 (interactive "P") |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
107 (display-buffer (prepare-abbrev-list-buffer local))) |
411 | 108 |
31230
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
109 (defun abbrev-table-name (table) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
110 "Value is the name of abbrev table TABLE." |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
111 (let ((tables abbrev-table-name-list) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
112 found) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
113 (while (and (not found) tables) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
114 (when (eq (symbol-value (car tables)) table) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
115 (setq found (car tables))) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
116 (setq tables (cdr tables))) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
117 found)) |
42560
099200f97432
Remove unnecessary whitespaces.
Pavel Janík <Pavel@Janik.cz>
parents:
41142
diff
changeset
|
118 |
31230
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
119 (defun prepare-abbrev-list-buffer (&optional local) |
411 | 120 (save-excursion |
33961
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
121 (let ((table local-abbrev-table)) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
122 (set-buffer (get-buffer-create "*Abbrevs*")) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
123 (erase-buffer) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
124 (if local |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
125 (insert-abbrev-table-description (abbrev-table-name table) t) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
126 (dolist (table abbrev-table-name-list) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
127 (insert-abbrev-table-description table t))) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
128 (goto-char (point-min)) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
129 (set-buffer-modified-p nil) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
130 (edit-abbrevs-mode) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
131 (current-buffer)))) |
411 | 132 |
133 (defun edit-abbrevs-mode () | |
134 "Major mode for editing the list of abbrev definitions. | |
135 \\{edit-abbrevs-map}" | |
136 (interactive) | |
137 (setq major-mode 'edit-abbrevs-mode) | |
138 (setq mode-name "Edit-Abbrevs") | |
139 (use-local-map edit-abbrevs-map)) | |
140 | |
141 (defun edit-abbrevs () | |
142 "Alter abbrev definitions by editing a list of them. | |
143 Selects a buffer containing a list of abbrev definitions. | |
144 You can edit them and type \\<edit-abbrevs-map>\\[edit-abbrevs-redefine] to redefine abbrevs | |
145 according to your editing. | |
146 Buffer contains a header line for each abbrev table, | |
147 which is the abbrev table name in parentheses. | |
148 This is followed by one line per abbrev in that table: | |
149 NAME USECOUNT EXPANSION HOOK | |
150 where NAME and EXPANSION are strings with quotes, | |
151 USECOUNT is an integer, and HOOK is any valid function | |
152 or may be omitted (it is usually omitted)." | |
153 (interactive) | |
154 (switch-to-buffer (prepare-abbrev-list-buffer))) | |
155 | |
156 (defun edit-abbrevs-redefine () | |
157 "Redefine abbrevs according to current buffer contents." | |
158 (interactive) | |
159 (define-abbrevs t) | |
160 (set-buffer-modified-p nil)) | |
161 | |
162 (defun define-abbrevs (&optional arg) | |
163 "Define abbrevs according to current visible buffer contents. | |
164 See documentation of `edit-abbrevs' for info on the format of the | |
165 text you must have in the buffer. | |
166 With argument, eliminate all abbrev definitions except | |
167 the ones defined from the buffer now." | |
168 (interactive "P") | |
169 (if arg (kill-all-abbrevs)) | |
170 (save-excursion | |
171 (goto-char (point-min)) | |
172 (while (and (not (eobp)) (re-search-forward "^(" nil t)) | |
173 (let* ((buf (current-buffer)) | |
174 (table (read buf)) | |
862
46630543d659
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
175 abbrevs name hook exp count) |
411 | 176 (forward-line 1) |
177 (while (progn (forward-line 1) | |
178 (not (eolp))) | |
179 (setq name (read buf) count (read buf) exp (read buf)) | |
180 (skip-chars-backward " \t\n\f") | |
181 (setq hook (if (not (eolp)) (read buf))) | |
182 (skip-chars-backward " \t\n\f") | |
183 (setq abbrevs (cons (list name exp hook count) abbrevs))) | |
184 (define-abbrev-table table abbrevs))))) | |
185 | |
186 (defun read-abbrev-file (&optional file quietly) | |
187 "Read abbrev definitions from file written with `write-abbrev-file'. | |
188 Optional argument FILE is the name of the file to read; | |
189 it defaults to the value of `abbrev-file-name'. | |
40904
0f074a905ca2
(read-abbrev-file): Don't set save-abbrevs.
Richard M. Stallman <rms@gnu.org>
parents:
38697
diff
changeset
|
190 Optional second argument QUIETLY non-nil means don't display a message." |
411 | 191 (interactive "fRead abbrev file: ") |
192 (load (if (and file (> (length file) 0)) file abbrev-file-name) | |
193 nil quietly) | |
40904
0f074a905ca2
(read-abbrev-file): Don't set save-abbrevs.
Richard M. Stallman <rms@gnu.org>
parents:
38697
diff
changeset
|
194 (setq abbrevs-changed nil)) |
411 | 195 |
196 (defun quietly-read-abbrev-file (&optional file) | |
197 "Read abbrev definitions from file written with write-abbrev-file. | |
198 Optional argument FILE is the name of the file to read; | |
199 it defaults to the value of `abbrev-file-name'. | |
40904
0f074a905ca2
(read-abbrev-file): Don't set save-abbrevs.
Richard M. Stallman <rms@gnu.org>
parents:
38697
diff
changeset
|
200 Does not display any message." |
411 | 201 ;(interactive "fRead abbrev file: ") |
202 (read-abbrev-file file t)) | |
203 | |
204 (defun write-abbrev-file (file) | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
205 "Write all abbrev definitions to a file of Lisp code. |
411 | 206 The file written can be loaded in another session to define the same abbrevs. |
207 The argument FILE is the file name to write." | |
208 (interactive | |
209 (list | |
210 (read-file-name "Write abbrev file: " | |
211 (file-name-directory (expand-file-name abbrev-file-name)) | |
212 abbrev-file-name))) | |
213 (or (and file (> (length file) 0)) | |
214 (setq file abbrev-file-name)) | |
49405
7c5f68b0dbd3
(write-abbrev-file): Simplify, and put a coding cookie
Dave Love <fx@gnu.org>
parents:
47654
diff
changeset
|
215 (let ((coding-system-for-write 'emacs-mule)) |
7c5f68b0dbd3
(write-abbrev-file): Simplify, and put a coding cookie
Dave Love <fx@gnu.org>
parents:
47654
diff
changeset
|
216 (with-temp-file file |
7c5f68b0dbd3
(write-abbrev-file): Simplify, and put a coding cookie
Dave Love <fx@gnu.org>
parents:
47654
diff
changeset
|
217 (insert ";;-*-coding: emacs-mule;-*-\n") |
7c5f68b0dbd3
(write-abbrev-file): Simplify, and put a coding cookie
Dave Love <fx@gnu.org>
parents:
47654
diff
changeset
|
218 (dolist (table abbrev-table-name-list) |
7c5f68b0dbd3
(write-abbrev-file): Simplify, and put a coding cookie
Dave Love <fx@gnu.org>
parents:
47654
diff
changeset
|
219 (insert-abbrev-table-description table nil))))) |
411 | 220 |
221 (defun add-mode-abbrev (arg) | |
222 "Define mode-specific abbrev for last word(s) before point. | |
223 Argument is how many words before point form the expansion; | |
224 or zero means the region is the expansion. | |
225 A negative argument means to undefine the specified abbrev. | |
226 Reads the abbreviation in the minibuffer. | |
227 | |
228 Don't use this function in a Lisp program; use `define-abbrev' instead." | |
229 (interactive "p") | |
230 (add-abbrev | |
231 (if only-global-abbrevs | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49405
diff
changeset
|
232 global-abbrev-table |
411 | 233 (or local-abbrev-table |
234 (error "No per-mode abbrev table"))) | |
235 "Mode" arg)) | |
236 | |
237 (defun add-global-abbrev (arg) | |
238 "Define global (all modes) abbrev for last word(s) before point. | |
239 The prefix argument specifies the number of words before point that form the | |
240 expansion; or zero means the region is the expansion. | |
241 A negative argument means to undefine the specified abbrev. | |
242 This command uses the minibuffer to read the abbreviation. | |
243 | |
244 Don't use this function in a Lisp program; use `define-abbrev' instead." | |
245 (interactive "p") | |
246 (add-abbrev global-abbrev-table "Global" arg)) | |
247 | |
248 (defun add-abbrev (table type arg) | |
249 (let ((exp (and (>= arg 0) | |
26079
bc18b027a049
(add-abbrev, inverse-add-abbrev, expand-region-abbrevs): Remove
Dave Love <fx@gnu.org>
parents:
24596
diff
changeset
|
250 (buffer-substring-no-properties |
411 | 251 (point) |
252 (if (= arg 0) (mark) | |
253 (save-excursion (forward-word (- arg)) (point)))))) | |
254 name) | |
255 (setq name | |
256 (read-string (format (if exp "%s abbrev for \"%s\": " | |
257 "Undefine %s abbrev: ") | |
258 type exp))) | |
9180
569ed1f55710
(add-abbrev, inverse-add-abbrev):
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
259 (set-text-properties 0 (length name) nil name) |
411 | 260 (if (or (null exp) |
261 (not (abbrev-expansion name table)) | |
262 (y-or-n-p (format "%s expands to \"%s\"; redefine? " | |
263 name (abbrev-expansion name table)))) | |
264 (define-abbrev table (downcase name) exp)))) | |
42560
099200f97432
Remove unnecessary whitespaces.
Pavel Janík <Pavel@Janik.cz>
parents:
41142
diff
changeset
|
265 |
411 | 266 (defun inverse-add-mode-abbrev (arg) |
267 "Define last word before point as a mode-specific abbrev. | |
268 With prefix argument N, defines the Nth word before point. | |
269 This command uses the minibuffer to read the expansion. | |
270 Expands the abbreviation after defining it." | |
271 (interactive "p") | |
272 (inverse-add-abbrev | |
273 (if only-global-abbrevs | |
42560
099200f97432
Remove unnecessary whitespaces.
Pavel Janík <Pavel@Janik.cz>
parents:
41142
diff
changeset
|
274 global-abbrev-table |
411 | 275 (or local-abbrev-table |
276 (error "No per-mode abbrev table"))) | |
277 "Mode" arg)) | |
278 | |
279 (defun inverse-add-global-abbrev (arg) | |
280 "Define last word before point as a global (mode-independent) abbrev. | |
281 With prefix argument N, defines the Nth word before point. | |
282 This command uses the minibuffer to read the expansion. | |
283 Expands the abbreviation after defining it." | |
284 (interactive "p") | |
285 (inverse-add-abbrev global-abbrev-table "Global" arg)) | |
286 | |
287 (defun inverse-add-abbrev (table type arg) | |
28186
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
288 (let (name exp start end) |
411 | 289 (save-excursion |
28186
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
290 (forward-word (1+ (- arg))) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
291 (setq end (point)) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
292 (backward-word 1) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
293 (setq start (point) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
294 name (buffer-substring-no-properties start end))) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
295 |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
296 (setq exp (read-string (format "%s expansion for \"%s\": " type name) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
297 nil nil nil t)) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
298 (when (or (not (abbrev-expansion name table)) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
299 (y-or-n-p (format "%s expands to \"%s\"; redefine? " |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
300 name (abbrev-expansion name table)))) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
301 (define-abbrev table (downcase name) exp) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
302 (save-excursion |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
303 (goto-char end) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
304 (expand-abbrev))))) |
411 | 305 |
306 (defun abbrev-prefix-mark (&optional arg) | |
307 "Mark current point as the beginning of an abbrev. | |
308 Abbrev to be expanded starts here rather than at beginning of word. | |
309 This way, you can expand an abbrev with a prefix: insert the prefix, | |
310 use this command, then insert the abbrev." | |
311 (interactive "P") | |
312 (or arg (expand-abbrev)) | |
313 (setq abbrev-start-location (point-marker) | |
314 abbrev-start-location-buffer (current-buffer)) | |
315 (insert "-")) | |
316 | |
317 (defun expand-region-abbrevs (start end &optional noquery) | |
318 "For abbrev occurrence in the region, offer to expand it. | |
319 The user is asked to type y or n for each occurrence. | |
320 A prefix argument means don't query; expand all abbrevs. | |
321 If called from a Lisp program, arguments are START END &optional NOQUERY." | |
322 (interactive "r\nP") | |
323 (save-excursion | |
324 (goto-char start) | |
325 (let ((lim (- (point-max) end)) | |
326 pnt string) | |
327 (while (and (not (eobp)) | |
328 (progn (forward-word 1) | |
329 (<= (setq pnt (point)) (- (point-max) lim)))) | |
330 (if (abbrev-expansion | |
331 (setq string | |
26079
bc18b027a049
(add-abbrev, inverse-add-abbrev, expand-region-abbrevs): Remove
Dave Love <fx@gnu.org>
parents:
24596
diff
changeset
|
332 (buffer-substring-no-properties |
411 | 333 (save-excursion (forward-word -1) (point)) |
334 pnt))) | |
335 (if (or noquery (y-or-n-p (format "Expand `%s'? " string))) | |
336 (expand-abbrev))))))) | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
411
diff
changeset
|
337 |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
411
diff
changeset
|
338 ;;; abbrev.el ends here |