Merge from emacs--rel--22, gnus--devo--0
[bpt/emacs.git] / lisp / abbrev.el
1 ;;; abbrev.el --- abbrev mode commands for Emacs
2
3 ;; Copyright (C) 1985, 1986, 1987, 1992, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007 Free Software Foundation, Inc.
5
6 ;; Maintainer: FSF
7 ;; Keywords: abbrev convenience
8
9 ;; This file is part of GNU Emacs.
10
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 3, or (at your option)
14 ;; any later version.
15
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.
20
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.
25
26 ;;; Commentary:
27
28 ;; This facility is documented in the Emacs Manual.
29
30 ;; Todo:
31
32 ;; - Make abbrev-file-name obey user-emacs-directory.
33 ;; - Cleanup name space.
34
35 ;;; Code:
36
37 (eval-when-compile (require 'cl))
38
39 (defgroup abbrev-mode nil
40 "Word abbreviations mode."
41 :link '(custom-manual "(emacs)Abbrevs")
42 :group 'abbrev)
43
44 (defcustom only-global-abbrevs nil
45 "Non-nil means user plans to use global abbrevs only.
46 This makes the commands that normally define mode-specific abbrevs
47 define global abbrevs instead."
48 :type 'boolean
49 :group 'abbrev-mode
50 :group 'convenience)
51
52 (defun abbrev-mode (&optional arg)
53 "Toggle Abbrev mode in the current buffer.
54 With optional argument ARG, turn abbrev mode on if ARG is
55 positive, otherwise turn it off. In Abbrev mode, inserting an
56 abbreviation causes it to expand and be replaced by its expansion."
57 (interactive "P")
58 (setq abbrev-mode
59 (if (null arg) (not abbrev-mode)
60 (> (prefix-numeric-value arg) 0)))
61 (force-mode-line-update))
62
63 (defcustom abbrev-mode nil
64 "Enable or disable Abbrev mode.
65 Non-nil means automatically expand abbrevs as they are inserted.
66
67 Setting this variable with `setq' changes it for the current buffer.
68 Changing it with \\[customize] sets the default value.
69 Interactively, use the command `abbrev-mode'
70 to enable or disable Abbrev mode in the current buffer."
71 :type 'boolean
72 :group 'abbrev-mode)
73 ;;;###autoload(put 'abbrev-mode 'safe-local-variable 'booleanp)
74
75 \f
76 (defvar edit-abbrevs-map
77 (let ((map (make-sparse-keymap)))
78 (define-key map "\C-x\C-s" 'edit-abbrevs-redefine)
79 (define-key map "\C-c\C-c" 'edit-abbrevs-redefine)
80 map)
81 "Keymap used in `edit-abbrevs'.")
82
83 (defun kill-all-abbrevs ()
84 "Undefine all defined abbrevs."
85 (interactive)
86 (dolist (tablesym abbrev-table-name-list)
87 (clear-abbrev-table (symbol-value tablesym))))
88
89 (defun copy-abbrev-table (table)
90 "Make a new abbrev-table with the same abbrevs as TABLE."
91 (let ((new-table (make-abbrev-table)))
92 (mapatoms
93 (lambda (symbol)
94 (define-abbrev new-table
95 (symbol-name symbol)
96 (symbol-value symbol)
97 (symbol-function symbol)))
98 table)
99 new-table))
100
101 (defun insert-abbrevs ()
102 "Insert after point a description of all defined abbrevs.
103 Mark is set after the inserted text."
104 (interactive)
105 (push-mark
106 (save-excursion
107 (dolist (tablesym abbrev-table-name-list)
108 (insert-abbrev-table-description tablesym t))
109 (point))))
110
111 (defun list-abbrevs (&optional local)
112 "Display a list of defined abbrevs.
113 If LOCAL is non-nil, interactively when invoked with a
114 prefix arg, display only local, i.e. mode-specific, abbrevs.
115 Otherwise display all abbrevs."
116 (interactive "P")
117 (display-buffer (prepare-abbrev-list-buffer local)))
118
119 (defun abbrev-table-name (table)
120 "Value is the name of abbrev table TABLE."
121 (let ((tables abbrev-table-name-list)
122 found)
123 (while (and (not found) tables)
124 (when (eq (symbol-value (car tables)) table)
125 (setq found (car tables)))
126 (setq tables (cdr tables)))
127 found))
128
129 (defun prepare-abbrev-list-buffer (&optional local)
130 (with-current-buffer (get-buffer-create "*Abbrevs*")
131 (erase-buffer)
132 (if local
133 (insert-abbrev-table-description
134 (abbrev-table-name local-abbrev-table) t)
135 (dolist (table abbrev-table-name-list)
136 (insert-abbrev-table-description table t)))
137 (goto-char (point-min))
138 (set-buffer-modified-p nil)
139 (edit-abbrevs-mode)
140 (current-buffer)))
141
142 (defun edit-abbrevs-mode ()
143 "Major mode for editing the list of abbrev definitions.
144 \\{edit-abbrevs-map}"
145 (interactive)
146 (kill-all-local-variables)
147 (setq major-mode 'edit-abbrevs-mode)
148 (setq mode-name "Edit-Abbrevs")
149 (use-local-map edit-abbrevs-map)
150 (run-mode-hooks 'edit-abbrevs-mode-hook))
151
152 (defun edit-abbrevs ()
153 "Alter abbrev definitions by editing a list of them.
154 Selects a buffer containing a list of abbrev definitions.
155 You can edit them and type \\<edit-abbrevs-map>\\[edit-abbrevs-redefine] to redefine abbrevs
156 according to your editing.
157 Buffer contains a header line for each abbrev table,
158 which is the abbrev table name in parentheses.
159 This is followed by one line per abbrev in that table:
160 NAME USECOUNT EXPANSION HOOK
161 where NAME and EXPANSION are strings with quotes,
162 USECOUNT is an integer, and HOOK is any valid function
163 or may be omitted (it is usually omitted)."
164 (interactive)
165 (switch-to-buffer (prepare-abbrev-list-buffer)))
166
167 (defun edit-abbrevs-redefine ()
168 "Redefine abbrevs according to current buffer contents."
169 (interactive)
170 (save-restriction
171 (widen)
172 (define-abbrevs t)
173 (set-buffer-modified-p nil)))
174
175 (defun define-abbrevs (&optional arg)
176 "Define abbrevs according to current visible buffer contents.
177 See documentation of `edit-abbrevs' for info on the format of the
178 text you must have in the buffer.
179 With argument, eliminate all abbrev definitions except
180 the ones defined from the buffer now."
181 (interactive "P")
182 (if arg (kill-all-abbrevs))
183 (save-excursion
184 (goto-char (point-min))
185 (while (and (not (eobp)) (re-search-forward "^(" nil t))
186 (let* ((buf (current-buffer))
187 (table (read buf))
188 abbrevs name hook exp count sys)
189 (forward-line 1)
190 (while (progn (forward-line 1)
191 (not (eolp)))
192 (setq name (read buf) count (read buf))
193 (if (equal count '(sys))
194 (setq sys t count (read buf)))
195 (setq exp (read buf))
196 (skip-chars-backward " \t\n\f")
197 (setq hook (if (not (eolp)) (read buf)))
198 (skip-chars-backward " \t\n\f")
199 (setq abbrevs (cons (list name exp hook count sys) abbrevs)))
200 (define-abbrev-table table abbrevs)))))
201
202 (defun read-abbrev-file (&optional file quietly)
203 "Read abbrev definitions from file written with `write-abbrev-file'.
204 Optional argument FILE is the name of the file to read;
205 it defaults to the value of `abbrev-file-name'.
206 Optional second argument QUIETLY non-nil means don't display a message."
207 (interactive
208 (list
209 (read-file-name (format "Read abbrev file (default %s): "
210 abbrev-file-name)
211 nil abbrev-file-name t)))
212 (load (or file abbrev-file-name) nil quietly)
213 (setq abbrevs-changed nil))
214
215 (defun quietly-read-abbrev-file (&optional file)
216 "Read abbrev definitions from file written with `write-abbrev-file'.
217 Optional argument FILE is the name of the file to read;
218 it defaults to the value of `abbrev-file-name'.
219 Does not display any message."
220 ;(interactive "fRead abbrev file: ")
221 (read-abbrev-file file t))
222
223 (defun write-abbrev-file (&optional file)
224 "Write all user-level abbrev definitions to a file of Lisp code.
225 This does not include system abbrevs; it includes only the abbrev tables
226 listed in listed in `abbrev-table-name-list'.
227 The file written can be loaded in another session to define the same abbrevs.
228 The argument FILE is the file name to write. If omitted or nil, the file
229 specified in `abbrev-file-name' is used."
230 (interactive
231 (list
232 (read-file-name "Write abbrev file: "
233 (file-name-directory (expand-file-name abbrev-file-name))
234 abbrev-file-name)))
235 (or (and file (> (length file) 0))
236 (setq file abbrev-file-name))
237 (let ((coding-system-for-write 'emacs-mule))
238 (with-temp-file file
239 (insert ";;-*-coding: emacs-mule;-*-\n")
240 (dolist (table
241 ;; We sort the table in order to ease the automatic
242 ;; merging of different versions of the user's abbrevs
243 ;; file. This is useful, for example, for when the
244 ;; user keeps their home directory in a revision
245 ;; control system, and is therefore keeping multiple
246 ;; slightly-differing copies loosely synchronized.
247 (sort (copy-sequence abbrev-table-name-list)
248 (lambda (s1 s2)
249 (string< (symbol-name s1)
250 (symbol-name s2)))))
251 (insert-abbrev-table-description table nil)))))
252 \f
253 (defun add-mode-abbrev (arg)
254 "Define mode-specific abbrev for last word(s) before point.
255 Argument is how many words before point form the expansion;
256 or zero means the region is the expansion.
257 A negative argument means to undefine the specified abbrev.
258 Reads the abbreviation in the minibuffer.
259
260 Don't use this function in a Lisp program; use `define-abbrev' instead."
261 (interactive "p")
262 (add-abbrev
263 (if only-global-abbrevs
264 global-abbrev-table
265 (or local-abbrev-table
266 (error "No per-mode abbrev table")))
267 "Mode" arg))
268
269 (defun add-global-abbrev (arg)
270 "Define global (all modes) abbrev for last word(s) before point.
271 The prefix argument specifies the number of words before point that form the
272 expansion; or zero means the region is the expansion.
273 A negative argument means to undefine the specified abbrev.
274 This command uses the minibuffer to read the abbreviation.
275
276 Don't use this function in a Lisp program; use `define-abbrev' instead."
277 (interactive "p")
278 (add-abbrev global-abbrev-table "Global" arg))
279
280 (defun add-abbrev (table type arg)
281 (let ((exp (and (>= arg 0)
282 (buffer-substring-no-properties
283 (point)
284 (if (= arg 0) (mark)
285 (save-excursion (forward-word (- arg)) (point))))))
286 name)
287 (setq name
288 (read-string (format (if exp "%s abbrev for \"%s\": "
289 "Undefine %s abbrev: ")
290 type exp)))
291 (set-text-properties 0 (length name) nil name)
292 (if (or (null exp)
293 (not (abbrev-expansion name table))
294 (y-or-n-p (format "%s expands to \"%s\"; redefine? "
295 name (abbrev-expansion name table))))
296 (define-abbrev table (downcase name) exp))))
297
298 (defun inverse-add-mode-abbrev (n)
299 "Define last word before point as a mode-specific abbrev.
300 With prefix argument N, defines the Nth word before point.
301 This command uses the minibuffer to read the expansion.
302 Expands the abbreviation after defining it."
303 (interactive "p")
304 (inverse-add-abbrev
305 (if only-global-abbrevs
306 global-abbrev-table
307 (or local-abbrev-table
308 (error "No per-mode abbrev table")))
309 "Mode" n))
310
311 (defun inverse-add-global-abbrev (n)
312 "Define last word before point as a global (mode-independent) abbrev.
313 With prefix argument N, defines the Nth word before point.
314 This command uses the minibuffer to read the expansion.
315 Expands the abbreviation after defining it."
316 (interactive "p")
317 (inverse-add-abbrev global-abbrev-table "Global" n))
318
319 (defun inverse-add-abbrev (table type arg)
320 (let (name exp start end)
321 (save-excursion
322 (forward-word (1+ (- arg)))
323 (setq end (point))
324 (backward-word 1)
325 (setq start (point)
326 name (buffer-substring-no-properties start end)))
327
328 (setq exp (read-string (format "%s expansion for \"%s\": " type name)
329 nil nil nil t))
330 (when (or (not (abbrev-expansion name table))
331 (y-or-n-p (format "%s expands to \"%s\"; redefine? "
332 name (abbrev-expansion name table))))
333 (define-abbrev table (downcase name) exp)
334 (save-excursion
335 (goto-char end)
336 (expand-abbrev)))))
337
338 (defun abbrev-prefix-mark (&optional arg)
339 "Mark current point as the beginning of an abbrev.
340 Abbrev to be expanded starts here rather than at beginning of word.
341 This way, you can expand an abbrev with a prefix: insert the prefix,
342 use this command, then insert the abbrev. This command inserts a
343 temporary hyphen after the prefix \(until the intended abbrev
344 expansion occurs).
345 If the prefix is itself an abbrev, this command expands it, unless
346 ARG is non-nil. Interactively, ARG is the prefix argument."
347 (interactive "P")
348 (or arg (expand-abbrev))
349 (setq abbrev-start-location (point-marker)
350 abbrev-start-location-buffer (current-buffer))
351 (insert "-"))
352
353 (defun expand-region-abbrevs (start end &optional noquery)
354 "For abbrev occurrence in the region, offer to expand it.
355 The user is asked to type `y' or `n' for each occurrence.
356 A prefix argument means don't query; expand all abbrevs."
357 (interactive "r\nP")
358 (save-excursion
359 (goto-char start)
360 (let ((lim (- (point-max) end))
361 pnt string)
362 (while (and (not (eobp))
363 (progn (forward-word 1)
364 (<= (setq pnt (point)) (- (point-max) lim))))
365 (if (abbrev-expansion
366 (setq string
367 (buffer-substring-no-properties
368 (save-excursion (forward-word -1) (point))
369 pnt)))
370 (if (or noquery (y-or-n-p (format "Expand `%s'? " string)))
371 (expand-abbrev)))))))
372
373 ;;; Abbrev properties.
374
375 (defun abbrev-table-get (table prop)
376 "Get the PROP property of abbrev table TABLE."
377 (let ((sym (intern-soft "" table)))
378 (if sym (get sym prop))))
379
380 (defun abbrev-table-put (table prop val)
381 "Set the PROP property of abbrev table TABLE to VAL."
382 (let ((sym (intern "" table)))
383 (set sym nil) ; Make sure it won't be confused for an abbrev.
384 (put sym prop val)))
385
386 (defalias 'abbrev-get 'get
387 "Get the property PROP of abbrev ABBREV
388
389 \(fn ABBREV PROP)")
390
391 (defalias 'abbrev-put 'put
392 "Set the property PROP of abbrev ABREV to value VAL.
393 See `define-abbrev' for the effect of some special properties.
394
395 \(fn ABBREV PROP VAL)")
396
397 (defmacro abbrev-with-wrapper-hook (var &rest body)
398 "Run BODY wrapped with the VAR hook.
399 VAR is a special hook: its functions are called with one argument which
400 is the \"original\" code (the BODY), so the hook function can wrap the
401 original function, can call it several times, or even not call it at all.
402 VAR is normally a symbol (a variable) in which case it is treated like a hook,
403 with a buffer-local and a global part. But it can also be an arbitrary expression.
404 This is similar to an `around' advice."
405 (declare (indent 1) (debug t))
406 ;; We need those two gensyms because CL's lexical scoping is not available
407 ;; for function arguments :-(
408 (let ((funs (make-symbol "funs"))
409 (global (make-symbol "global")))
410 ;; Since the hook is a wrapper, the loop has to be done via
411 ;; recursion: a given hook function will call its parameter in order to
412 ;; continue looping.
413 `(labels ((runrestofhook (,funs ,global)
414 ;; `funs' holds the functions left on the hook and `global'
415 ;; holds the functions left on the global part of the hook
416 ;; (in case the hook is local).
417 (lexical-let ((funs ,funs)
418 (global ,global))
419 (if (consp funs)
420 (if (eq t (car funs))
421 (runrestofhook (append global (cdr funs)) nil)
422 (funcall (car funs)
423 (lambda () (runrestofhook (cdr funs) global))))
424 ;; Once there are no more functions on the hook, run
425 ;; the original body.
426 ,@body))))
427 (runrestofhook ,var
428 ;; The global part of the hook, if any.
429 ,(if (symbolp var)
430 `(if (local-variable-p ',var)
431 (default-value ',var)))))))
432
433
434 ;;; Code that used to be implemented in src/abbrev.c
435
436 (defvar abbrev-table-name-list '(fundamental-mode-abbrev-table
437 global-abbrev-table)
438 "List of symbols whose values are abbrev tables.")
439
440 (defun make-abbrev-table (&optional props)
441 "Create a new, empty abbrev table object.
442 PROPS is a "
443 ;; The value 59 is an arbitrary prime number.
444 (let ((table (make-vector 59 0)))
445 ;; Each abbrev-table has a `modiff' counter which can be used to detect
446 ;; when an abbreviation was added. An example of use would be to
447 ;; construct :regexp dynamically as the union of all abbrev names, so
448 ;; `modiff' can let us detect that an abbrev was added and hence :regexp
449 ;; needs to be refreshed.
450 ;; The presence of `modiff' entry is also used as a tag indicating this
451 ;; vector is really an abbrev-table.
452 (abbrev-table-put table :abbrev-table-modiff 0)
453 (while (consp props)
454 (abbrev-table-put table (pop props) (pop props)))
455 table))
456
457 (defun abbrev-table-p (object)
458 (and (vectorp object)
459 (numberp (abbrev-table-get object :abbrev-table-modiff))))
460
461 (defvar global-abbrev-table (make-abbrev-table)
462 "The abbrev table whose abbrevs affect all buffers.
463 Each buffer may also have a local abbrev table.
464 If it does, the local table overrides the global one
465 for any particular abbrev defined in both.")
466
467 (defvar abbrev-minor-mode-table-alist nil
468 "Alist of abbrev tables to use for minor modes.
469 Each element looks like (VARIABLE . ABBREV-TABLE);
470 ABBREV-TABLE is active whenever VARIABLE's value is non-nil.")
471
472 (defvar fundamental-mode-abbrev-table
473 (let ((table (make-abbrev-table)))
474 ;; Set local-abbrev-table's default to be fundamental-mode-abbrev-table.
475 (setq-default local-abbrev-table table)
476 table)
477 "The abbrev table of mode-specific abbrevs for Fundamental Mode.")
478
479 (defvar abbrevs-changed nil
480 "Set non-nil by defining or altering any word abbrevs.
481 This causes `save-some-buffers' to offer to save the abbrevs.")
482
483 (defcustom abbrev-all-caps nil
484 "Non-nil means expand multi-word abbrevs all caps if abbrev was so."
485 :type 'boolean
486 :group 'abbrev-mode)
487
488 (defvar abbrev-start-location nil
489 "Buffer position for `expand-abbrev' to use as the start of the abbrev.
490 When nil, use the word before point as the abbrev.
491 Calling `expand-abbrev' sets this to nil.")
492
493 (defvar abbrev-start-location-buffer nil
494 "Buffer that `abbrev-start-location' has been set for.
495 Trying to expand an abbrev in any other buffer clears `abbrev-start-location'.")
496
497 (defvar last-abbrev nil
498 "The abbrev-symbol of the last abbrev expanded. See `abbrev-symbol'.")
499
500 (defvar last-abbrev-text nil
501 "The exact text of the last abbrev expanded.
502 nil if the abbrev has already been unexpanded.")
503
504 (defvar last-abbrev-location 0
505 "The location of the start of the last abbrev expanded.")
506
507 ;; (defvar local-abbrev-table fundamental-mode-abbrev-table
508 ;; "Local (mode-specific) abbrev table of current buffer.")
509 ;; (make-variable-buffer-local 'local-abbrev-table)
510
511 (defcustom pre-abbrev-expand-hook nil
512 "Function or functions to be called before abbrev expansion is done.
513 This is the first thing that `expand-abbrev' does, and so this may change
514 the current abbrev table before abbrev lookup happens."
515 :type 'hook
516 :group 'abbrev-mode)
517 (make-obsolete-variable 'pre-abbrev-expand-hook 'abbrev-expand-functions "23.1")
518
519 (defun clear-abbrev-table (table)
520 "Undefine all abbrevs in abbrev table TABLE, leaving it empty."
521 (setq abbrevs-changed t)
522 (let* ((sym (intern-soft "" table)))
523 (dotimes (i (length table))
524 (aset table i 0))
525 ;; Preserve the table's properties.
526 (assert sym)
527 (intern sym table)
528 (abbrev-table-put table :abbrev-table-modiff
529 (1+ (abbrev-table-get table :abbrev-table-modiff)))))
530
531 (defun define-abbrev (table name expansion &optional hook &rest props)
532 "Define an abbrev in TABLE named NAME, to expand to EXPANSION and call HOOK.
533 NAME must be a string, and should be lower-case.
534 EXPANSION should usually be a string.
535 To undefine an abbrev, define it with EXPANSION = nil.
536 If HOOK is non-nil, it should be a function of no arguments;
537 it is called after EXPANSION is inserted.
538 If EXPANSION is not a string, the abbrev is a special one,
539 which does not expand in the usual way but only runs HOOK.
540
541 PROPS is a property list. The following properties are special:
542 - `:count': the value for the abbrev's usage-count, which is incremented each time
543 the abbrev is used (the default is zero).
544 - `:system': if non-nil, says that this is a \"system\" abbreviation
545 which should not be saved in the user's abbreviation file.
546 Unless `:system' is `force', a system abbreviation will not
547 overwrite a non-system abbreviation of the same name.
548 - `:case-fixed': non-nil means that abbreviations are looked up without
549 case-folding, and the expansion is not capitalized/upcased.
550 - `:enable-function': a function of no argument which returns non-nil iff the
551 abbrev should be used for a particular call of `expand-abbrev'.
552
553 An obsolete but still supported calling form is:
554
555 \(define-abbrev TABLE NAME EXPANSION &optional HOOK COUNT SYSTEM)."
556 (when (and (consp props) (or (null (car props)) (numberp (car props))))
557 ;; Old-style calling convention.
558 (setq props (list* :count (car props)
559 (if (cadr props) (list :system (cadr props))))))
560 (unless (plist-get props :count)
561 (setq props (plist-put props :count 0)))
562 (let ((system-flag (plist-get props :system))
563 (sym (intern name table)))
564 ;; Don't override a prior user-defined abbrev with a system abbrev,
565 ;; unless system-flag is `force'.
566 (unless (and (not (memq system-flag '(nil force)))
567 (boundp sym) (symbol-value sym)
568 (not (abbrev-get sym :system)))
569 (unless (or system-flag
570 (and (boundp sym) (fboundp sym)
571 ;; load-file-name
572 (equal (symbol-value sym) expansion)
573 (equal (symbol-function sym) hook)))
574 (setq abbrevs-changed t))
575 (set sym expansion)
576 (fset sym hook)
577 (setplist sym
578 ;; Don't store the `force' value of `system-flag' into
579 ;; the :system property.
580 (if (eq 'force system-flag) (plist-put props :system t) props))
581 (abbrev-table-put table :abbrev-table-modiff
582 (1+ (abbrev-table-get table :abbrev-table-modiff))))
583 name))
584
585 (defun abbrev--check-chars (abbrev global)
586 "Check if the characters in ABBREV have word syntax in either the
587 current (if global is nil) or standard syntax table."
588 (with-syntax-table
589 (cond ((null global) (standard-syntax-table))
590 ;; ((syntax-table-p global) global)
591 (t (syntax-table)))
592 (when (string-match "\\W" abbrev)
593 (let ((badchars ())
594 (pos 0))
595 (while (string-match "\\W" abbrev pos)
596 (pushnew (aref abbrev (match-beginning 0)) badchars)
597 (setq pos (1+ pos)))
598 (error "Some abbrev characters (%s) are not word constituents %s"
599 (apply 'string (nreverse badchars))
600 (if global "in the standard syntax" "in this mode"))))))
601
602 (defun define-global-abbrev (abbrev expansion)
603 "Define ABBREV as a global abbreviation for EXPANSION.
604 The characters in ABBREV must all be word constituents in the standard
605 syntax table."
606 (interactive "sDefine global abbrev: \nsExpansion for %s: ")
607 (abbrev--check-chars abbrev 'global)
608 (define-abbrev global-abbrev-table (downcase abbrev) expansion))
609
610 (defun define-mode-abbrev (abbrev expansion)
611 "Define ABBREV as a mode-specific abbreviation for EXPANSION.
612 The characters in ABBREV must all be word-constituents in the current mode."
613 (interactive "sDefine mode abbrev: \nsExpansion for %s: ")
614 (unless local-abbrev-table
615 (error "Major mode has no abbrev table"))
616 (abbrev--check-chars abbrev nil)
617 (define-abbrev local-abbrev-table (downcase abbrev) expansion))
618
619 (defun abbrev--active-tables (&optional tables)
620 "Return the list of abbrev tables currently active.
621 TABLES if non-nil overrides the usual rules. It can hold
622 either a single abbrev table or a list of abbrev tables."
623 ;; We could just remove the `tables' arg and let callers use
624 ;; (or table (abbrev--active-tables)) but then they'd have to be careful
625 ;; to treat the distinction between a single table and a list of tables.
626 (cond
627 ((consp tables) tables)
628 ((vectorp tables) (list tables))
629 (t
630 (let ((tables (if (listp local-abbrev-table)
631 (append local-abbrev-table
632 (list global-abbrev-table))
633 (list local-abbrev-table global-abbrev-table))))
634 ;; Add the minor-mode abbrev tables.
635 (dolist (x abbrev-minor-mode-table-alist)
636 (when (and (symbolp (car x)) (boundp (car x)) (symbol-value (car x)))
637 (setq tables
638 (if (listp (cdr x))
639 (append (cdr x) tables) (cons (cdr x) tables)))))
640 tables))))
641
642
643 (defun abbrev-symbol (abbrev &optional table)
644 "Return the symbol representing abbrev named ABBREV.
645 This symbol's name is ABBREV, but it is not the canonical symbol of that name;
646 it is interned in an abbrev-table rather than the normal obarray.
647 The value is nil if that abbrev is not defined.
648 Optional second arg TABLE is abbrev table to look it up in.
649 The default is to try buffer's mode-specific abbrev table, then global table."
650 (let ((tables (abbrev--active-tables table))
651 sym)
652 (while (and tables (not (symbol-value sym)))
653 (let* ((table (pop tables))
654 (case-fold (not (abbrev-table-get table :case-fixed))))
655 (setq tables (append (abbrev-table-get table :parents) tables))
656 ;; In case the table doesn't set :case-fixed but some of the
657 ;; abbrevs do, we have to be careful.
658 (setq sym
659 ;; First try without case-folding.
660 (or (intern-soft abbrev table)
661 (when case-fold
662 ;; We didn't find any abbrev, try case-folding.
663 (let ((sym (intern-soft (downcase abbrev) table)))
664 ;; Only use it if it doesn't require :case-fixed.
665 (and sym (not (abbrev-get sym :case-fixed))
666 sym)))))))
667 (if (symbol-value sym)
668 sym)))
669
670
671 (defun abbrev-expansion (abbrev &optional table)
672 "Return the string that ABBREV expands into in the current buffer.
673 Optionally specify an abbrev table as second arg;
674 then ABBREV is looked up in that table only."
675 (symbol-value (abbrev-symbol abbrev table)))
676
677
678 (defun abbrev--before-point ()
679 "Try and find an abbrev before point. Return it if found, nil otherwise."
680 (unless (eq abbrev-start-location-buffer (current-buffer))
681 (setq abbrev-start-location nil))
682
683 (let ((tables (abbrev--active-tables))
684 (pos (point))
685 start end name res)
686
687 (if abbrev-start-location
688 (progn
689 (setq start abbrev-start-location)
690 (setq abbrev-start-location nil)
691 ;; Remove the hyphen inserted by `abbrev-prefix-mark'.
692 (if (and (< start (point-max))
693 (eq (char-after start) ?-))
694 (delete-region start (1+ start)))
695 (skip-syntax-backward " ")
696 (setq end (point))
697 (when (> end start)
698 (setq name (buffer-substring start end))
699 (goto-char pos) ; Restore point.
700 (list (abbrev-symbol name tables) name start end)))
701
702 (while (and tables (not (car res)))
703 (let* ((table (pop tables))
704 (enable-fun (abbrev-table-get table :enable-function)))
705 (setq tables (append (abbrev-table-get table :parents) tables))
706 (setq res
707 (and (or (not enable-fun) (funcall enable-fun))
708 (looking-back (or (abbrev-table-get table :regexp)
709 "\\<\\(\\w+\\)\\W*")
710 (line-beginning-position))
711 (setq start (match-beginning 1))
712 (setq end (match-end 1))
713 (setq name (buffer-substring start end))
714 (let ((abbrev (abbrev-symbol name table)))
715 (when abbrev
716 (setq enable-fun (abbrev-get abbrev :enable-function))
717 (and (or (not enable-fun) (funcall enable-fun))
718 ;; This will also look it up in parent tables.
719 ;; This is not on purpose, but it seems harmless.
720 (list abbrev name start end))))))
721 ;; Restore point.
722 (goto-char pos)))
723 res)))
724
725 (defvar abbrev-expand-functions nil
726 "Wrapper hook around `expand-abbrev'.
727 The functions on this special hook are called with one argument:
728 a function that performs the abbrev expansion. It should return
729 the abbrev symbol if expansion took place.")
730
731 (defun expand-abbrev ()
732 "Expand the abbrev before point, if there is an abbrev there.
733 Effective when explicitly called even when `abbrev-mode' is nil.
734 Returns the abbrev symbol, if expansion took place."
735 (interactive)
736 (run-hooks 'pre-abbrev-expand-hook)
737 (abbrev-with-wrapper-hook abbrev-expand-functions
738 (destructuring-bind (&optional sym name wordstart wordend)
739 (abbrev--before-point)
740 (when sym
741 (let ((value sym))
742 (unless (or ;; executing-kbd-macro
743 noninteractive
744 (window-minibuffer-p (selected-window)))
745 ;; Add an undo boundary, in case we are doing this for
746 ;; a self-inserting command which has avoided making one so far.
747 (undo-boundary))
748 ;; Now sym is the abbrev symbol.
749 (setq last-abbrev-text name)
750 (setq last-abbrev sym)
751 (setq last-abbrev-location wordstart)
752 ;; Increment use count.
753 (abbrev-put sym :count (1+ (abbrev-get sym :count)))
754 ;; If this abbrev has an expansion, delete the abbrev
755 ;; and insert the expansion.
756 (when (stringp (symbol-value sym))
757 (goto-char wordstart)
758 ;; Insert at beginning so that markers at the end (e.g. point)
759 ;; are preserved.
760 (insert (symbol-value sym))
761 (delete-char (- wordend wordstart))
762 (let ((case-fold-search nil))
763 ;; If the abbrev's name is different from the buffer text (the
764 ;; only difference should be capitalization), then we may want
765 ;; to adjust the capitalization of the expansion.
766 (when (and (not (equal name (symbol-name sym)))
767 (string-match "[[:upper:]]" name))
768 (if (not (string-match "[[:lower:]]" name))
769 ;; Abbrev was all caps. If expansion is multiple words,
770 ;; normally capitalize each word.
771 (if (and (not abbrev-all-caps)
772 (save-excursion
773 (> (progn (backward-word 1) (point))
774 (progn (goto-char wordstart)
775 (forward-word 1) (point)))))
776 (upcase-initials-region wordstart (point))
777 (upcase-region wordstart (point)))
778 ;; Abbrev included some caps. Cap first initial of expansion.
779 (let ((end (point)))
780 ;; Find the initial.
781 (goto-char wordstart)
782 (skip-syntax-forward "^w" (1- end))
783 ;; Change just that.
784 (upcase-initials-region (point) (1+ (point)))
785 (goto-char end))))))
786 ;; Now point is at the end of the expansion and the beginning is
787 ;; in last-abbrev-location.
788 (when (symbol-function sym)
789 (let* ((hook (symbol-function sym))
790 (expanded
791 ;; If the abbrev has a hook function, run it.
792 (funcall hook)))
793 ;; In addition, if the hook function is a symbol with
794 ;; a non-nil `no-self-insert' property, let the value it
795 ;; returned specify whether we consider that an expansion took
796 ;; place. If it returns nil, no expansion has been done.
797 (if (and (symbolp hook)
798 (null expanded)
799 (get hook 'no-self-insert))
800 (setq value nil))))
801 value)))))
802
803 (defun unexpand-abbrev ()
804 "Undo the expansion of the last abbrev that expanded.
805 This differs from ordinary undo in that other editing done since then
806 is not undone."
807 (interactive)
808 (save-excursion
809 (unless (or (< last-abbrev-location (point-min))
810 (> last-abbrev-location (point-max)))
811 (goto-char last-abbrev-location)
812 (when (stringp last-abbrev-text)
813 ;; This isn't correct if last-abbrev's hook was used
814 ;; to do the expansion.
815 (let ((val (symbol-value last-abbrev)))
816 (unless (stringp val)
817 (error "value of abbrev-symbol must be a string"))
818 (delete-region (point) (+ (point) (length val)))
819 ;; Don't inherit properties here; just copy from old contents.
820 (insert last-abbrev-text)
821 (setq last-abbrev-text nil))))))
822
823 (defun abbrev--write (sym)
824 "Write the abbrev in a `read'able form.
825 Only writes the non-system abbrevs.
826 Presumes that `standard-output' points to `current-buffer'."
827 (unless (or (null (symbol-value sym)) (abbrev-get sym :system))
828 (insert " (")
829 (prin1 (symbol-name sym))
830 (insert " ")
831 (prin1 (symbol-value sym))
832 (insert " ")
833 (prin1 (symbol-function sym))
834 (insert " ")
835 (prin1 (abbrev-get sym :count))
836 (insert ")\n")))
837
838 (defun abbrev--describe (sym)
839 (when (symbol-value sym)
840 (prin1 (symbol-name sym))
841 (if (null (abbrev-get sym :system))
842 (indent-to 15 1)
843 (insert " (sys)")
844 (indent-to 20 1))
845 (prin1 (abbrev-get sym :count))
846 (indent-to 20 1)
847 (prin1 (symbol-value sym))
848 (when (symbol-function sym)
849 (indent-to 45 1)
850 (prin1 (symbol-function sym)))
851 (terpri)))
852
853 (defun insert-abbrev-table-description (name &optional readable)
854 "Insert before point a full description of abbrev table named NAME.
855 NAME is a symbol whose value is an abbrev table.
856 If optional 2nd arg READABLE is non-nil, a human-readable description
857 is inserted. Otherwise the description is an expression,
858 a call to `define-abbrev-table', which would
859 define the abbrev table NAME exactly as it is currently defined.
860
861 Abbrevs marked as \"system abbrevs\" are omitted."
862 (let ((table (symbol-value name))
863 (symbols ()))
864 (mapatoms (lambda (sym) (if (symbol-value sym) (push sym symbols))) table)
865 (setq symbols (sort symbols 'string-lessp))
866 (let ((standard-output (current-buffer)))
867 (if readable
868 (progn
869 (insert "(")
870 (prin1 name)
871 (insert ")\n\n")
872 (mapc 'abbrev--describe symbols)
873 (insert "\n\n"))
874 (insert "(define-abbrev-table '")
875 (prin1 name)
876 (insert " '(")
877 (mapc 'abbrev--write symbols)
878 (insert " ))\n\n"))
879 nil)))
880
881 (defun define-abbrev-table (tablename definitions
882 &optional docstring &rest props)
883 "Define TABLENAME (a symbol) as an abbrev table name.
884 Define abbrevs in it according to DEFINITIONS, which is a list of elements
885 of the form (ABBREVNAME EXPANSION HOOK USECOUNT SYSTEMFLAG).
886 \(If the list is shorter than that, omitted elements default to nil).
887 PROPS is a property list to apply to the table.
888 Properties with special meaning:
889 - `:parents' contains a list of abbrev tables from which this table inherits
890 abbreviations.
891 - `:case-fixed' non-nil means that abbreviations are looked up without
892 case-folding, and the expansion is not capitalized/upcased.
893 - `:regexp' describes the form of abbrevs. It defaults to \\=\\<\\(\\w+\\)\\W* which
894 means that an abbrev can only be a single word. The submatch 1 is treated
895 as the potential name of an abbrev.
896 - `:enable-function' can be set to a function of no argument which returns
897 non-nil iff the abbrevs in this table should be used for this instance
898 of `expand-abbrev'."
899 ;; We used to manually add the docstring, but we also want to record this
900 ;; location as the definition of the variable (in load-history), so we may
901 ;; as well just use `defvar'.
902 (eval `(defvar ,tablename nil ,@(if (stringp docstring) (list docstring))))
903 (let ((table (if (boundp tablename) (symbol-value tablename))))
904 (unless table
905 (setq table (make-abbrev-table props))
906 (set tablename table)
907 (push tablename abbrev-table-name-list))
908 (dolist (elt definitions)
909 (apply 'define-abbrev table elt))))
910
911 (provide 'abbrev)
912
913 ;; arch-tag: dbd6f3ae-dfe3-40ba-b00f-f9e3ff960df5
914 ;;; abbrev.el ends here