1 ;;; abbrev.el --- abbrev mode commands for Emacs
3 ;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc.
6 ;; Keywords: abbrev convenience
8 ;; This file is part of GNU Emacs.
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
12 ;; the Free Software Foundation; either version 2, or (at your option)
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.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
27 ;; This facility is documented in the Emacs Manual.
31 (defcustom only-global-abbrevs nil
32 "Non-nil means user plans to use global abbrevs only.
33 This makes the commands that normally define mode-specific abbrevs
34 define global abbrevs instead."
39 (defun abbrev-mode (&optional arg
)
40 "Toggle Abbrev mode in the current buffer.
41 With argument ARG, turn abbrev mode on iff ARG is positive.
42 In Abbrev mode, inserting an abbreviation causes it to expand
43 and be replaced by its expansion."
46 (if (null arg
) (not abbrev-mode
)
47 (> (prefix-numeric-value arg
) 0)))
48 (force-mode-line-update))
50 (defcustom abbrev-mode nil
51 "Enable or disable Abbrev mode.
52 Non-nil means automatically expand abbrevs as they are inserted.
54 Setting this variable with `setq' changes it for the current buffer.
55 Changing it with \\[customize] sets the default value.
56 Interactively, use the command `abbrev-mode'
57 to enable or disable Abbrev mode in the current buffer."
62 (defvar edit-abbrevs-map
63 (let ((map (make-sparse-keymap)))
64 (define-key map
"\C-x\C-s" 'edit-abbrevs-redefine
)
65 (define-key map
"\C-c\C-c" 'edit-abbrevs-redefine
)
67 "Keymap used in `edit-abbrevs'.")
69 (defun kill-all-abbrevs ()
70 "Undefine all defined abbrevs."
72 (let ((tables abbrev-table-name-list
))
74 (clear-abbrev-table (symbol-value (car tables
)))
75 (setq tables
(cdr tables
)))))
77 (defun copy-abbrev-table (table)
78 "Make a new abbrev-table with the same abbrevs as TABLE."
79 (let ((new-table (make-abbrev-table)))
82 (define-abbrev new-table
85 (symbol-function symbol
)))
89 (defun insert-abbrevs ()
90 "Insert after point a description of all defined abbrevs.
91 Mark is set after the inserted text."
95 (let ((tables abbrev-table-name-list
))
97 (insert-abbrev-table-description (car tables
) t
)
98 (setq tables
(cdr tables
))))
101 (defun list-abbrevs (&optional local
)
102 "Display a list of defined abbrevs.
103 If LOCAL is non-nil, interactively when invoked with a
104 prefix arg, display only local, i.e. mode-specific, abbrevs.
105 Otherwise display all abbrevs."
107 (display-buffer (prepare-abbrev-list-buffer local
)))
109 (defun abbrev-table-name (table)
110 "Value is the name of abbrev table TABLE."
111 (let ((tables abbrev-table-name-list
)
113 (while (and (not found
) tables
)
114 (when (eq (symbol-value (car tables
)) table
)
115 (setq found
(car tables
)))
116 (setq tables
(cdr tables
)))
119 (defun prepare-abbrev-list-buffer (&optional local
)
121 (let ((table local-abbrev-table
))
122 (set-buffer (get-buffer-create "*Abbrevs*"))
125 (insert-abbrev-table-description (abbrev-table-name table
) t
)
126 (dolist (table abbrev-table-name-list
)
127 (insert-abbrev-table-description table t
)))
128 (goto-char (point-min))
129 (set-buffer-modified-p nil
)
133 (defun edit-abbrevs-mode ()
134 "Major mode for editing the list of abbrev definitions.
135 \\{edit-abbrevs-map}"
137 (kill-all-local-variables)
138 (setq major-mode
'edit-abbrevs-mode
)
139 (setq mode-name
"Edit-Abbrevs")
140 (use-local-map edit-abbrevs-map
)
141 (run-mode-hooks 'edit-abbrevs-mode-hook
))
143 (defun edit-abbrevs ()
144 "Alter abbrev definitions by editing a list of them.
145 Selects a buffer containing a list of abbrev definitions.
146 You can edit them and type \\<edit-abbrevs-map>\\[edit-abbrevs-redefine] to redefine abbrevs
147 according to your editing.
148 Buffer contains a header line for each abbrev table,
149 which is the abbrev table name in parentheses.
150 This is followed by one line per abbrev in that table:
151 NAME USECOUNT EXPANSION HOOK
152 where NAME and EXPANSION are strings with quotes,
153 USECOUNT is an integer, and HOOK is any valid function
154 or may be omitted (it is usually omitted)."
156 (switch-to-buffer (prepare-abbrev-list-buffer)))
158 (defun edit-abbrevs-redefine ()
159 "Redefine abbrevs according to current buffer contents."
162 (set-buffer-modified-p nil
))
164 (defun define-abbrevs (&optional arg
)
165 "Define abbrevs according to current visible buffer contents.
166 See documentation of `edit-abbrevs' for info on the format of the
167 text you must have in the buffer.
168 With argument, eliminate all abbrev definitions except
169 the ones defined from the buffer now."
171 (if arg
(kill-all-abbrevs))
173 (goto-char (point-min))
174 (while (and (not (eobp)) (re-search-forward "^(" nil t
))
175 (let* ((buf (current-buffer))
177 abbrevs name hook exp count sys
)
179 (while (progn (forward-line 1)
181 (setq name
(read buf
) count
(read buf
))
182 (if (equal count
'(sys))
183 (setq sys t count
(read buf
)))
184 (setq exp
(read buf
))
185 (skip-chars-backward " \t\n\f")
186 (setq hook
(if (not (eolp)) (read buf
)))
187 (skip-chars-backward " \t\n\f")
188 (setq abbrevs
(cons (list name exp hook count sys
) abbrevs
)))
189 (define-abbrev-table table abbrevs
)))))
191 (defun read-abbrev-file (&optional file quietly
)
192 "Read abbrev definitions from file written with `write-abbrev-file'.
193 Optional argument FILE is the name of the file to read;
194 it defaults to the value of `abbrev-file-name'.
195 Optional second argument QUIETLY non-nil means don't display a message."
196 (interactive "fRead abbrev file: ")
197 (load (if (and file
(> (length file
) 0)) file abbrev-file-name
)
199 (setq abbrevs-changed nil
))
201 (defun quietly-read-abbrev-file (&optional file
)
202 "Read abbrev definitions from file written with `write-abbrev-file'.
203 Optional argument FILE is the name of the file to read;
204 it defaults to the value of `abbrev-file-name'.
205 Does not display any message."
206 ;(interactive "fRead abbrev file: ")
207 (read-abbrev-file file t
))
209 (defun write-abbrev-file (&optional file
)
210 "Write all user-level abbrev definitions to a file of Lisp code.
211 This does not include system abbrevs; it includes only the abbrev tables
212 listed in listed in `abbrev-table-name-list'.
213 The file written can be loaded in another session to define the same abbrevs.
214 The argument FILE is the file name to write. If omitted or nil, the file
215 specified in `abbrev-file-name' is used."
218 (read-file-name "Write abbrev file: "
219 (file-name-directory (expand-file-name abbrev-file-name
))
221 (or (and file
(> (length file
) 0))
222 (setq file abbrev-file-name
))
223 (let ((coding-system-for-write 'emacs-mule
))
225 (insert ";;-*-coding: emacs-mule;-*-\n")
227 ;; We sort the table in order to ease the automatic
228 ;; merging of different versions of the user's abbrevs
229 ;; file. This is useful, for example, for when the
230 ;; user keeps their home directory in a revision
231 ;; control system, and is therefore keeping multiple
232 ;; slightly-differing copies loosely synchronized.
233 (sort (copy-sequence abbrev-table-name-list
)
235 (string< (symbol-name s1
)
237 (insert-abbrev-table-description table nil
)))))
239 (defun add-mode-abbrev (arg)
240 "Define mode-specific abbrev for last word(s) before point.
241 Argument is how many words before point form the expansion;
242 or zero means the region is the expansion.
243 A negative argument means to undefine the specified abbrev.
244 Reads the abbreviation in the minibuffer.
246 Don't use this function in a Lisp program; use `define-abbrev' instead."
249 (if only-global-abbrevs
251 (or local-abbrev-table
252 (error "No per-mode abbrev table")))
255 (defun add-global-abbrev (arg)
256 "Define global (all modes) abbrev for last word(s) before point.
257 The prefix argument specifies the number of words before point that form the
258 expansion; or zero means the region is the expansion.
259 A negative argument means to undefine the specified abbrev.
260 This command uses the minibuffer to read the abbreviation.
262 Don't use this function in a Lisp program; use `define-abbrev' instead."
264 (add-abbrev global-abbrev-table
"Global" arg
))
266 (defun add-abbrev (table type arg
)
267 (let ((exp (and (>= arg
0)
268 (buffer-substring-no-properties
271 (save-excursion (forward-word (- arg
)) (point))))))
274 (read-string (format (if exp
"%s abbrev for \"%s\": "
275 "Undefine %s abbrev: ")
277 (set-text-properties 0 (length name
) nil name
)
279 (not (abbrev-expansion name table
))
280 (y-or-n-p (format "%s expands to \"%s\"; redefine? "
281 name
(abbrev-expansion name table
))))
282 (define-abbrev table
(downcase name
) exp
))))
284 (defun inverse-add-mode-abbrev (n)
285 "Define last word before point as a mode-specific abbrev.
286 With prefix argument N, defines the Nth word before point.
287 This command uses the minibuffer to read the expansion.
288 Expands the abbreviation after defining it."
291 (if only-global-abbrevs
293 (or local-abbrev-table
294 (error "No per-mode abbrev table")))
297 (defun inverse-add-global-abbrev (n)
298 "Define last word before point as a global (mode-independent) abbrev.
299 With prefix argument N, defines the Nth word before point.
300 This command uses the minibuffer to read the expansion.
301 Expands the abbreviation after defining it."
303 (inverse-add-abbrev global-abbrev-table
"Global" n
))
305 (defun inverse-add-abbrev (table type arg
)
306 (let (name exp start end
)
308 (forward-word (1+ (- arg
)))
312 name
(buffer-substring-no-properties start end
)))
314 (setq exp
(read-string (format "%s expansion for \"%s\": " type name
)
316 (when (or (not (abbrev-expansion name table
))
317 (y-or-n-p (format "%s expands to \"%s\"; redefine? "
318 name
(abbrev-expansion name table
))))
319 (define-abbrev table
(downcase name
) exp
)
324 (defun abbrev-prefix-mark (&optional arg
)
325 "Mark current point as the beginning of an abbrev.
326 Abbrev to be expanded starts here rather than at beginning of word.
327 This way, you can expand an abbrev with a prefix: insert the prefix,
328 use this command, then insert the abbrev. This command inserts a
329 temporary hyphen after the prefix \(until the intended abbrev
331 If the prefix is itself an abbrev, this command expands it, unless
332 ARG is non-nil. Interactively, ARG is the prefix argument."
334 (or arg
(expand-abbrev))
335 (setq abbrev-start-location
(point-marker)
336 abbrev-start-location-buffer
(current-buffer))
339 (defun expand-region-abbrevs (start end
&optional noquery
)
340 "For abbrev occurrence in the region, offer to expand it.
341 The user is asked to type `y' or `n' for each occurrence.
342 A prefix argument means don't query; expand all abbrevs."
346 (let ((lim (- (point-max) end
))
348 (while (and (not (eobp))
349 (progn (forward-word 1)
350 (<= (setq pnt
(point)) (- (point-max) lim
))))
351 (if (abbrev-expansion
353 (buffer-substring-no-properties
354 (save-excursion (forward-word -
1) (point))
356 (if (or noquery
(y-or-n-p (format "Expand `%s'? " string
)))
357 (expand-abbrev)))))))
359 ;;; arch-tag: dbd6f3ae-dfe3-40ba-b00f-f9e3ff960df5
360 ;;; abbrev.el ends here