Merge from emacs-24; up to 2012-05-08T15:19:18Z!monnier@iro.umontreal.ca
[bpt/emacs.git] / lisp / dabbrev.el
CommitLineData
b19490ed 1;;; dabbrev.el --- dynamic abbreviation package -*- lexical-binding: t -*-
b578f267 2
acaf905b 3;; Copyright (C) 1985-1986, 1992, 1994, 1996-1997, 2000-2012
f3ae2521 4;; Free Software Foundation, Inc.
2f790b20 5
6163b3ba 6;; Author: Don Morrison
f3ae2521
GM
7;; Lars Lindberg
8;; (according to ack.texi)
6163b3ba
RS
9;; Maintainer: Lars Lindberg <Lars.Lindberg@sypro.cap.se>
10;; Created: 16 Mars 1992
df6eb420 11;; Lindberg's last update version: 5.7
f5f727f8 12;; Keywords: abbrev expand completion convenience
3a801d0c 13
b578f267
EN
14;; This file is part of GNU Emacs.
15
eb3fa2cf 16;; GNU Emacs is free software: you can redistribute it and/or modify
2f790b20 17;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
18;; the Free Software Foundation, either version 3 of the License, or
19;; (at your option) any later version.
b578f267
EN
20
21;; GNU Emacs is distributed in the hope that it will be useful,
2f790b20
JB
22;; but WITHOUT ANY WARRANTY; without even the implied warranty of
23;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24;; GNU General Public License for more details.
b578f267 25
2f790b20 26;; You should have received a copy of the GNU General Public License
eb3fa2cf 27;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
2f790b20 28
e5167999 29;;; Commentary:
2f790b20 30
6163b3ba
RS
31;; The purpose with this package is to let you write just a few
32;; characters of words you've written earlier to be able to expand
33;; them.
34;;
35;; To expand a word, just put the point right after the word and press
36;; M-/ (dabbrev-expand) or M-C-/ (dabbrev-completion).
37;;
6163b3ba
RS
38;; Check out the customizable variables below to learn about all the
39;; features of this package.
40
41;;; Hints and tips for major modes writers:
42
43;; Recommended values C/Lisp etc text
44;; dabbrev-case-fold-search nil t
45;; dabbrev-case-replace nil t
46;;
47;; Set the variables you want special for your mode like this:
48;; (set (make-local-variable 'dabbrev-case-replace) nil)
a7acbbe4 49;; Then you don't interfere with other modes.
6163b3ba
RS
50;;
51;; If your mode handles buffers that refers to other buffers
52;; (i.e. compilation-mode, gud-mode), then try to set
53;; `dabbrev-select-buffers-function' or `dabbrev-friend-buffer-function'
54;; to a function that point out those buffers.
55
56;; Same goes for major-modes that are connected to other modes. There
57;; are for instance a number of mail-modes. One for reading, one for
58;; creating a new mail etc. Maybe those should be connected.
59
60;; Example for GNUS (when we write a reply, we want dabbrev to look in
61;; the article for expansion):
62;; (set (make-local-variable 'dabbrev-friend-buffer-function)
63;; (lambda (buffer)
7fdbcd83 64;; (with-current-buffer buffer
6163b3ba
RS
65;; (memq major-mode '(news-reply-mode gnus-article-mode)))))
66
6163b3ba
RS
67
68;; Known bugs and limitations.
69;; - Possible to do several levels of `dabbrev-completion' in the
70;; minibuffer.
71;; - dabbrev-completion doesn't handle resetting the globals variables
72;; right. It resets them after finding the abbrev.
73
74;; Future enhancements
75;; - Check the tags-files? Like tags-complete?
76;; - Add the possibility of searching both forward and backward to
77;; the nearest expansion.
7313ccdb
RS
78;; - Check the kill-ring when everything else fails. (Maybe something
79;; for hippie-expand?). [Bng] <boris@cs.rochester.edu>
6163b3ba 80
df6eb420 81;;; These people gave suggestions:
6163b3ba
RS
82;; [hymie] Hyman Rosen <marks!hymie@jyacc.jyacc.com>
83;; [burgett] Steve Burgett <burgett@bizet.eecs.berkeley.edu>
84;; [jules] Julian Gosnell <jules@x.co.uk>
85;; [kifer] Michael Kifer <kifer@sbcs.sunysb.edu>
86;; [ake] Ake Stenhoff <extaksf@aom.ericsson.se>
87;; [alon] Alon Albert <al%imercury@uunet.uu.net>
88;; [tromey] Tom Tromey <tromey@busco.lanl.gov>
89;; [Rolf] Rolf Schreiber <rolf@mathematik.uni-stuttgart.de>
90;; [Petri] Petri Raitio <per@tekla.fi>
7bd9ba70 91;; [ejb] Jay Berkenbilt <ejb@ql.org>
6163b3ba
RS
92;; [hawley] Bob Hawley <rth1@quartet.mt.att.com>
93;; ... and to all the people who have participated in the beta tests.
2f790b20 94
e5167999 95;;; Code:
6163b3ba 96
b578f267
EN
97;;----------------------------------------------------------------
98;; Customization variables
99;;----------------------------------------------------------------
6163b3ba 100
bbf5eb28 101(defgroup dabbrev nil
a6bd541a 102 "Dynamic Abbreviations."
bbf5eb28 103 :tag "Dynamic Abbreviations"
f5f727f8
DN
104 :group 'abbrev
105 :group 'convenience)
6163b3ba 106
bbf5eb28 107(defcustom dabbrev-backward-only nil
9201cc28 108 "If non-nil, `dabbrev-expand' only looks backwards."
bbf5eb28
RS
109 :type 'boolean
110 :group 'dabbrev)
111
112(defcustom dabbrev-limit nil
9201cc28 113 "Limits region searched by `dabbrev-expand' to this many chars away."
bbf5eb28
RS
114 :type '(choice (const :tag "off" nil)
115 integer)
116 :group 'dabbrev)
117
118(defcustom dabbrev-abbrev-skip-leading-regexp nil
9201cc28 119 "Regexp for skipping leading characters of an abbreviation.
6163b3ba 120
7313ccdb
RS
121Example: Set this to \"\\\\$\" for programming languages
122in which variable names may appear with or without a leading `$'.
79bb4872 123\(For example, in Makefiles.\)
6163b3ba 124
bbf5eb28
RS
125Set this to nil if no characters should be skipped."
126 :type '(choice regexp
127 (const :tag "off" nil))
128 :group 'dabbrev)
6163b3ba 129
e2e75068 130(defcustom dabbrev-eliminate-newlines t
9201cc28 131 "Non-nil means dabbrev should not insert newlines.
fd2dfb40
RS
132Instead it converts them to spaces."
133 :type 'boolean
134 :group 'dabbrev)
135
bbf5eb28 136(defcustom dabbrev-case-fold-search 'case-fold-search
9201cc28 137 "Control whether dabbrev searches should ignore case.
7313ccdb 138A value of nil means case is significant.
543abb4a
RS
139A value of `case-fold-search' means case is significant
140 if `case-fold-search' is nil.
141Any other non-nil version means case is not significant."
142 :type '(choice (const :tag "off" nil)
eaaca5ee
AS
143 (const :tag "like search" case-fold-search)
144 (other :tag "on" t))
bbf5eb28 145 :group 'dabbrev)
6dc3311d 146;;;###autoload(put 'dabbrev-case-fold-search 'risky-local-variable t)
6163b3ba 147
bbf5eb28 148(defcustom dabbrev-upcase-means-case-search nil
9201cc28 149 "The significance of an uppercase character in an abbreviation.
602ea79e 150A nil value means case fold search when searching for possible expansions;
93a43334 151non-nil means case sensitive search.
6163b3ba 152
7313ccdb 153This variable has an effect only when the value of
543abb4a 154`dabbrev-case-fold-search' says to ignore case."
bbf5eb28
RS
155 :type 'boolean
156 :group 'dabbrev)
6163b3ba 157
93a43334 158(defcustom dabbrev-case-distinction 'case-replace
9201cc28 159 "Whether dabbrev treats expansions as the same if they differ in case.
93a43334
RS
160
161A value of nil means treat them as different.
162A value of `case-replace' means distinguish them if `case-replace' is nil.
163Any other non-nil value means to treat them as the same.
164
165This variable has an effect only when the value of
166`dabbrev-case-fold-search' specifies to ignore case."
167 :type '(choice (const :tag "off" nil)
168 (const :tag "based on `case-replace'" case-replace)
169 (other :tag "on" t))
170 :group 'dabbrev
bf247b6e 171 :version "22.1")
93a43334 172
bbf5eb28 173(defcustom dabbrev-case-replace 'case-replace
9201cc28 174 "Whether dabbrev applies the abbreviations's case pattern to the expansion.
93a43334
RS
175
176A value of nil means preserve the expansion's case pattern.
177A value of `case-replace' means preserve it if `case-replace' is nil.
178Any other non-nil value means modify the expansion
179by applying the abbreviation's case pattern to it.
6163b3ba 180
7313ccdb 181This variable has an effect only when the value of
543abb4a
RS
182`dabbrev-case-fold-search' specifies to ignore case."
183 :type '(choice (const :tag "off" nil)
93a43334 184 (const :tag "based on `case-replace'" case-replace)
eaaca5ee 185 (other :tag "on" t))
bbf5eb28 186 :group 'dabbrev)
6dc3311d 187;;;###autoload(put 'dabbrev-case-replace 'risky-local-variable t)
6163b3ba 188
bbf5eb28 189(defcustom dabbrev-abbrev-char-regexp nil
9201cc28 190 "Regexp to recognize a character in an abbreviation or expansion.
7313ccdb 191This regexp will be surrounded with \\\\( ... \\\\) when actually used.
6163b3ba 192
7313ccdb 193Set this variable to \"\\\\sw\" if you want ordinary words or
df6eb420
RS
194\"\\\\sw\\\\|\\\\s_\" if you want symbols (including characters whose
195syntax is \"symbol\" as well as those whose syntax is \"word\".
6163b3ba 196
df6eb420
RS
197The value nil has a special meaning: the abbreviation is from point to
198previous word-start, but the search is for symbols.
6163b3ba 199
7313ccdb 200For instance, if you are programming in Lisp, `yes-or-no-p' is a symbol,
df6eb420
RS
201while `yes', `or', `no' and `p' are considered words. If this
202variable is nil, then expanding `yes-or-no-' looks for a symbol
7313ccdb
RS
203starting with or containing `no-'. If you set this variable to
204\"\\\\sw\\\\|\\\\s_\", that expansion looks for a symbol starting with
205`yes-or-no-'. Finally, if you set this variable to \"\\\\sw\", then
206expanding `yes-or-no-' signals an error because `-' is not part of a word;
207but expanding `yes-or-no' looks for a word starting with `no'.
6163b3ba 208
fe204702
LMI
209The recommended value is nil, which will make dabbrev default to
210using \"\\\\sw\\\\|\\\\s_\"."
bbf5eb28
RS
211 :type '(choice (const nil)
212 regexp)
213 :group 'dabbrev)
6163b3ba 214
bbf5eb28 215(defcustom dabbrev-check-all-buffers t
9201cc28 216 "Non-nil means dabbrev package should search *all* buffers.
6163b3ba 217
df6eb420
RS
218Dabbrev always searches the current buffer first. Then, if
219`dabbrev-check-other-buffers' says so, it searches the buffers
220designated by `dabbrev-select-buffers-function'.
6163b3ba 221
df6eb420 222Then, if `dabbrev-check-all-buffers' is non-nil, dabbrev searches
7e65cba2
GM
223all the other buffers, except those named in `dabbrev-ignored-buffer-names',
224or matched by `dabbrev-ignored-regexps'."
bbf5eb28
RS
225 :type 'boolean
226 :group 'dabbrev)
df6eb420 227
9648a1e6 228(defcustom dabbrev-ignored-buffer-names '("*Messages*" "*Buffer List*")
9201cc28 229 "List of buffer names that dabbrev should not check.
c4ca64db 230See also `dabbrev-ignored-buffer-regexps'."
7bd9ba70 231 :type '(repeat (string :tag "Buffer name"))
cd32a7ba
DN
232 :group 'dabbrev
233 :version "20.3")
7bd9ba70 234
c4ca64db 235(defcustom dabbrev-ignored-buffer-regexps nil
9201cc28 236 "List of regexps matching names of buffers that dabbrev should not check.
7e65cba2
GM
237See also `dabbrev-ignored-buffer-names'."
238 :type '(repeat regexp)
239 :group 'dabbrev
240 :version "21.1")
241
bbf5eb28 242(defcustom dabbrev-check-other-buffers t
9201cc28 243 "Should \\[dabbrev-expand] look in other buffers?\
6163b3ba 244
df6eb420
RS
245nil: Don't look in other buffers.
246t: Also look for expansions in the buffers pointed out by
247 `dabbrev-select-buffers-function'.
248Anything else: When we can't find any more expansions in
249the current buffer, then ask the user whether to look in other
250buffers too.
251
bbf5eb28
RS
252The default value is t."
253 :type '(choice (const :tag "off" nil)
254 (const :tag "on" t)
eaaca5ee 255 (other :tag "ask" other))
bbf5eb28 256 :group 'dabbrev)
6163b3ba
RS
257
258;; I guess setting this to a function that selects all C- or C++-
259;; mode buffers would be a good choice for a debugging buffer,
260;; when debugging C- or C++-code.
261(defvar dabbrev-select-buffers-function 'dabbrev--select-buffers
262 "A function that selects buffers that should be searched by dabbrev.
6163b3ba 263The function should take no arguments and return a list of buffers to
05be3833
RS
264search for expansions. See the source of `dabbrev--select-buffers'
265for an example.
6163b3ba
RS
266
267A mode setting this variable should make it buffer local.")
268
bbf5eb28 269(defcustom dabbrev-friend-buffer-function 'dabbrev--same-major-mode-p
9201cc28 270 "A function to decide whether dabbrev should search OTHER-BUFFER.
6163b3ba
RS
271The function should take one argument, OTHER-BUFFER, and return
272non-nil if that buffer should be searched. Have a look at
273`dabbrev--same-major-mode-p' for an example.
274
7313ccdb
RS
275The value of `dabbrev-friend-buffer-function' has an effect only if
276the value of `dabbrev-select-buffers-function' uses it. The function
277`dabbrev--select-buffers' is one function you can use here.
6163b3ba 278
bbf5eb28
RS
279A mode setting this variable should make it buffer local."
280 :type 'function
281 :group 'dabbrev)
6163b3ba 282
bbf5eb28 283(defcustom dabbrev-search-these-buffers-only nil
7313ccdb
RS
284 "If non-nil, a list of buffers which dabbrev should search.
285If this variable is non-nil, dabbrev will only look in these buffers.
286It will not even look in the current buffer if it is not a member of
f5307782
JB
287this list."
288 :group 'dabbrev)
e5167999 289
b578f267
EN
290;;----------------------------------------------------------------
291;; Internal variables
292;;----------------------------------------------------------------
2f790b20 293
6163b3ba
RS
294;; Table of expansions seen so far
295(defvar dabbrev--last-table nil)
2f790b20 296
6163b3ba
RS
297;; Last string we tried to expand.
298(defvar dabbrev--last-abbreviation nil)
2f790b20 299
6163b3ba
RS
300;; Location last abbreviation began
301(defvar dabbrev--last-abbrev-location nil)
2f790b20 302
6163b3ba
RS
303;; Direction of last dabbrevs search
304(defvar dabbrev--last-direction 0)
2f790b20 305
6163b3ba
RS
306;; Last expansion of an abbreviation.
307(defvar dabbrev--last-expansion nil)
2f790b20 308
6163b3ba
RS
309;; Location the last expansion was found.
310(defvar dabbrev--last-expansion-location nil)
311
312;; The list of remaining buffers with the same mode as current buffer.
313(defvar dabbrev--friend-buffer-list nil)
314
513e7954 315;; The buffer we looked in last, not counting the current buffer.
6163b3ba
RS
316(defvar dabbrev--last-buffer nil)
317
318;; The buffer we found the expansion last time.
319(defvar dabbrev--last-buffer-found nil)
320
3ffa545b
GM
321;; If non-nil, a function to use when copying successive words.
322;; It should be `upcase' or `downcase'.
dea5efcb
RS
323(defvar dabbrev--last-case-pattern nil)
324
df6eb420
RS
325;; Same as dabbrev-check-other-buffers, but is set for every expand.
326(defvar dabbrev--check-other-buffers dabbrev-check-other-buffers)
6163b3ba
RS
327
328;; The regexp for recognizing a character in an abbreviation.
329(defvar dabbrev--abbrev-char-regexp nil)
330
7daa3523
TTN
331;; The progress reporter for buffer-scanning progress.
332(defvar dabbrev--progress-reporter nil)
333
b578f267
EN
334;;----------------------------------------------------------------
335;; Macros
336;;----------------------------------------------------------------
6163b3ba 337
6163b3ba 338(defsubst dabbrev--minibuffer-origin ()
5f24557b
SM
339 "Get the buffer from which mini-buffer."
340 (window-buffer (minibuffer-selected-window)))
6163b3ba 341
7313ccdb
RS
342;; Make a list of some of the elements of LIST.
343;; Check each element of LIST, storing it temporarily in the
344;; variable ELEMENT, and include it in the result
345;; if CONDITION evaluates non-nil.
346(defmacro dabbrev-filter-elements (element list condition)
da49057c
SS
347 `(let (dabbrev-result dabbrev-tail ,element)
348 (setq dabbrev-tail ,list)
349 (while dabbrev-tail
350 (setq ,element (car dabbrev-tail))
351 (if ,condition
352 (setq dabbrev-result (cons ,element dabbrev-result)))
353 (setq dabbrev-tail (cdr dabbrev-tail)))
354 (nreverse dabbrev-result)))
7313ccdb 355
b578f267
EN
356;;----------------------------------------------------------------
357;; Exported functions
358;;----------------------------------------------------------------
6163b3ba 359
a1ff29b9 360;;;###autoload (define-key esc-map "/" 'dabbrev-expand)
5f24557b 361;;??? Do we want this?
a1ff29b9 362;;;###autoload (define-key esc-map [?\C-/] 'dabbrev-completion)
6163b3ba 363
66408d1e
SM
364(defun dabbrev--ignore-case-p (abbrev)
365 (and (if (eq dabbrev-case-fold-search 'case-fold-search)
366 case-fold-search
367 dabbrev-case-fold-search)
368 (or (not dabbrev-upcase-means-case-search)
369 (string= abbrev (downcase abbrev)))))
370
6163b3ba
RS
371;;;###autoload
372(defun dabbrev-completion (&optional arg)
373 "Completion on current word.
6163b3ba
RS
374Like \\[dabbrev-expand] but finds all expansions in the current buffer
375and presents suggestions for completion.
376
5f24557b 377With a prefix argument ARG, it searches all buffers accepted by the
7313ccdb 378function pointed out by `dabbrev-friend-buffer-function' to find the
dd1ae355
RS
379completions.
380
bbc4e17c 381If the prefix argument is 16 (which comes from \\[universal-argument] \\[universal-argument]),
fe0e0a47 382then it searches *all* buffers."
6163b3ba 383 (interactive "*P")
df6eb420
RS
384 (dabbrev--reset-global-variables)
385 (let* ((dabbrev-check-other-buffers (and arg t))
386 (dabbrev-check-all-buffers
dd1ae355 387 (and arg (= (prefix-numeric-value arg) 16)))
6163b3ba 388 (abbrev (dabbrev--abbrev-at-point))
5f24557b
SM
389 (beg (progn (search-backward abbrev) (point)))
390 (end (progn (search-forward abbrev) (point)))
66408d1e 391 (ignore-case-p (dabbrev--ignore-case-p abbrev))
225979da 392 (list 'uninitialized)
b19490ed 393 (table
225979da
SM
394 (lambda (s p a)
395 (if (eq a 'metadata)
396 `(metadata (cycle-sort-function . ,#'identity)
397 (category . dabbrev))
398 (when (eq list 'uninitialized)
399 (save-excursion
400 ;;--------------------------------
401 ;; New abbreviation to expand.
402 ;;--------------------------------
403 (setq dabbrev--last-abbreviation abbrev)
404 ;; Find all expansion
405 (let ((completion-list
406 (dabbrev--find-all-expansions abbrev ignore-case-p))
407 (completion-ignore-case ignore-case-p))
408 (or (consp completion-list)
71873e2b
SM
409 (user-error "No dynamic expansion for \"%s\" found%s"
410 abbrev
411 (if dabbrev--check-other-buffers
412 "" " in this-buffer")))
225979da
SM
413 (setq list
414 (cond
415 ((not (and ignore-case-p dabbrev-case-replace))
416 completion-list)
417 ((string= abbrev (upcase abbrev))
418 (mapcar #'upcase completion-list))
419 ((string= (substring abbrev 0 1)
420 (upcase (substring abbrev 0 1)))
421 (mapcar #'capitalize completion-list))
422 (t
423 (mapcar #'downcase completion-list)))))))
424 (complete-with-action a list s p)))))
b19490ed 425 (completion-in-region beg end table)))
2f790b20
JB
426
427;;;###autoload
428(defun dabbrev-expand (arg)
429 "Expand previous word \"dynamically\".
2f790b20 430
6163b3ba
RS
431Expands to the most recent, preceding word for which this is a prefix.
432If no suitable preceding word is found, words following point are
433considered. If still no suitable word is found, then look in the
434buffers accepted by the function pointed out by variable
435`dabbrev-friend-buffer-function'.
2f790b20 436
7313ccdb 437A positive prefix argument, N, says to take the Nth backward *distinct*
6163b3ba 438possibility. A negative argument says search forward.
2f790b20
JB
439
440If the cursor has not moved from the end of the previous expansion and
441no argument is given, replace the previously-made expansion
6163b3ba
RS
442with the next possible expansion not yet tried.
443
444The variable `dabbrev-backward-only' may be used to limit the
445direction of search to backward if set non-nil.
446
7313ccdb 447See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]."
2f790b20 448 (interactive "*P")
dea5efcb
RS
449 (let (abbrev record-case-pattern
450 expansion old direction (orig-point (point)))
2f790b20
JB
451 ;; abbrev -- the abbrev to expand
452 ;; expansion -- the expansion found (eventually) or nil until then
453 ;; old -- the text currently in the buffer
454 ;; (the abbrev, or the previously-made expansion)
2f790b20
JB
455 (save-excursion
456 (if (and (null arg)
df6eb420
RS
457 (markerp dabbrev--last-abbrev-location)
458 (marker-position dabbrev--last-abbrev-location)
6163b3ba
RS
459 (or (eq last-command this-command)
460 (and (window-minibuffer-p (selected-window))
461 (= dabbrev--last-abbrev-location
462 (point)))))
7313ccdb 463 ;; Find a different expansion for the same abbrev as last time.
6163b3ba
RS
464 (progn
465 (setq abbrev dabbrev--last-abbreviation)
466 (setq old dabbrev--last-expansion)
467 (setq direction dabbrev--last-direction))
a8a2d6ca
KH
468 ;; If the user inserts a space after expanding
469 ;; and then asks to expand again, always fetch the next word.
a6bd541a 470 (if (and (eq (preceding-char) ?\s)
a8a2d6ca
KH
471 (markerp dabbrev--last-abbrev-location)
472 (marker-position dabbrev--last-abbrev-location)
473 (= (point) (1+ dabbrev--last-abbrev-location)))
dea5efcb 474 (progn
a8a2d6ca
KH
475 ;; The "abbrev" to expand is just the space.
476 (setq abbrev " ")
477 (save-excursion
b9559a72
RS
478 (save-restriction
479 (widen)
480 (if dabbrev--last-buffer
481 (set-buffer dabbrev--last-buffer))
482 ;; Find the end of the last "expansion" word.
483 (if (or (eq dabbrev--last-direction 1)
484 (and (eq dabbrev--last-direction 0)
485 (< dabbrev--last-expansion-location (point))))
486 (setq dabbrev--last-expansion-location
487 (+ dabbrev--last-expansion-location
488 (length dabbrev--last-expansion))))
489 (goto-char dabbrev--last-expansion-location)
490 ;; Take the following word, with intermediate separators,
491 ;; as our expansion this time.
492 (re-search-forward
493 (concat "\\(?:" dabbrev--abbrev-char-regexp "\\)+"))
494 (setq expansion (buffer-substring-no-properties
495 dabbrev--last-expansion-location (point)))
496
497 ;; Record the end of this expansion, in case we repeat this.
498 (setq dabbrev--last-expansion-location (point))))
a8a2d6ca
KH
499 ;; Indicate that dabbrev--last-expansion-location is
500 ;; at the end of the expansion.
501 (setq dabbrev--last-direction -1))
502
503 ;; We have a different abbrev to expand.
504 (dabbrev--reset-global-variables)
505 (setq direction (if (null arg)
506 (if dabbrev-backward-only 1 0)
507 (prefix-numeric-value arg)))
508 (setq abbrev (dabbrev--abbrev-at-point))
dea5efcb 509 (setq record-case-pattern t)
a8a2d6ca 510 (setq old nil)))
6163b3ba
RS
511
512 ;;--------------------------------
513 ;; Find the expansion
514 ;;--------------------------------
a8a2d6ca
KH
515 (or expansion
516 (setq expansion
b19490ed
SM
517 (dabbrev--find-expansion
518 abbrev direction
66408d1e 519 (dabbrev--ignore-case-p abbrev)))))
6163b3ba
RS
520 (cond
521 ((not expansion)
522 (dabbrev--reset-global-variables)
523 (if old
524 (save-excursion
4209f479 525 (setq buffer-undo-list (cons orig-point buffer-undo-list))
3132e115
RS
526 ;; Put back the original abbrev with its original case pattern.
527 (search-backward old)
528 (insert abbrev)
529 (delete-region (point) (+ (point) (length old)))))
aa0382bd
SM
530 (user-error "No%s dynamic expansion for `%s' found"
531 (if old " further" "") abbrev))
6163b3ba 532 (t
fdad0f14
GM
533 (if (not (or (eq dabbrev--last-buffer dabbrev--last-buffer-found)
534 (minibuffer-window-active-p (selected-window))))
2f790b20 535 (progn
6163b3ba
RS
536 (message "Expansion found in '%s'"
537 (buffer-name dabbrev--last-buffer))
538 (setq dabbrev--last-buffer-found dabbrev--last-buffer))
539 (message nil))
a8a2d6ca
KH
540 (if (and (or (eq (current-buffer) dabbrev--last-buffer)
541 (null dabbrev--last-buffer))
542 (numberp dabbrev--last-expansion-location)
543 (and (> dabbrev--last-expansion-location (point))))
544 (setq dabbrev--last-expansion-location
545 (copy-marker dabbrev--last-expansion-location)))
2f790b20 546 ;; Success: stick it in and return.
4209f479 547 (setq buffer-undo-list (cons orig-point buffer-undo-list))
3ffa545b
GM
548 (dabbrev--substitute-expansion old abbrev expansion
549 record-case-pattern)
dea5efcb 550
2f790b20 551 ;; Save state for re-expand.
da49057c 552 (setq dabbrev--last-expansion expansion)
6163b3ba
RS
553 (setq dabbrev--last-abbreviation abbrev)
554 (setq dabbrev--last-abbrev-location (point-marker))))))
555
b578f267
EN
556;;----------------------------------------------------------------
557;; Local functions
558;;----------------------------------------------------------------
6163b3ba 559
6163b3ba 560(defun dabbrev--same-major-mode-p (other-buffer)
5f24557b 561 "Check if OTHER-BUFFER has the same major mode as current buffer."
7313ccdb 562 (eq major-mode
7fdbcd83 563 (with-current-buffer other-buffer
7313ccdb 564 major-mode)))
6163b3ba 565
6163b3ba 566(defun dabbrev--goto-start-of-abbrev ()
5f24557b
SM
567 "Back over all abbrev type characters and then moves forward over
568all skip characters."
6163b3ba
RS
569 ;; Move backwards over abbrev chars
570 (save-match-data
b0021416
RS
571 (when (> (point) (minibuffer-prompt-end))
572 (forward-char -1)
573 (while (and (looking-at dabbrev--abbrev-char-regexp)
574 (> (point) (minibuffer-prompt-end))
575 (not (= (point) (field-beginning (point) nil
576 (1- (point))))))
577 (forward-char -1))
578 (or (looking-at dabbrev--abbrev-char-regexp)
579 (forward-char 1)))
6163b3ba
RS
580 (and dabbrev-abbrev-skip-leading-regexp
581 (while (looking-at dabbrev-abbrev-skip-leading-regexp)
582 (forward-char 1)))))
583
6163b3ba 584(defun dabbrev--abbrev-at-point ()
5f24557b 585 "Extract the symbol at point to serve as abbreviation."
6163b3ba 586 ;; Check for error
a8a2d6ca 587 (if (bobp)
71873e2b 588 (user-error "No possible abbreviation preceding point"))
6163b3ba
RS
589 ;; Return abbrev at point
590 (save-excursion
a8a2d6ca 591 ;; Record the end of the abbreviation.
6163b3ba 592 (setq dabbrev--last-abbrev-location (point))
a8a2d6ca
KH
593 ;; If we aren't right after an abbreviation,
594 ;; move point back to just after one.
595 ;; This is so the user can get successive words
596 ;; by typing the punctuation followed by M-/.
597 (save-match-data
598 (if (save-excursion
599 (forward-char -1)
5f24557b
SM
600 (not (looking-at (or dabbrev-abbrev-char-regexp
601 "\\sw\\|\\s_"))))
a8a2d6ca
KH
602 (if (re-search-backward (or dabbrev-abbrev-char-regexp
603 "\\sw\\|\\s_")
604 nil t)
605 (forward-char 1)
71873e2b 606 (user-error "No possible abbreviation preceding point"))))
a8a2d6ca
KH
607 ;; Now find the beginning of that one.
608 (dabbrev--goto-start-of-abbrev)
6f0b000c
RS
609 (buffer-substring-no-properties
610 dabbrev--last-abbrev-location (point))))
da49057c 611
6163b3ba 612(defun dabbrev--reset-global-variables ()
5f24557b 613 "Initialize all global variables."
6163b3ba
RS
614 (setq dabbrev--last-table nil
615 dabbrev--last-abbreviation nil
616 dabbrev--last-abbrev-location nil
617 dabbrev--last-direction nil
618 dabbrev--last-expansion nil
619 dabbrev--last-expansion-location nil
620 dabbrev--friend-buffer-list nil
621 dabbrev--last-buffer nil
622 dabbrev--last-buffer-found nil
623 dabbrev--abbrev-char-regexp (or dabbrev-abbrev-char-regexp
624 "\\sw\\|\\s_")
df6eb420 625 dabbrev--check-other-buffers dabbrev-check-other-buffers))
6163b3ba 626
6163b3ba 627(defun dabbrev--select-buffers ()
513e7954
RS
628 "Return a list of other buffers to search for a possible abbrev.
629The current buffer is not included in the list.
630
631This function makes a list of all the buffers returned by `buffer-list',
632then discards buffers whose names match `dabbrev-ignored-buffer-names'
633or `dabbrev-ignored-buffer-regexps'. It also discards buffers for which
634`dabbrev-friend-buffer-function', if it is bound, returns nil when called
635with the buffer as argument.
636It returns the list of the buffers that are not discarded."
637 (dabbrev-filter-elements
638 buffer (buffer-list)
639 (and (not (eq (current-buffer) buffer))
640 (not (dabbrev--ignore-buffer-p buffer))
641 (boundp 'dabbrev-friend-buffer-function)
2ebf8f54 642 (funcall dabbrev-friend-buffer-function buffer))))
7313ccdb 643
6163b3ba 644(defun dabbrev--try-find (abbrev reverse n ignore-case)
fd2dfb40
RS
645 "Search for ABBREV, backwards if REVERSE, N times.
646If IGNORE-CASE is non-nil, ignore case while searching.
647Return the expansion found, and save the location of the start
648of the expansion in `dabbrev--last-expansion-location'."
6163b3ba 649 (save-excursion
df6eb420
RS
650 (save-restriction
651 (widen)
652 (let ((expansion nil))
653 (and dabbrev--last-expansion-location
654 (goto-char dabbrev--last-expansion-location))
655 (let ((case-fold-search ignore-case)
656 (count n))
657 (while (and (> count 0)
b19490ed
SM
658 (setq expansion (dabbrev--search
659 abbrev reverse
660 (and ignore-case
661 (if (eq dabbrev-case-distinction
662 'case-replace)
663 case-replace
664 dabbrev-case-distinction)))))
df6eb420
RS
665 (setq count (1- count))))
666 (and expansion
667 (setq dabbrev--last-expansion-location (point)))
668 expansion))))
6163b3ba 669
6163b3ba 670(defun dabbrev--find-all-expansions (abbrev ignore-case)
fd2dfb40
RS
671 "Return a list of all possible expansions of ABBREV.
672If IGNORE-CASE is non-nil, accept matches which differ in case."
6163b3ba
RS
673 (let ((all-expansions nil)
674 expansion)
675 (save-excursion
676 (goto-char (point-min))
677 (while (setq expansion (dabbrev--find-expansion abbrev -1 ignore-case))
df6eb420 678 (setq all-expansions (cons expansion all-expansions))))
6163b3ba
RS
679 all-expansions))
680
a6a06429
MB
681(defun dabbrev--ignore-buffer-p (buffer)
682 "Return non-nil if BUFFER should be ignored by dabbrev."
683 (let ((bn (buffer-name buffer)))
684 (or (member bn dabbrev-ignored-buffer-names)
685 (let ((tail dabbrev-ignored-buffer-regexps)
686 (match nil))
687 (while (and tail (not match))
688 (setq match (string-match (car tail) bn)
689 tail (cdr tail)))
690 match))))
691
6163b3ba 692(defun dabbrev--find-expansion (abbrev direction ignore-case)
fd2dfb40
RS
693 "Find one occurrence of ABBREV, and return the expansion.
694DIRECTION > 0 means look that many times backwards.
695DIRECTION < 0 means look that many times forward.
696DIRECTION = 0 means try both backward and forward.
697IGNORE-CASE non-nil means ignore case when searching.
698This sets `dabbrev--last-direction' to 1 or -1 according
699to the direction in which the occurrence was actually found.
71296446 700It sets `dabbrev--last-expansion-location' to the location
fd2dfb40 701of the start of the occurrence."
513e7954
RS
702 (save-excursion
703 ;; If we were scanning something other than the current buffer,
704 ;; continue scanning there.
705 (when dabbrev--last-buffer
7daa3523 706 (set-buffer dabbrev--last-buffer))
513e7954
RS
707 (or
708 ;; ------------------------------------------
709 ;; Look backward in current buffer.
710 ;; ------------------------------------------
711 (and (not dabbrev-search-these-buffers-only)
712 (>= direction 0)
713 (setq dabbrev--last-direction (min 1 direction))
714 (dabbrev--try-find abbrev t
715 (max 1 direction)
716 ignore-case))
717 ;; ------------------------------------------
718 ;; Look forward in current buffer
719 ;; or whatever buffer we were last scanning.
720 ;; ------------------------------------------
721 (and (or (not dabbrev-search-these-buffers-only)
722 dabbrev--last-buffer)
723 (<= direction 0)
724 (setq dabbrev--last-direction -1)
725 (dabbrev--try-find abbrev nil
726 (max 1 (- direction))
727 ignore-case))
728 ;; ------------------------------------------
729 ;; Look in other buffers.
730 ;; Always start at (point-min) and look forward.
731 ;; ------------------------------------------
732 (progn
733 (setq dabbrev--last-direction -1)
734 (unless dabbrev--last-buffer
735 ;; If we have just now begun to search other buffers,
736 ;; determine which other buffers we should check.
737 ;; Put that list in dabbrev--friend-buffer-list.
7daa3523
TTN
738 (unless dabbrev--friend-buffer-list
739 (setq dabbrev--friend-buffer-list
740 (dabbrev--make-friend-buffer-list))
741 (setq dabbrev--progress-reporter
742 (make-progress-reporter
743 "Scanning for dabbrevs..."
744 (- (length dabbrev--friend-buffer-list)) 0 0 1 1.5))))
513e7954
RS
745 ;; Walk through the buffers till we find a match.
746 (let (expansion)
747 (while (and (not expansion) dabbrev--friend-buffer-list)
2e27ed13 748 (setq dabbrev--last-buffer (pop dabbrev--friend-buffer-list))
513e7954 749 (set-buffer dabbrev--last-buffer)
7daa3523
TTN
750 (progress-reporter-update dabbrev--progress-reporter
751 (- (length dabbrev--friend-buffer-list)))
513e7954
RS
752 (setq dabbrev--last-expansion-location (point-min))
753 (setq expansion (dabbrev--try-find abbrev nil 1 ignore-case)))
0c93eabf 754 (progress-reporter-done dabbrev--progress-reporter)
513e7954
RS
755 expansion)))))
756
757;; Compute the list of buffers to scan.
758;; If dabbrev-search-these-buffers-only, then the current buffer
759;; is included in this list if it should be searched.
760;; Otherwise, the current buffer is searched first specially.,
761;; and it is not included in this list.
762(defun dabbrev--make-friend-buffer-list ()
763 (let ((list (mapcar (function get-buffer)
764 dabbrev-search-these-buffers-only)))
765 (when (and (null dabbrev-search-these-buffers-only)
766 dabbrev--check-other-buffers
767 (or (eq dabbrev--check-other-buffers t)
768 (setq dabbrev--check-other-buffers
769 (y-or-n-p "Scan other buffers also? "))))
770 (setq list (funcall dabbrev-select-buffers-function))
771 ;; If dabbrev-check-all-buffers, tack on all the other
772 ;; buffers at the end of the list, except those which are
773 ;; specifically to be ignored.
774 (if dabbrev-check-all-buffers
775 (setq list
776 (append list
3ffa545b
GM
777 (dabbrev-filter-elements
778 buffer (buffer-list)
513e7954
RS
779 (and (not (memq buffer list))
780 (not (dabbrev--ignore-buffer-p buffer)))))))
781 ;; Remove the current buffer.
782 (setq list (delq (current-buffer) list)))
783 ;; Move buffers in the list that are visible on the screen
784 ;; to the front of the list, but don't add anything to the list.
785 (if list
786 (walk-windows (lambda (w)
787 (unless (eq w (selected-window))
788 (if (memq (window-buffer w) list)
789 (setq list
790 (cons (window-buffer w)
791 (delq (window-buffer w)
792 list))))))))
793 ;; In a minibuffer, search the buffer it was activated from,
794 ;; first after the minibuffer itself. Unless we aren't supposed
795 ;; to search the current buffer either.
796 (if (and (window-minibuffer-p (selected-window))
797 (not dabbrev-search-these-buffers-only))
798 (setq list
799 (cons (dabbrev--minibuffer-origin)
800 (delq (dabbrev--minibuffer-origin) list))))
801 list))
6163b3ba 802
6163b3ba
RS
803(defun dabbrev--safe-replace-match (string &optional fixedcase literal)
804 (if (eq major-mode 'picture-mode)
6ee55cb1
RS
805 (with-no-warnings
806 (picture-replace-match string fixedcase literal))
6163b3ba
RS
807 (replace-match string fixedcase literal)))
808
809;;;----------------------------------------------------------------
3ffa545b
GM
810(defun dabbrev--substitute-expansion (old abbrev expansion record-case-pattern)
811 "Replace OLD with EXPANSION in the buffer.
812OLD is text currently in the buffer, perhaps the abbreviation
813or perhaps another expansion that was tried previously.
814ABBREV is the abbreviation we are expanding.
815It is \" \" if we are copying subsequent words.
816EXPANSION is the expansion substring to be used this time.
817RECORD-CASE-PATTERN, if non-nil, means set `dabbrev--last-case-pattern'
818to record whether we upcased the expansion, downcased it, or did neither."
6163b3ba 819 ;;(undo-boundary)
b19490ed 820 (let ((use-case-replace
66408d1e 821 (and (dabbrev--ignore-case-p abbrev)
b19490ed
SM
822 (if (eq dabbrev-case-replace 'case-replace)
823 case-replace
824 dabbrev-case-replace))))
3ffa545b
GM
825
826 ;; If we upcased or downcased the original expansion,
827 ;; do likewise for the subsequent words when we copy them.
fd2dfb40
RS
828 ;; Don't do any of the usual case processing, though.
829 (when (equal abbrev " ")
830 (if dabbrev--last-case-pattern
831 (setq expansion
832 (funcall dabbrev--last-case-pattern expansion)))
833 (setq use-case-replace nil))
3ffa545b 834
65411629
RS
835 ;; If the expansion has mixed case
836 ;; and it is not simply a capitalized word,
837 ;; or if the abbrev has mixed case,
838 ;; and if the given abbrev's case pattern
66db4b5b
RS
839 ;; matches the start of the expansion,
840 ;; copy the expansion's case
841 ;; instead of downcasing all the rest.
e921af9e
RS
842 ;;
843 ;; Treat a one-capital-letter (possibly with preceding non-letter
844 ;; characters) abbrev as "not all upper case", so as to force
845 ;; preservation of the expansion's pattern if the expansion starts
846 ;; with a capital letter.
847 (let ((expansion-rest (substring expansion 1))
848 (first-letter-position (string-match "[[:alpha:]]" abbrev)))
849 (if (or (null first-letter-position)
b19490ed
SM
850 (and (not
851 (and (or (string= expansion-rest (downcase expansion-rest))
852 (string= expansion-rest (upcase expansion-rest)))
853 (or (string= abbrev (downcase abbrev))
854 (and (string= abbrev (upcase abbrev))
855 (> (- (length abbrev) first-letter-position)
856 1)))))
e921af9e
RS
857 (string= abbrev
858 (substring expansion 0 (length abbrev)))))
65411629 859 (setq use-case-replace nil)))
fd2dfb40
RS
860
861 ;; If the abbrev and the expansion are both all-lower-case
862 ;; then don't do any conversion. The conversion would be a no-op
863 ;; for this replacement, but it would carry forward to subsequent words.
e921af9e 864 ;; The goal of this is to prevent that carrying forward.
fd2dfb40
RS
865 (if (and (string= expansion (downcase expansion))
866 (string= abbrev (downcase abbrev)))
07e47d0b 867 (setq use-case-replace nil))
fd2dfb40 868
07e47d0b
RS
869 (if use-case-replace
870 (setq expansion (downcase expansion)))
3ffa545b
GM
871
872 ;; In case we insert subsequent words,
873 ;; record if we upcased or downcased the first word,
874 ;; in order to do likewise for subsequent words.
875 (and record-case-pattern
71296446 876 (setq dabbrev--last-case-pattern
3ffa545b
GM
877 (and use-case-replace
878 (cond ((equal abbrev (upcase abbrev)) 'upcase)
879 ((equal abbrev (downcase abbrev)) 'downcase)))))
880
19c17c4e 881 ;; Convert whitespace to single spaces.
e2e75068
RS
882 (if dabbrev-eliminate-newlines
883 (let ((pos
884 (if (equal abbrev " ") 0 (length abbrev))))
885 ;; If ABBREV is real, search after the end of it.
886 ;; If ABBREV is space and we are copying successive words,
887 ;; search starting at the front.
19c17c4e
RS
888 (while (string-match "[\n \t]+" expansion pos)
889 (setq pos (1+ (match-beginning 0)))
890 (setq expansion (replace-match " " nil nil expansion)))))
fd2dfb40 891
6163b3ba
RS
892 (if old
893 (save-excursion
894 (search-backward old))
9b7c13e0 895 ;;(set-match-data (list (point-marker) (point-marker)))
fd2dfb40
RS
896 (search-backward abbrev)
897 (search-forward abbrev))
898
6163b3ba
RS
899 ;; Make case of replacement conform to case of abbreviation
900 ;; provided (1) that kind of thing is enabled in this buffer
901 ;; and (2) the replacement itself is all lower case.
902 (dabbrev--safe-replace-match expansion
903 (not use-case-replace)
904 t)))
905
906
907;;;----------------------------------------------------------------
908;;; Search function used by dabbrevs library.
909
6163b3ba
RS
910
911(defun dabbrev--search (abbrev reverse ignore-case)
fd2dfb40
RS
912 "Search for something that could be used to expand ABBREV.
913
914Second arg, REVERSE, is t for reverse search, nil for forward.
915The variable `dabbrev-limit' controls the maximum search region size.
916Third argument IGNORE-CASE non-nil means treat case as insignificant while
917looking for a match and when comparing with previous matches. Also if
918that's non-nil and the match is found at the beginning of a sentence
919and is in lower case except for the initial then it is converted to
920all lower case for return.
921
922Table of expansions already seen is examined in buffer
923`dabbrev--last-table' so that only distinct possibilities are found
924by dabbrev-re-expand.
925
926Returns the expansion found, or nil if not found.
927Leaves point at the location of the start of the expansion."
6163b3ba
RS
928 (save-match-data
929 (let ((pattern1 (concat (regexp-quote abbrev)
930 "\\(" dabbrev--abbrev-char-regexp "\\)"))
931 (pattern2 (concat (regexp-quote abbrev)
932 "\\(\\(" dabbrev--abbrev-char-regexp "\\)+\\)"))
155133a2
RS
933 ;; This makes it possible to find matches in minibuffer prompts
934 ;; even when they are "inviolable".
935 (inhibit-point-motion-hooks t)
93a43334 936 found-string result)
6163b3ba
RS
937 ;; Limited search.
938 (save-restriction
939 (and dabbrev-limit
b19490ed
SM
940 (narrow-to-region
941 dabbrev--last-expansion-location
942 (+ (point) (if reverse (- dabbrev-limit) dabbrev-limit))))
6163b3ba
RS
943 ;;--------------------------------
944 ;; Look for a distinct expansion, using dabbrev--last-table.
945 ;;--------------------------------
946 (while (and (not found-string)
947 (if reverse
948 (re-search-backward pattern1 nil t)
949 (re-search-forward pattern1 nil t)))
63d991d6
KH
950 (goto-char (match-beginning 0))
951 ;; In case we matched in the middle of a word,
952 ;; back up to start of word and verify we still match.
953 (dabbrev--goto-start-of-abbrev)
954
955 (if (not (looking-at pattern1))
956 nil
957 ;; We have a truly valid match. Find the end.
6163b3ba 958 (re-search-forward pattern2)
2e27ed13 959 (setq found-string (match-string-no-properties 0))
93a43334 960 (setq result found-string)
6163b3ba 961 (and ignore-case (setq found-string (downcase found-string)))
63d991d6 962 ;; Ignore this match if it's already in the table.
7313ccdb
RS
963 (if (dabbrev-filter-elements
964 table-string dabbrev--last-table
965 (string= found-string table-string))
63d991d6
KH
966 (setq found-string nil)))
967 ;; Prepare to continue searching.
2e27ed13 968 (goto-char (if reverse (match-beginning 0) (match-end 0))))
63d991d6 969 ;; If we found something, use it.
93a43334
RS
970 (when found-string
971 ;; Put it into `dabbrev--last-table'
972 ;; and return it (either downcased, or as is).
973 (setq dabbrev--last-table
974 (cons found-string dabbrev--last-table))
975 result)))))
6163b3ba 976
01987a6b 977(provide 'dabbrev)
7313ccdb 978
b578f267 979;;; dabbrev.el ends here