Clean up previous change.
[emacs.git] / lisp / abbrev.el
blobd7bce2b313a7faeb8d4015226dacb7aa3eefb105
1 ;;; abbrev.el --- abbrev mode commands for Emacs
3 ;; Copyright (C) 1985, 1986, 1987, 1992, 2002, 2003, 2004,
4 ;; 2005, 2006 Free Software Foundation, Inc.
6 ;; Maintainer: FSF
7 ;; Keywords: abbrev convenience
9 ;; This file is part of GNU Emacs.
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.
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.
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 the
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24 ;; Boston, MA 02110-1301, USA.
26 ;;; Commentary:
28 ;; This facility is documented in the Emacs Manual.
30 ;;; Code:
32 (defcustom only-global-abbrevs nil
33 "Non-nil means user plans to use global abbrevs only.
34 This makes the commands that normally define mode-specific abbrevs
35 define global abbrevs instead."
36 :type 'boolean
37 :group 'abbrev-mode
38 :group 'convenience)
40 (defun abbrev-mode (&optional arg)
41 "Toggle Abbrev mode in the current buffer.
42 With argument ARG, turn abbrev mode on iff ARG is positive.
43 In Abbrev mode, inserting an abbreviation causes it to expand
44 and be replaced by its expansion."
45 (interactive "P")
46 (setq abbrev-mode
47 (if (null arg) (not abbrev-mode)
48 (> (prefix-numeric-value arg) 0)))
49 (force-mode-line-update))
51 (defcustom abbrev-mode nil
52 "Enable or disable Abbrev mode.
53 Non-nil means automatically expand abbrevs as they are inserted.
55 Setting this variable with `setq' changes it for the current buffer.
56 Changing it with \\[customize] sets the default value.
57 Interactively, use the command `abbrev-mode'
58 to enable or disable Abbrev mode in the current buffer."
59 :type 'boolean
60 :group 'abbrev-mode)
61 ;;;###autoload(put 'abbrev-mode 'safe-local-variable t)
64 (defvar edit-abbrevs-map
65 (let ((map (make-sparse-keymap)))
66 (define-key map "\C-x\C-s" 'edit-abbrevs-redefine)
67 (define-key map "\C-c\C-c" 'edit-abbrevs-redefine)
68 map)
69 "Keymap used in `edit-abbrevs'.")
71 (defun kill-all-abbrevs ()
72 "Undefine all defined abbrevs."
73 (interactive)
74 (let ((tables abbrev-table-name-list))
75 (while tables
76 (clear-abbrev-table (symbol-value (car tables)))
77 (setq tables (cdr tables)))))
79 (defun copy-abbrev-table (table)
80 "Make a new abbrev-table with the same abbrevs as TABLE."
81 (let ((new-table (make-abbrev-table)))
82 (mapatoms
83 (lambda (symbol)
84 (define-abbrev new-table
85 (symbol-name symbol)
86 (symbol-value symbol)
87 (symbol-function symbol)))
88 table)
89 new-table))
91 (defun insert-abbrevs ()
92 "Insert after point a description of all defined abbrevs.
93 Mark is set after the inserted text."
94 (interactive)
95 (push-mark
96 (save-excursion
97 (let ((tables abbrev-table-name-list))
98 (while tables
99 (insert-abbrev-table-description (car tables) t)
100 (setq tables (cdr tables))))
101 (point))))
103 (defun list-abbrevs (&optional local)
104 "Display a list of defined abbrevs.
105 If LOCAL is non-nil, interactively when invoked with a
106 prefix arg, display only local, i.e. mode-specific, abbrevs.
107 Otherwise display all abbrevs."
108 (interactive "P")
109 (display-buffer (prepare-abbrev-list-buffer local)))
111 (defun abbrev-table-name (table)
112 "Value is the name of abbrev table TABLE."
113 (let ((tables abbrev-table-name-list)
114 found)
115 (while (and (not found) tables)
116 (when (eq (symbol-value (car tables)) table)
117 (setq found (car tables)))
118 (setq tables (cdr tables)))
119 found))
121 (defun prepare-abbrev-list-buffer (&optional local)
122 (save-excursion
123 (let ((table local-abbrev-table))
124 (set-buffer (get-buffer-create "*Abbrevs*"))
125 (erase-buffer)
126 (if local
127 (insert-abbrev-table-description (abbrev-table-name table) t)
128 (dolist (table abbrev-table-name-list)
129 (insert-abbrev-table-description table t)))
130 (goto-char (point-min))
131 (set-buffer-modified-p nil)
132 (edit-abbrevs-mode)
133 (current-buffer))))
135 (defun edit-abbrevs-mode ()
136 "Major mode for editing the list of abbrev definitions.
137 \\{edit-abbrevs-map}"
138 (interactive)
139 (kill-all-local-variables)
140 (setq major-mode 'edit-abbrevs-mode)
141 (setq mode-name "Edit-Abbrevs")
142 (use-local-map edit-abbrevs-map)
143 (run-mode-hooks 'edit-abbrevs-mode-hook))
145 (defun edit-abbrevs ()
146 "Alter abbrev definitions by editing a list of them.
147 Selects a buffer containing a list of abbrev definitions.
148 You can edit them and type \\<edit-abbrevs-map>\\[edit-abbrevs-redefine] to redefine abbrevs
149 according to your editing.
150 Buffer contains a header line for each abbrev table,
151 which is the abbrev table name in parentheses.
152 This is followed by one line per abbrev in that table:
153 NAME USECOUNT EXPANSION HOOK
154 where NAME and EXPANSION are strings with quotes,
155 USECOUNT is an integer, and HOOK is any valid function
156 or may be omitted (it is usually omitted)."
157 (interactive)
158 (switch-to-buffer (prepare-abbrev-list-buffer)))
160 (defun edit-abbrevs-redefine ()
161 "Redefine abbrevs according to current buffer contents."
162 (interactive)
163 (define-abbrevs t)
164 (set-buffer-modified-p nil))
166 (defun define-abbrevs (&optional arg)
167 "Define abbrevs according to current visible buffer contents.
168 See documentation of `edit-abbrevs' for info on the format of the
169 text you must have in the buffer.
170 With argument, eliminate all abbrev definitions except
171 the ones defined from the buffer now."
172 (interactive "P")
173 (if arg (kill-all-abbrevs))
174 (save-excursion
175 (goto-char (point-min))
176 (while (and (not (eobp)) (re-search-forward "^(" nil t))
177 (let* ((buf (current-buffer))
178 (table (read buf))
179 abbrevs name hook exp count sys)
180 (forward-line 1)
181 (while (progn (forward-line 1)
182 (not (eolp)))
183 (setq name (read buf) count (read buf))
184 (if (equal count '(sys))
185 (setq sys t count (read buf)))
186 (setq exp (read buf))
187 (skip-chars-backward " \t\n\f")
188 (setq hook (if (not (eolp)) (read buf)))
189 (skip-chars-backward " \t\n\f")
190 (setq abbrevs (cons (list name exp hook count sys) abbrevs)))
191 (define-abbrev-table table abbrevs)))))
193 (defun read-abbrev-file (&optional file quietly)
194 "Read abbrev definitions from file written with `write-abbrev-file'.
195 Optional argument FILE is the name of the file to read;
196 it defaults to the value of `abbrev-file-name'.
197 Optional second argument QUIETLY non-nil means don't display a message."
198 (interactive "fRead abbrev file: ")
199 (load (if (and file (> (length file) 0)) file abbrev-file-name)
200 nil quietly)
201 (setq abbrevs-changed nil))
203 (defun quietly-read-abbrev-file (&optional file)
204 "Read abbrev definitions from file written with `write-abbrev-file'.
205 Optional argument FILE is the name of the file to read;
206 it defaults to the value of `abbrev-file-name'.
207 Does not display any message."
208 ;(interactive "fRead abbrev file: ")
209 (read-abbrev-file file t))
211 (defun write-abbrev-file (&optional file)
212 "Write all user-level abbrev definitions to a file of Lisp code.
213 This does not include system abbrevs; it includes only the abbrev tables
214 listed in listed in `abbrev-table-name-list'.
215 The file written can be loaded in another session to define the same abbrevs.
216 The argument FILE is the file name to write. If omitted or nil, the file
217 specified in `abbrev-file-name' is used."
218 (interactive
219 (list
220 (read-file-name "Write abbrev file: "
221 (file-name-directory (expand-file-name abbrev-file-name))
222 abbrev-file-name)))
223 (or (and file (> (length file) 0))
224 (setq file abbrev-file-name))
225 (let ((coding-system-for-write 'emacs-mule))
226 (with-temp-file file
227 (insert ";;-*-coding: emacs-mule;-*-\n")
228 (dolist (table
229 ;; We sort the table in order to ease the automatic
230 ;; merging of different versions of the user's abbrevs
231 ;; file. This is useful, for example, for when the
232 ;; user keeps their home directory in a revision
233 ;; control system, and is therefore keeping multiple
234 ;; slightly-differing copies loosely synchronized.
235 (sort (copy-sequence abbrev-table-name-list)
236 (lambda (s1 s2)
237 (string< (symbol-name s1)
238 (symbol-name s2)))))
239 (insert-abbrev-table-description table nil)))))
241 (defun add-mode-abbrev (arg)
242 "Define mode-specific abbrev for last word(s) before point.
243 Argument is how many words before point form the expansion;
244 or zero means the region is the expansion.
245 A negative argument means to undefine the specified abbrev.
246 Reads the abbreviation in the minibuffer.
248 Don't use this function in a Lisp program; use `define-abbrev' instead."
249 (interactive "p")
250 (add-abbrev
251 (if only-global-abbrevs
252 global-abbrev-table
253 (or local-abbrev-table
254 (error "No per-mode abbrev table")))
255 "Mode" arg))
257 (defun add-global-abbrev (arg)
258 "Define global (all modes) abbrev for last word(s) before point.
259 The prefix argument specifies the number of words before point that form the
260 expansion; or zero means the region is the expansion.
261 A negative argument means to undefine the specified abbrev.
262 This command uses the minibuffer to read the abbreviation.
264 Don't use this function in a Lisp program; use `define-abbrev' instead."
265 (interactive "p")
266 (add-abbrev global-abbrev-table "Global" arg))
268 (defun add-abbrev (table type arg)
269 (let ((exp (and (>= arg 0)
270 (buffer-substring-no-properties
271 (point)
272 (if (= arg 0) (mark)
273 (save-excursion (forward-word (- arg)) (point))))))
274 name)
275 (setq name
276 (read-string (format (if exp "%s abbrev for \"%s\": "
277 "Undefine %s abbrev: ")
278 type exp)))
279 (set-text-properties 0 (length name) nil name)
280 (if (or (null exp)
281 (not (abbrev-expansion name table))
282 (y-or-n-p (format "%s expands to \"%s\"; redefine? "
283 name (abbrev-expansion name table))))
284 (define-abbrev table (downcase name) exp))))
286 (defun inverse-add-mode-abbrev (n)
287 "Define last word before point as a mode-specific abbrev.
288 With prefix argument N, defines the Nth word before point.
289 This command uses the minibuffer to read the expansion.
290 Expands the abbreviation after defining it."
291 (interactive "p")
292 (inverse-add-abbrev
293 (if only-global-abbrevs
294 global-abbrev-table
295 (or local-abbrev-table
296 (error "No per-mode abbrev table")))
297 "Mode" n))
299 (defun inverse-add-global-abbrev (n)
300 "Define last word before point as a global (mode-independent) abbrev.
301 With prefix argument N, defines the Nth word before point.
302 This command uses the minibuffer to read the expansion.
303 Expands the abbreviation after defining it."
304 (interactive "p")
305 (inverse-add-abbrev global-abbrev-table "Global" n))
307 (defun inverse-add-abbrev (table type arg)
308 (let (name exp start end)
309 (save-excursion
310 (forward-word (1+ (- arg)))
311 (setq end (point))
312 (backward-word 1)
313 (setq start (point)
314 name (buffer-substring-no-properties start end)))
316 (setq exp (read-string (format "%s expansion for \"%s\": " type name)
317 nil nil nil t))
318 (when (or (not (abbrev-expansion name table))
319 (y-or-n-p (format "%s expands to \"%s\"; redefine? "
320 name (abbrev-expansion name table))))
321 (define-abbrev table (downcase name) exp)
322 (save-excursion
323 (goto-char end)
324 (expand-abbrev)))))
326 (defun abbrev-prefix-mark (&optional arg)
327 "Mark current point as the beginning of an abbrev.
328 Abbrev to be expanded starts here rather than at beginning of word.
329 This way, you can expand an abbrev with a prefix: insert the prefix,
330 use this command, then insert the abbrev. This command inserts a
331 temporary hyphen after the prefix \(until the intended abbrev
332 expansion occurs).
333 If the prefix is itself an abbrev, this command expands it, unless
334 ARG is non-nil. Interactively, ARG is the prefix argument."
335 (interactive "P")
336 (or arg (expand-abbrev))
337 (setq abbrev-start-location (point-marker)
338 abbrev-start-location-buffer (current-buffer))
339 (insert "-"))
341 (defun expand-region-abbrevs (start end &optional noquery)
342 "For abbrev occurrence in the region, offer to expand it.
343 The user is asked to type `y' or `n' for each occurrence.
344 A prefix argument means don't query; expand all abbrevs."
345 (interactive "r\nP")
346 (save-excursion
347 (goto-char start)
348 (let ((lim (- (point-max) end))
349 pnt string)
350 (while (and (not (eobp))
351 (progn (forward-word 1)
352 (<= (setq pnt (point)) (- (point-max) lim))))
353 (if (abbrev-expansion
354 (setq string
355 (buffer-substring-no-properties
356 (save-excursion (forward-word -1) (point))
357 pnt)))
358 (if (or noquery (y-or-n-p (format "Expand `%s'? " string)))
359 (expand-abbrev)))))))
361 ;;; arch-tag: dbd6f3ae-dfe3-40ba-b00f-f9e3ff960df5
362 ;;; abbrev.el ends here