Mercurial > emacs
annotate lisp/abbrev.el @ 39604:3eb5c468047e
*** empty log message ***
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Fri, 05 Oct 2001 12:53:28 +0000 |
parents | a19197c6442f |
children | 0f074a905ca2 |
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 |
19307 | 31 (defcustom only-global-abbrevs nil |
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 This variable automatically becomes buffer-local when set in any fashion. |
5f4d21e85cf6
(abbrev-mode): Customizing sets the default value.
Richard M. Stallman <rms@gnu.org>
parents:
24550
diff
changeset
|
55 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
|
56 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
|
57 buffer." |
19307 | 58 :type 'boolean |
59 :group 'abbrev-mode) | |
60 | |
411 | 61 |
62 (defvar edit-abbrevs-map nil | |
63 "Keymap used in edit-abbrevs.") | |
64 (if edit-abbrevs-map | |
65 nil | |
66 (setq edit-abbrevs-map (make-sparse-keymap)) | |
67 (define-key edit-abbrevs-map "\C-x\C-s" 'edit-abbrevs-redefine) | |
68 (define-key edit-abbrevs-map "\C-c\C-c" 'edit-abbrevs-redefine)) | |
69 | |
70 (defun kill-all-abbrevs () | |
71 "Undefine all defined abbrevs." | |
72 (interactive) | |
73 (let ((tables abbrev-table-name-list)) | |
74 (while tables | |
75 (clear-abbrev-table (symbol-value (car tables))) | |
76 (setq tables (cdr tables))))) | |
77 | |
78 (defun insert-abbrevs () | |
79 "Insert after point a description of all defined abbrevs. | |
80 Mark is set after the inserted text." | |
81 (interactive) | |
82 (push-mark | |
83 (save-excursion | |
84 (let ((tables abbrev-table-name-list)) | |
85 (while tables | |
86 (insert-abbrev-table-description (car tables) t) | |
87 (setq tables (cdr tables)))) | |
88 (point)))) | |
89 | |
31230
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
90 (defun list-abbrevs (&optional local) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
91 "Display a list of defined abbrevs. |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
92 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
|
93 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
|
94 Otherwise display all abbrevs." |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
95 (interactive "P") |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
96 (display-buffer (prepare-abbrev-list-buffer local))) |
411 | 97 |
31230
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
98 (defun abbrev-table-name (table) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
99 "Value is the name of abbrev table TABLE." |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
100 (let ((tables abbrev-table-name-list) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
101 found) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
102 (while (and (not found) tables) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
103 (when (eq (symbol-value (car tables)) table) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
104 (setq found (car tables))) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
105 (setq tables (cdr tables))) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
106 found)) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
107 |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
108 (defun prepare-abbrev-list-buffer (&optional local) |
411 | 109 (save-excursion |
33961
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
110 (let ((table local-abbrev-table)) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
111 (set-buffer (get-buffer-create "*Abbrevs*")) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
112 (erase-buffer) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
113 (if local |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
114 (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
|
115 (dolist (table abbrev-table-name-list) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
116 (insert-abbrev-table-description table t))) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
117 (goto-char (point-min)) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
118 (set-buffer-modified-p nil) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
119 (edit-abbrevs-mode) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
120 (current-buffer)))) |
411 | 121 |
122 (defun edit-abbrevs-mode () | |
123 "Major mode for editing the list of abbrev definitions. | |
124 \\{edit-abbrevs-map}" | |
125 (interactive) | |
126 (setq major-mode 'edit-abbrevs-mode) | |
127 (setq mode-name "Edit-Abbrevs") | |
128 (use-local-map edit-abbrevs-map)) | |
129 | |
130 (defun edit-abbrevs () | |
131 "Alter abbrev definitions by editing a list of them. | |
132 Selects a buffer containing a list of abbrev definitions. | |
133 You can edit them and type \\<edit-abbrevs-map>\\[edit-abbrevs-redefine] to redefine abbrevs | |
134 according to your editing. | |
135 Buffer contains a header line for each abbrev table, | |
136 which is the abbrev table name in parentheses. | |
137 This is followed by one line per abbrev in that table: | |
138 NAME USECOUNT EXPANSION HOOK | |
139 where NAME and EXPANSION are strings with quotes, | |
140 USECOUNT is an integer, and HOOK is any valid function | |
141 or may be omitted (it is usually omitted)." | |
142 (interactive) | |
143 (switch-to-buffer (prepare-abbrev-list-buffer))) | |
144 | |
145 (defun edit-abbrevs-redefine () | |
146 "Redefine abbrevs according to current buffer contents." | |
147 (interactive) | |
148 (define-abbrevs t) | |
149 (set-buffer-modified-p nil)) | |
150 | |
151 (defun define-abbrevs (&optional arg) | |
152 "Define abbrevs according to current visible buffer contents. | |
153 See documentation of `edit-abbrevs' for info on the format of the | |
154 text you must have in the buffer. | |
155 With argument, eliminate all abbrev definitions except | |
156 the ones defined from the buffer now." | |
157 (interactive "P") | |
158 (if arg (kill-all-abbrevs)) | |
159 (save-excursion | |
160 (goto-char (point-min)) | |
161 (while (and (not (eobp)) (re-search-forward "^(" nil t)) | |
162 (let* ((buf (current-buffer)) | |
163 (table (read buf)) | |
862
46630543d659
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
164 abbrevs name hook exp count) |
411 | 165 (forward-line 1) |
166 (while (progn (forward-line 1) | |
167 (not (eolp))) | |
168 (setq name (read buf) count (read buf) exp (read buf)) | |
169 (skip-chars-backward " \t\n\f") | |
170 (setq hook (if (not (eolp)) (read buf))) | |
171 (skip-chars-backward " \t\n\f") | |
172 (setq abbrevs (cons (list name exp hook count) abbrevs))) | |
173 (define-abbrev-table table abbrevs))))) | |
174 | |
175 (defun read-abbrev-file (&optional file quietly) | |
176 "Read abbrev definitions from file written with `write-abbrev-file'. | |
177 Optional argument FILE is the name of the file to read; | |
178 it defaults to the value of `abbrev-file-name'. | |
179 Optional second argument QUIETLY non-nil means don't print anything." | |
180 (interactive "fRead abbrev file: ") | |
181 (load (if (and file (> (length file) 0)) file abbrev-file-name) | |
182 nil quietly) | |
183 (setq save-abbrevs t abbrevs-changed nil)) | |
184 | |
185 (defun quietly-read-abbrev-file (&optional file) | |
186 "Read abbrev definitions from file written with write-abbrev-file. | |
187 Optional argument FILE is the name of the file to read; | |
188 it defaults to the value of `abbrev-file-name'. | |
189 Does not print anything." | |
190 ;(interactive "fRead abbrev file: ") | |
191 (read-abbrev-file file t)) | |
192 | |
193 (defun write-abbrev-file (file) | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
194 "Write all abbrev definitions to a file of Lisp code. |
411 | 195 The file written can be loaded in another session to define the same abbrevs. |
196 The argument FILE is the file name to write." | |
197 (interactive | |
198 (list | |
199 (read-file-name "Write abbrev file: " | |
200 (file-name-directory (expand-file-name abbrev-file-name)) | |
201 abbrev-file-name))) | |
202 (or (and file (> (length file) 0)) | |
203 (setq file abbrev-file-name)) | |
204 (save-excursion | |
205 (set-buffer (get-buffer-create " write-abbrev-file")) | |
206 (erase-buffer) | |
207 (let ((tables abbrev-table-name-list)) | |
208 (while tables | |
209 (insert-abbrev-table-description (car tables) nil) | |
210 (setq tables (cdr tables)))) | |
211 (write-region 1 (point-max) file) | |
212 (erase-buffer))) | |
213 | |
214 (defun add-mode-abbrev (arg) | |
215 "Define mode-specific abbrev for last word(s) before point. | |
216 Argument is how many words before point form the expansion; | |
217 or zero means the region is the expansion. | |
218 A negative argument means to undefine the specified abbrev. | |
219 Reads the abbreviation in the minibuffer. | |
220 | |
221 Don't use this function in a Lisp program; use `define-abbrev' instead." | |
222 (interactive "p") | |
223 (add-abbrev | |
224 (if only-global-abbrevs | |
225 global-abbrev-table | |
226 (or local-abbrev-table | |
227 (error "No per-mode abbrev table"))) | |
228 "Mode" arg)) | |
229 | |
230 (defun add-global-abbrev (arg) | |
231 "Define global (all modes) abbrev for last word(s) before point. | |
232 The prefix argument specifies the number of words before point that form the | |
233 expansion; or zero means the region is the expansion. | |
234 A negative argument means to undefine the specified abbrev. | |
235 This command uses the minibuffer to read the abbreviation. | |
236 | |
237 Don't use this function in a Lisp program; use `define-abbrev' instead." | |
238 (interactive "p") | |
239 (add-abbrev global-abbrev-table "Global" arg)) | |
240 | |
241 (defun add-abbrev (table type arg) | |
242 (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
|
243 (buffer-substring-no-properties |
411 | 244 (point) |
245 (if (= arg 0) (mark) | |
246 (save-excursion (forward-word (- arg)) (point)))))) | |
247 name) | |
248 (setq name | |
249 (read-string (format (if exp "%s abbrev for \"%s\": " | |
250 "Undefine %s abbrev: ") | |
251 type exp))) | |
9180
569ed1f55710
(add-abbrev, inverse-add-abbrev):
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
252 (set-text-properties 0 (length name) nil name) |
411 | 253 (if (or (null exp) |
254 (not (abbrev-expansion name table)) | |
255 (y-or-n-p (format "%s expands to \"%s\"; redefine? " | |
256 name (abbrev-expansion name table)))) | |
257 (define-abbrev table (downcase name) exp)))) | |
258 | |
259 (defun inverse-add-mode-abbrev (arg) | |
260 "Define last word before point as a mode-specific abbrev. | |
261 With prefix argument N, defines the Nth word before point. | |
262 This command uses the minibuffer to read the expansion. | |
263 Expands the abbreviation after defining it." | |
264 (interactive "p") | |
265 (inverse-add-abbrev | |
266 (if only-global-abbrevs | |
267 global-abbrev-table | |
268 (or local-abbrev-table | |
269 (error "No per-mode abbrev table"))) | |
270 "Mode" arg)) | |
271 | |
272 (defun inverse-add-global-abbrev (arg) | |
273 "Define last word before point as a global (mode-independent) abbrev. | |
274 With prefix argument N, defines the Nth word before point. | |
275 This command uses the minibuffer to read the expansion. | |
276 Expands the abbreviation after defining it." | |
277 (interactive "p") | |
278 (inverse-add-abbrev global-abbrev-table "Global" arg)) | |
279 | |
280 (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
|
281 (let (name exp start end) |
411 | 282 (save-excursion |
28186
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
283 (forward-word (1+ (- arg))) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
284 (setq end (point)) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
285 (backward-word 1) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
286 (setq start (point) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
287 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
|
288 |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
289 (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
|
290 nil nil nil t)) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
291 (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
|
292 (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
|
293 name (abbrev-expansion name table)))) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
294 (define-abbrev table (downcase name) exp) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
295 (save-excursion |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
296 (goto-char end) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
297 (expand-abbrev))))) |
411 | 298 |
299 (defun abbrev-prefix-mark (&optional arg) | |
300 "Mark current point as the beginning of an abbrev. | |
301 Abbrev to be expanded starts here rather than at beginning of word. | |
302 This way, you can expand an abbrev with a prefix: insert the prefix, | |
303 use this command, then insert the abbrev." | |
304 (interactive "P") | |
305 (or arg (expand-abbrev)) | |
306 (setq abbrev-start-location (point-marker) | |
307 abbrev-start-location-buffer (current-buffer)) | |
308 (insert "-")) | |
309 | |
310 (defun expand-region-abbrevs (start end &optional noquery) | |
311 "For abbrev occurrence in the region, offer to expand it. | |
312 The user is asked to type y or n for each occurrence. | |
313 A prefix argument means don't query; expand all abbrevs. | |
314 If called from a Lisp program, arguments are START END &optional NOQUERY." | |
315 (interactive "r\nP") | |
316 (save-excursion | |
317 (goto-char start) | |
318 (let ((lim (- (point-max) end)) | |
319 pnt string) | |
320 (while (and (not (eobp)) | |
321 (progn (forward-word 1) | |
322 (<= (setq pnt (point)) (- (point-max) lim)))) | |
323 (if (abbrev-expansion | |
324 (setq string | |
26079
bc18b027a049
(add-abbrev, inverse-add-abbrev, expand-region-abbrevs): Remove
Dave Love <fx@gnu.org>
parents:
24596
diff
changeset
|
325 (buffer-substring-no-properties |
411 | 326 (save-excursion (forward-word -1) (point)) |
327 pnt))) | |
328 (if (or noquery (y-or-n-p (format "Expand `%s'? " string))) | |
329 (expand-abbrev))))))) | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
411
diff
changeset
|
330 |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
411
diff
changeset
|
331 ;;; abbrev.el ends here |