Mercurial > emacs
annotate lisp/abbrev.el @ 56304:31b76ccf08bf
(query-replace-interactive): Change type from boolean
to choice. Add value `initial'.
(query-replace-read-args): Handle value `initial' of
query-replace-interactive.
author | Juri Linkov <juri@jurta.org> |
---|---|
date | Thu, 01 Jul 2004 09:58:44 +0000 |
parents | bd7bc33213fd |
children | ceca427e7f83 4c90ffeb71c5 |
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) |
56078
bd7bc33213fd
(abbrev-mode, edit-abbrevs-map): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
54134
diff
changeset
|
40 "Toggle Abbrev mode in the current buffer. |
1329 | 41 With argument ARG, turn abbrev mode on iff ARG is positive. |
56078
bd7bc33213fd
(abbrev-mode, edit-abbrevs-map): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
54134
diff
changeset
|
42 In Abbrev mode, inserting an abbreviation causes it to expand |
411 | 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 | |
56078
bd7bc33213fd
(abbrev-mode, edit-abbrevs-map): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
54134
diff
changeset
|
51 "Enable or disable 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 |
56078
bd7bc33213fd
(abbrev-mode, edit-abbrevs-map): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
54134
diff
changeset
|
54 Setting this variable with `setq' changes it for the current buffer. |
24596
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. |
56078
bd7bc33213fd
(abbrev-mode, edit-abbrevs-map): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
54134
diff
changeset
|
56 Interactively, use the command `abbrev-mode' |
bd7bc33213fd
(abbrev-mode, edit-abbrevs-map): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
54134
diff
changeset
|
57 to enable or disable Abbrev mode in the current buffer." |
19307 | 58 :type 'boolean |
59 :group 'abbrev-mode) | |
60 | |
411 | 61 |
62 (defvar edit-abbrevs-map nil | |
56078
bd7bc33213fd
(abbrev-mode, edit-abbrevs-map): Doc fixes.
Richard M. Stallman <rms@gnu.org>
parents:
54134
diff
changeset
|
63 "Keymap used in `edit-abbrevs'.") |
411 | 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 | |
47424
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
78 (defun copy-abbrev-table (table) |
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
79 "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
|
80 (let ((new-table (make-abbrev-table))) |
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
81 (mapatoms |
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
82 (lambda (symbol) |
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
83 (define-abbrev new-table |
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
84 (symbol-name symbol) |
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
85 (symbol-value symbol) |
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
86 (symbol-function symbol))) |
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
87 table) |
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
88 new-table)) |
472a93499802
(copy-abbrev-table): New function.
Richard M. Stallman <rms@gnu.org>
parents:
42560
diff
changeset
|
89 |
411 | 90 (defun insert-abbrevs () |
91 "Insert after point a description of all defined abbrevs. | |
92 Mark is set after the inserted text." | |
93 (interactive) | |
94 (push-mark | |
95 (save-excursion | |
96 (let ((tables abbrev-table-name-list)) | |
97 (while tables | |
98 (insert-abbrev-table-description (car tables) t) | |
99 (setq tables (cdr tables)))) | |
100 (point)))) | |
101 | |
31230
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
102 (defun list-abbrevs (&optional local) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
103 "Display a list of defined abbrevs. |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
104 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
|
105 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
|
106 Otherwise display all abbrevs." |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
107 (interactive "P") |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
108 (display-buffer (prepare-abbrev-list-buffer local))) |
411 | 109 |
31230
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
110 (defun abbrev-table-name (table) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
111 "Value is the name of abbrev table TABLE." |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
112 (let ((tables abbrev-table-name-list) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
113 found) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
114 (while (and (not found) tables) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
115 (when (eq (symbol-value (car tables)) table) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
116 (setq found (car tables))) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
117 (setq tables (cdr tables))) |
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
118 found)) |
42560
099200f97432
Remove unnecessary whitespaces.
Pavel Janík <Pavel@Janik.cz>
parents:
41142
diff
changeset
|
119 |
31230
200fc9dc31f4
(list-abbrevs): Add optional parameter LOCAL.
Gerd Moellmann <gerd@gnu.org>
parents:
28822
diff
changeset
|
120 (defun prepare-abbrev-list-buffer (&optional local) |
411 | 121 (save-excursion |
33961
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
122 (let ((table local-abbrev-table)) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
123 (set-buffer (get-buffer-create "*Abbrevs*")) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
124 (erase-buffer) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
125 (if local |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
126 (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
|
127 (dolist (table abbrev-table-name-list) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
128 (insert-abbrev-table-description table t))) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
129 (goto-char (point-min)) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
130 (set-buffer-modified-p nil) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
131 (edit-abbrevs-mode) |
f7744f7fd432
(prepare-abbrev-list-buffer): Get the value of
Gerd Moellmann <gerd@gnu.org>
parents:
31230
diff
changeset
|
132 (current-buffer)))) |
411 | 133 |
134 (defun edit-abbrevs-mode () | |
135 "Major mode for editing the list of abbrev definitions. | |
136 \\{edit-abbrevs-map}" | |
137 (interactive) | |
138 (setq major-mode 'edit-abbrevs-mode) | |
139 (setq mode-name "Edit-Abbrevs") | |
140 (use-local-map edit-abbrevs-map)) | |
141 | |
142 (defun edit-abbrevs () | |
143 "Alter abbrev definitions by editing a list of them. | |
144 Selects a buffer containing a list of abbrev definitions. | |
145 You can edit them and type \\<edit-abbrevs-map>\\[edit-abbrevs-redefine] to redefine abbrevs | |
146 according to your editing. | |
147 Buffer contains a header line for each abbrev table, | |
148 which is the abbrev table name in parentheses. | |
149 This is followed by one line per abbrev in that table: | |
150 NAME USECOUNT EXPANSION HOOK | |
151 where NAME and EXPANSION are strings with quotes, | |
152 USECOUNT is an integer, and HOOK is any valid function | |
153 or may be omitted (it is usually omitted)." | |
154 (interactive) | |
155 (switch-to-buffer (prepare-abbrev-list-buffer))) | |
156 | |
157 (defun edit-abbrevs-redefine () | |
158 "Redefine abbrevs according to current buffer contents." | |
159 (interactive) | |
160 (define-abbrevs t) | |
161 (set-buffer-modified-p nil)) | |
162 | |
163 (defun define-abbrevs (&optional arg) | |
164 "Define abbrevs according to current visible buffer contents. | |
165 See documentation of `edit-abbrevs' for info on the format of the | |
166 text you must have in the buffer. | |
167 With argument, eliminate all abbrev definitions except | |
168 the ones defined from the buffer now." | |
169 (interactive "P") | |
170 (if arg (kill-all-abbrevs)) | |
171 (save-excursion | |
172 (goto-char (point-min)) | |
173 (while (and (not (eobp)) (re-search-forward "^(" nil t)) | |
174 (let* ((buf (current-buffer)) | |
175 (table (read buf)) | |
862
46630543d659
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
846
diff
changeset
|
176 abbrevs name hook exp count) |
411 | 177 (forward-line 1) |
178 (while (progn (forward-line 1) | |
179 (not (eolp))) | |
180 (setq name (read buf) count (read buf) exp (read buf)) | |
181 (skip-chars-backward " \t\n\f") | |
182 (setq hook (if (not (eolp)) (read buf))) | |
183 (skip-chars-backward " \t\n\f") | |
184 (setq abbrevs (cons (list name exp hook count) abbrevs))) | |
185 (define-abbrev-table table abbrevs))))) | |
186 | |
187 (defun read-abbrev-file (&optional file quietly) | |
188 "Read abbrev definitions from file written with `write-abbrev-file'. | |
189 Optional argument FILE is the name of the file to read; | |
190 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
|
191 Optional second argument QUIETLY non-nil means don't display a message." |
411 | 192 (interactive "fRead abbrev file: ") |
193 (load (if (and file (> (length file) 0)) file abbrev-file-name) | |
194 nil quietly) | |
40904
0f074a905ca2
(read-abbrev-file): Don't set save-abbrevs.
Richard M. Stallman <rms@gnu.org>
parents:
38697
diff
changeset
|
195 (setq abbrevs-changed nil)) |
411 | 196 |
197 (defun quietly-read-abbrev-file (&optional file) | |
198 "Read abbrev definitions from file written with write-abbrev-file. | |
199 Optional argument FILE is the name of the file to read; | |
200 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
|
201 Does not display any message." |
411 | 202 ;(interactive "fRead abbrev file: ") |
203 (read-abbrev-file file t)) | |
204 | |
54134
16aaa8fe949d
(write-abbrev-file): Make argument optional. Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
205 (defun write-abbrev-file (&optional file) |
16aaa8fe949d
(write-abbrev-file): Make argument optional. Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
206 "Write all user-level abbrev definitions to a file of Lisp code. |
16aaa8fe949d
(write-abbrev-file): Make argument optional. Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
207 This does not include system abbrevs; it includes only the abbrev tables |
16aaa8fe949d
(write-abbrev-file): Make argument optional. Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
208 listed in listed in `abbrev-table-name-list'. |
411 | 209 The file written can be loaded in another session to define the same abbrevs. |
54134
16aaa8fe949d
(write-abbrev-file): Make argument optional. Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
210 The argument FILE is the file name to write. If omitted or nil, the file |
16aaa8fe949d
(write-abbrev-file): Make argument optional. Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
211 specified in `abbrev-file-name' is used." |
411 | 212 (interactive |
213 (list | |
214 (read-file-name "Write abbrev file: " | |
215 (file-name-directory (expand-file-name abbrev-file-name)) | |
216 abbrev-file-name))) | |
217 (or (and file (> (length file) 0)) | |
218 (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
|
219 (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
|
220 (with-temp-file file |
7c5f68b0dbd3
(write-abbrev-file): Simplify, and put a coding cookie
Dave Love <fx@gnu.org>
parents:
47654
diff
changeset
|
221 (insert ";;-*-coding: emacs-mule;-*-\n") |
7c5f68b0dbd3
(write-abbrev-file): Simplify, and put a coding cookie
Dave Love <fx@gnu.org>
parents:
47654
diff
changeset
|
222 (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
|
223 (insert-abbrev-table-description table nil))))) |
411 | 224 |
225 (defun add-mode-abbrev (arg) | |
226 "Define mode-specific abbrev for last word(s) before point. | |
227 Argument is how many words before point form the expansion; | |
228 or zero means the region is the expansion. | |
229 A negative argument means to undefine the specified abbrev. | |
230 Reads the abbreviation in the minibuffer. | |
231 | |
232 Don't use this function in a Lisp program; use `define-abbrev' instead." | |
233 (interactive "p") | |
234 (add-abbrev | |
235 (if only-global-abbrevs | |
49588
37645a051842
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
49405
diff
changeset
|
236 global-abbrev-table |
411 | 237 (or local-abbrev-table |
238 (error "No per-mode abbrev table"))) | |
239 "Mode" arg)) | |
240 | |
241 (defun add-global-abbrev (arg) | |
242 "Define global (all modes) abbrev for last word(s) before point. | |
243 The prefix argument specifies the number of words before point that form the | |
244 expansion; or zero means the region is the expansion. | |
245 A negative argument means to undefine the specified abbrev. | |
246 This command uses the minibuffer to read the abbreviation. | |
247 | |
248 Don't use this function in a Lisp program; use `define-abbrev' instead." | |
249 (interactive "p") | |
250 (add-abbrev global-abbrev-table "Global" arg)) | |
251 | |
252 (defun add-abbrev (table type arg) | |
253 (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
|
254 (buffer-substring-no-properties |
411 | 255 (point) |
256 (if (= arg 0) (mark) | |
257 (save-excursion (forward-word (- arg)) (point)))))) | |
258 name) | |
259 (setq name | |
260 (read-string (format (if exp "%s abbrev for \"%s\": " | |
261 "Undefine %s abbrev: ") | |
262 type exp))) | |
9180
569ed1f55710
(add-abbrev, inverse-add-abbrev):
Richard M. Stallman <rms@gnu.org>
parents:
2307
diff
changeset
|
263 (set-text-properties 0 (length name) nil name) |
411 | 264 (if (or (null exp) |
265 (not (abbrev-expansion name table)) | |
266 (y-or-n-p (format "%s expands to \"%s\"; redefine? " | |
267 name (abbrev-expansion name table)))) | |
268 (define-abbrev table (downcase name) exp)))) | |
42560
099200f97432
Remove unnecessary whitespaces.
Pavel Janík <Pavel@Janik.cz>
parents:
41142
diff
changeset
|
269 |
411 | 270 (defun inverse-add-mode-abbrev (arg) |
271 "Define last word before point as a mode-specific abbrev. | |
272 With prefix argument N, defines the Nth word before point. | |
273 This command uses the minibuffer to read the expansion. | |
274 Expands the abbreviation after defining it." | |
275 (interactive "p") | |
276 (inverse-add-abbrev | |
277 (if only-global-abbrevs | |
42560
099200f97432
Remove unnecessary whitespaces.
Pavel Janík <Pavel@Janik.cz>
parents:
41142
diff
changeset
|
278 global-abbrev-table |
411 | 279 (or local-abbrev-table |
280 (error "No per-mode abbrev table"))) | |
281 "Mode" arg)) | |
282 | |
283 (defun inverse-add-global-abbrev (arg) | |
284 "Define last word before point as a global (mode-independent) abbrev. | |
285 With prefix argument N, defines the Nth word before point. | |
286 This command uses the minibuffer to read the expansion. | |
287 Expands the abbreviation after defining it." | |
288 (interactive "p") | |
289 (inverse-add-abbrev global-abbrev-table "Global" arg)) | |
290 | |
291 (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
|
292 (let (name exp start end) |
411 | 293 (save-excursion |
28186
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
294 (forward-word (1+ (- arg))) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
295 (setq end (point)) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
296 (backward-word 1) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
297 (setq start (point) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
298 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
|
299 |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
300 (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
|
301 nil nil nil t)) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
302 (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
|
303 (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
|
304 name (abbrev-expansion name table)))) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
305 (define-abbrev table (downcase name) exp) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
306 (save-excursion |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
307 (goto-char end) |
a552a942b327
(inverse-add-abbrev): Identify word by first moving
Gerd Moellmann <gerd@gnu.org>
parents:
26079
diff
changeset
|
308 (expand-abbrev))))) |
411 | 309 |
310 (defun abbrev-prefix-mark (&optional arg) | |
311 "Mark current point as the beginning of an abbrev. | |
312 Abbrev to be expanded starts here rather than at beginning of word. | |
313 This way, you can expand an abbrev with a prefix: insert the prefix, | |
54134
16aaa8fe949d
(write-abbrev-file): Make argument optional. Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
314 use this command, then insert the abbrev. This command inserts a |
16aaa8fe949d
(write-abbrev-file): Make argument optional. Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
315 temporary hyphen after the prefix \(until the intended abbrev |
16aaa8fe949d
(write-abbrev-file): Make argument optional. Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
316 expansion occurs). |
16aaa8fe949d
(write-abbrev-file): Make argument optional. Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
317 If the prefix is itself an abbrev, this command expands it, unless |
16aaa8fe949d
(write-abbrev-file): Make argument optional. Doc fix.
Luc Teirlinck <teirllm@auburn.edu>
parents:
52401
diff
changeset
|
318 ARG is non-nil. Interactively, ARG is the prefix argument." |
411 | 319 (interactive "P") |
320 (or arg (expand-abbrev)) | |
321 (setq abbrev-start-location (point-marker) | |
322 abbrev-start-location-buffer (current-buffer)) | |
323 (insert "-")) | |
324 | |
325 (defun expand-region-abbrevs (start end &optional noquery) | |
326 "For abbrev occurrence in the region, offer to expand it. | |
327 The user is asked to type y or n for each occurrence. | |
328 A prefix argument means don't query; expand all abbrevs. | |
329 If called from a Lisp program, arguments are START END &optional NOQUERY." | |
330 (interactive "r\nP") | |
331 (save-excursion | |
332 (goto-char start) | |
333 (let ((lim (- (point-max) end)) | |
334 pnt string) | |
335 (while (and (not (eobp)) | |
336 (progn (forward-word 1) | |
337 (<= (setq pnt (point)) (- (point-max) lim)))) | |
338 (if (abbrev-expansion | |
339 (setq string | |
26079
bc18b027a049
(add-abbrev, inverse-add-abbrev, expand-region-abbrevs): Remove
Dave Love <fx@gnu.org>
parents:
24596
diff
changeset
|
340 (buffer-substring-no-properties |
411 | 341 (save-excursion (forward-word -1) (point)) |
342 pnt))) | |
343 (if (or noquery (y-or-n-p (format "Expand `%s'? " string))) | |
344 (expand-abbrev))))))) | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
411
diff
changeset
|
345 |
52401 | 346 ;;; arch-tag: dbd6f3ae-dfe3-40ba-b00f-f9e3ff960df5 |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
411
diff
changeset
|
347 ;;; abbrev.el ends here |