Fix Lisp header.
[bpt/emacs.git] / lisp / abbrev.el
CommitLineData
c0274f38 1;;; abbrev.el --- abbrev mode commands for Emacs
e2fbf49d 2
e5167999 3;; Copyright (C) 1985, 1986, 1987, 1992 Free Software Foundation, Inc.
e2fbf49d 4
6228c05b 5;; Maintainer: FSF
f5f727f8 6;; Keywords: abbrev convenience
e9571d2a 7
e2fbf49d
JB
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
e5167999 12;; the Free Software Foundation; either version 2, or (at your option)
e2fbf49d
JB
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
b578f267
EN
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.
e2fbf49d 24
e41b2db1
ER
25;;; Commentary:
26
27;; This facility is documented in the Emacs Manual.
28
e5167999 29;;; Code:
e2fbf49d 30
1d1e35a0
RS
31(defcustom only-global-abbrevs nil
32 "*t means user plans to use global abbrevs only.
33This makes the commands that normally define mode-specific abbrevs
34define global abbrevs instead."
35 :type 'boolean
f5f727f8
DN
36 :group 'abbrev-mode
37 :group 'convenience)
e2fbf49d 38
68d9550f 39(defun abbrev-mode (&optional arg)
e2fbf49d 40 "Toggle abbrev mode.
a864e33e 41With argument ARG, turn abbrev mode on iff ARG is positive.
e2fbf49d
JB
42In abbrev mode, inserting an abbreviation causes it to expand
43and 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)))
e47df26a 48 (force-mode-line-update))
1d1e35a0
RS
49
50(defcustom abbrev-mode nil
51 "Toggle abbrev mode.
5cf1c7ac
RS
52Non-nil means automatically expand abbrevs as they are inserted.
53
5cf1c7ac
RS
54Changing it with \\[customize] sets the default value.
55Use the command `abbrev-mode' to enable or disable Abbrev mode in the current
56buffer."
1d1e35a0
RS
57 :type 'boolean
58 :group 'abbrev-mode)
59
e2fbf49d
JB
60\f
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
77(defun insert-abbrevs ()
78 "Insert after point a description of all defined abbrevs.
79Mark is set after the inserted text."
80 (interactive)
81 (push-mark
82 (save-excursion
83 (let ((tables abbrev-table-name-list))
84 (while tables
85 (insert-abbrev-table-description (car tables) t)
86 (setq tables (cdr tables))))
87 (point))))
88
c88a9944
GM
89(defun list-abbrevs (&optional local)
90 "Display a list of defined abbrevs.
91If LOCAL is non-nil, interactively when invoked with a
92prefix arg, display only local, i.e. mode-specific, abbrevs.
93Otherwise display all abbrevs."
94 (interactive "P")
95 (display-buffer (prepare-abbrev-list-buffer local)))
96
97(defun abbrev-table-name (table)
98 "Value is the name of abbrev table TABLE."
99 (let ((tables abbrev-table-name-list)
100 found)
101 (while (and (not found) tables)
102 (when (eq (symbol-value (car tables)) table)
103 (setq found (car tables)))
104 (setq tables (cdr tables)))
105 found))
106
107(defun prepare-abbrev-list-buffer (&optional local)
e2fbf49d 108 (save-excursion
25160ec0
GM
109 (let ((table local-abbrev-table))
110 (set-buffer (get-buffer-create "*Abbrevs*"))
111 (erase-buffer)
112 (if local
113 (insert-abbrev-table-description (abbrev-table-name table) t)
114 (dolist (table abbrev-table-name-list)
115 (insert-abbrev-table-description table t)))
116 (goto-char (point-min))
117 (set-buffer-modified-p nil)
118 (edit-abbrevs-mode)
119 (current-buffer))))
e2fbf49d
JB
120
121(defun edit-abbrevs-mode ()
122 "Major mode for editing the list of abbrev definitions.
123\\{edit-abbrevs-map}"
124 (interactive)
125 (setq major-mode 'edit-abbrevs-mode)
126 (setq mode-name "Edit-Abbrevs")
127 (use-local-map edit-abbrevs-map))
128
129(defun edit-abbrevs ()
130 "Alter abbrev definitions by editing a list of them.
131Selects a buffer containing a list of abbrev definitions.
132You can edit them and type \\<edit-abbrevs-map>\\[edit-abbrevs-redefine] to redefine abbrevs
133according to your editing.
134Buffer contains a header line for each abbrev table,
135 which is the abbrev table name in parentheses.
136This is followed by one line per abbrev in that table:
137NAME USECOUNT EXPANSION HOOK
138where NAME and EXPANSION are strings with quotes,
139USECOUNT is an integer, and HOOK is any valid function
140or may be omitted (it is usually omitted)."
141 (interactive)
142 (switch-to-buffer (prepare-abbrev-list-buffer)))
143
144(defun edit-abbrevs-redefine ()
145 "Redefine abbrevs according to current buffer contents."
146 (interactive)
147 (define-abbrevs t)
148 (set-buffer-modified-p nil))
149
150(defun define-abbrevs (&optional arg)
151 "Define abbrevs according to current visible buffer contents.
152See documentation of `edit-abbrevs' for info on the format of the
153text you must have in the buffer.
154With argument, eliminate all abbrev definitions except
155the ones defined from the buffer now."
156 (interactive "P")
157 (if arg (kill-all-abbrevs))
158 (save-excursion
159 (goto-char (point-min))
160 (while (and (not (eobp)) (re-search-forward "^(" nil t))
161 (let* ((buf (current-buffer))
162 (table (read buf))
ba343182 163 abbrevs name hook exp count)
e2fbf49d
JB
164 (forward-line 1)
165 (while (progn (forward-line 1)
166 (not (eolp)))
167 (setq name (read buf) count (read buf) exp (read buf))
168 (skip-chars-backward " \t\n\f")
169 (setq hook (if (not (eolp)) (read buf)))
170 (skip-chars-backward " \t\n\f")
171 (setq abbrevs (cons (list name exp hook count) abbrevs)))
172 (define-abbrev-table table abbrevs)))))
173
174(defun read-abbrev-file (&optional file quietly)
175 "Read abbrev definitions from file written with `write-abbrev-file'.
176Optional argument FILE is the name of the file to read;
177it defaults to the value of `abbrev-file-name'.
d0b6d945 178Optional second argument QUIETLY non-nil means don't display a message."
e2fbf49d
JB
179 (interactive "fRead abbrev file: ")
180 (load (if (and file (> (length file) 0)) file abbrev-file-name)
181 nil quietly)
d0b6d945 182 (setq abbrevs-changed nil))
e2fbf49d
JB
183
184(defun quietly-read-abbrev-file (&optional file)
185 "Read abbrev definitions from file written with write-abbrev-file.
186Optional argument FILE is the name of the file to read;
187it defaults to the value of `abbrev-file-name'.
d0b6d945 188Does not display any message."
e2fbf49d
JB
189 ;(interactive "fRead abbrev file: ")
190 (read-abbrev-file file t))
191
192(defun write-abbrev-file (file)
e5167999 193 "Write all abbrev definitions to a file of Lisp code.
e2fbf49d
JB
194The file written can be loaded in another session to define the same abbrevs.
195The argument FILE is the file name to write."
196 (interactive
197 (list
198 (read-file-name "Write abbrev file: "
199 (file-name-directory (expand-file-name abbrev-file-name))
200 abbrev-file-name)))
e2fbf49d
JB
201 (or (and file (> (length file) 0))
202 (setq file abbrev-file-name))
203 (save-excursion
204 (set-buffer (get-buffer-create " write-abbrev-file"))
205 (erase-buffer)
206 (let ((tables abbrev-table-name-list))
207 (while tables
208 (insert-abbrev-table-description (car tables) nil)
209 (setq tables (cdr tables))))
210 (write-region 1 (point-max) file)
211 (erase-buffer)))
212\f
213(defun add-mode-abbrev (arg)
214 "Define mode-specific abbrev for last word(s) before point.
215Argument is how many words before point form the expansion;
216or zero means the region is the expansion.
217A negative argument means to undefine the specified abbrev.
218Reads the abbreviation in the minibuffer.
219
220Don't use this function in a Lisp program; use `define-abbrev' instead."
221 (interactive "p")
222 (add-abbrev
223 (if only-global-abbrevs
224 global-abbrev-table
225 (or local-abbrev-table
226 (error "No per-mode abbrev table")))
227 "Mode" arg))
228
229(defun add-global-abbrev (arg)
230 "Define global (all modes) abbrev for last word(s) before point.
231The prefix argument specifies the number of words before point that form the
232expansion; or zero means the region is the expansion.
233A negative argument means to undefine the specified abbrev.
234This command uses the minibuffer to read the abbreviation.
235
236Don't use this function in a Lisp program; use `define-abbrev' instead."
237 (interactive "p")
238 (add-abbrev global-abbrev-table "Global" arg))
239
240(defun add-abbrev (table type arg)
241 (let ((exp (and (>= arg 0)
34f3cd03 242 (buffer-substring-no-properties
e2fbf49d
JB
243 (point)
244 (if (= arg 0) (mark)
245 (save-excursion (forward-word (- arg)) (point))))))
246 name)
247 (setq name
248 (read-string (format (if exp "%s abbrev for \"%s\": "
249 "Undefine %s abbrev: ")
250 type exp)))
a0f88464 251 (set-text-properties 0 (length name) nil name)
e2fbf49d
JB
252 (if (or (null exp)
253 (not (abbrev-expansion name table))
254 (y-or-n-p (format "%s expands to \"%s\"; redefine? "
255 name (abbrev-expansion name table))))
256 (define-abbrev table (downcase name) exp))))
257
258(defun inverse-add-mode-abbrev (arg)
259 "Define last word before point as a mode-specific abbrev.
260With prefix argument N, defines the Nth word before point.
261This command uses the minibuffer to read the expansion.
262Expands the abbreviation after defining it."
263 (interactive "p")
264 (inverse-add-abbrev
265 (if only-global-abbrevs
266 global-abbrev-table
267 (or local-abbrev-table
268 (error "No per-mode abbrev table")))
269 "Mode" arg))
270
271(defun inverse-add-global-abbrev (arg)
272 "Define last word before point as a global (mode-independent) abbrev.
273With prefix argument N, defines the Nth word before point.
274This command uses the minibuffer to read the expansion.
275Expands the abbreviation after defining it."
276 (interactive "p")
277 (inverse-add-abbrev global-abbrev-table "Global" arg))
278
279(defun inverse-add-abbrev (table type arg)
46684068 280 (let (name exp start end)
e2fbf49d 281 (save-excursion
46684068
GM
282 (forward-word (1+ (- arg)))
283 (setq end (point))
284 (backward-word 1)
285 (setq start (point)
286 name (buffer-substring-no-properties start end)))
287
288 (setq exp (read-string (format "%s expansion for \"%s\": " type name)
289 nil nil nil t))
290 (when (or (not (abbrev-expansion name table))
291 (y-or-n-p (format "%s expands to \"%s\"; redefine? "
292 name (abbrev-expansion name table))))
293 (define-abbrev table (downcase name) exp)
294 (save-excursion
295 (goto-char end)
296 (expand-abbrev)))))
e2fbf49d
JB
297
298(defun abbrev-prefix-mark (&optional arg)
299 "Mark current point as the beginning of an abbrev.
300Abbrev to be expanded starts here rather than at beginning of word.
301This way, you can expand an abbrev with a prefix: insert the prefix,
302use this command, then insert the abbrev."
303 (interactive "P")
304 (or arg (expand-abbrev))
305 (setq abbrev-start-location (point-marker)
306 abbrev-start-location-buffer (current-buffer))
307 (insert "-"))
308
309(defun expand-region-abbrevs (start end &optional noquery)
310 "For abbrev occurrence in the region, offer to expand it.
311The user is asked to type y or n for each occurrence.
312A prefix argument means don't query; expand all abbrevs.
313If called from a Lisp program, arguments are START END &optional NOQUERY."
314 (interactive "r\nP")
315 (save-excursion
316 (goto-char start)
317 (let ((lim (- (point-max) end))
318 pnt string)
319 (while (and (not (eobp))
320 (progn (forward-word 1)
321 (<= (setq pnt (point)) (- (point-max) lim))))
322 (if (abbrev-expansion
323 (setq string
34f3cd03 324 (buffer-substring-no-properties
e2fbf49d
JB
325 (save-excursion (forward-word -1) (point))
326 pnt)))
327 (if (or noquery (y-or-n-p (format "Expand `%s'? " string)))
328 (expand-abbrev)))))))
c0274f38
ER
329
330;;; abbrev.el ends here