Merge from emacs-23; up to 2010-06-11T21:26:13Z!lekktu@gmail.com.
[bpt/emacs.git] / lisp / dabbrev.el
CommitLineData
7313ccdb 1;;; dabbrev.el --- dynamic abbreviation package
b578f267 2
73b0cd50 3;; Copyright (C) 1985-1986, 1992, 1994, 1996-1997, 2000-2011
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
bbf5eb28
RS
209The recommended value is \"\\\\sw\\\\|\\\\s_\"."
210 :type '(choice (const nil)
211 regexp)
212 :group 'dabbrev)
6163b3ba 213
bbf5eb28 214(defcustom dabbrev-check-all-buffers t
9201cc28 215 "Non-nil means dabbrev package should search *all* buffers.
6163b3ba 216
df6eb420
RS
217Dabbrev always searches the current buffer first. Then, if
218`dabbrev-check-other-buffers' says so, it searches the buffers
219designated by `dabbrev-select-buffers-function'.
6163b3ba 220
df6eb420 221Then, if `dabbrev-check-all-buffers' is non-nil, dabbrev searches
7e65cba2
GM
222all the other buffers, except those named in `dabbrev-ignored-buffer-names',
223or matched by `dabbrev-ignored-regexps'."
bbf5eb28
RS
224 :type 'boolean
225 :group 'dabbrev)
df6eb420 226
9648a1e6 227(defcustom dabbrev-ignored-buffer-names '("*Messages*" "*Buffer List*")
9201cc28 228 "List of buffer names that dabbrev should not check.
c4ca64db 229See also `dabbrev-ignored-buffer-regexps'."
7bd9ba70 230 :type '(repeat (string :tag "Buffer name"))
cd32a7ba
DN
231 :group 'dabbrev
232 :version "20.3")
7bd9ba70 233
c4ca64db 234(defcustom dabbrev-ignored-buffer-regexps nil
9201cc28 235 "List of regexps matching names of buffers that dabbrev should not check.
7e65cba2
GM
236See also `dabbrev-ignored-buffer-names'."
237 :type '(repeat regexp)
238 :group 'dabbrev
239 :version "21.1")
240
bbf5eb28 241(defcustom dabbrev-check-other-buffers t
9201cc28 242 "Should \\[dabbrev-expand] look in other buffers?\
6163b3ba 243
df6eb420
RS
244nil: Don't look in other buffers.
245t: Also look for expansions in the buffers pointed out by
246 `dabbrev-select-buffers-function'.
247Anything else: When we can't find any more expansions in
248the current buffer, then ask the user whether to look in other
249buffers too.
250
bbf5eb28
RS
251The default value is t."
252 :type '(choice (const :tag "off" nil)
253 (const :tag "on" t)
eaaca5ee 254 (other :tag "ask" other))
bbf5eb28 255 :group 'dabbrev)
6163b3ba
RS
256
257;; I guess setting this to a function that selects all C- or C++-
258;; mode buffers would be a good choice for a debugging buffer,
259;; when debugging C- or C++-code.
260(defvar dabbrev-select-buffers-function 'dabbrev--select-buffers
261 "A function that selects buffers that should be searched by dabbrev.
6163b3ba 262The function should take no arguments and return a list of buffers to
05be3833
RS
263search for expansions. See the source of `dabbrev--select-buffers'
264for an example.
6163b3ba
RS
265
266A mode setting this variable should make it buffer local.")
267
bbf5eb28 268(defcustom dabbrev-friend-buffer-function 'dabbrev--same-major-mode-p
9201cc28 269 "A function to decide whether dabbrev should search OTHER-BUFFER.
6163b3ba
RS
270The function should take one argument, OTHER-BUFFER, and return
271non-nil if that buffer should be searched. Have a look at
272`dabbrev--same-major-mode-p' for an example.
273
7313ccdb
RS
274The value of `dabbrev-friend-buffer-function' has an effect only if
275the value of `dabbrev-select-buffers-function' uses it. The function
276`dabbrev--select-buffers' is one function you can use here.
6163b3ba 277
bbf5eb28
RS
278A mode setting this variable should make it buffer local."
279 :type 'function
280 :group 'dabbrev)
6163b3ba 281
bbf5eb28 282(defcustom dabbrev-search-these-buffers-only nil
7313ccdb
RS
283 "If non-nil, a list of buffers which dabbrev should search.
284If this variable is non-nil, dabbrev will only look in these buffers.
285It will not even look in the current buffer if it is not a member of
f5307782
JB
286this list."
287 :group 'dabbrev)
e5167999 288
b578f267
EN
289;;----------------------------------------------------------------
290;; Internal variables
291;;----------------------------------------------------------------
2f790b20 292
6163b3ba
RS
293;; Last obarray of completions in `dabbrev-completion'
294(defvar dabbrev--last-obarray nil)
2f790b20 295
6163b3ba
RS
296;; Table of expansions seen so far
297(defvar dabbrev--last-table nil)
2f790b20 298
6163b3ba
RS
299;; Last string we tried to expand.
300(defvar dabbrev--last-abbreviation nil)
2f790b20 301
6163b3ba
RS
302;; Location last abbreviation began
303(defvar dabbrev--last-abbrev-location nil)
2f790b20 304
6163b3ba
RS
305;; Direction of last dabbrevs search
306(defvar dabbrev--last-direction 0)
2f790b20 307
6163b3ba
RS
308;; Last expansion of an abbreviation.
309(defvar dabbrev--last-expansion nil)
2f790b20 310
6163b3ba
RS
311;; Location the last expansion was found.
312(defvar dabbrev--last-expansion-location nil)
313
314;; The list of remaining buffers with the same mode as current buffer.
315(defvar dabbrev--friend-buffer-list nil)
316
513e7954 317;; The buffer we looked in last, not counting the current buffer.
6163b3ba
RS
318(defvar dabbrev--last-buffer nil)
319
320;; The buffer we found the expansion last time.
321(defvar dabbrev--last-buffer-found nil)
322
323;; The buffer we last did a completion in.
324(defvar dabbrev--last-completion-buffer nil)
325
3ffa545b
GM
326;; If non-nil, a function to use when copying successive words.
327;; It should be `upcase' or `downcase'.
dea5efcb
RS
328(defvar dabbrev--last-case-pattern nil)
329
df6eb420
RS
330;; Same as dabbrev-check-other-buffers, but is set for every expand.
331(defvar dabbrev--check-other-buffers dabbrev-check-other-buffers)
6163b3ba
RS
332
333;; The regexp for recognizing a character in an abbreviation.
334(defvar dabbrev--abbrev-char-regexp nil)
335
7daa3523
TTN
336;; The progress reporter for buffer-scanning progress.
337(defvar dabbrev--progress-reporter nil)
338
b578f267
EN
339;;----------------------------------------------------------------
340;; Macros
341;;----------------------------------------------------------------
6163b3ba 342
6163b3ba 343(defsubst dabbrev--minibuffer-origin ()
5f24557b
SM
344 "Get the buffer from which mini-buffer."
345 (window-buffer (minibuffer-selected-window)))
6163b3ba 346
7313ccdb
RS
347;; Make a list of some of the elements of LIST.
348;; Check each element of LIST, storing it temporarily in the
349;; variable ELEMENT, and include it in the result
350;; if CONDITION evaluates non-nil.
351(defmacro dabbrev-filter-elements (element list condition)
da49057c
SS
352 `(let (dabbrev-result dabbrev-tail ,element)
353 (setq dabbrev-tail ,list)
354 (while dabbrev-tail
355 (setq ,element (car dabbrev-tail))
356 (if ,condition
357 (setq dabbrev-result (cons ,element dabbrev-result)))
358 (setq dabbrev-tail (cdr dabbrev-tail)))
359 (nreverse dabbrev-result)))
7313ccdb 360
b578f267
EN
361;;----------------------------------------------------------------
362;; Exported functions
363;;----------------------------------------------------------------
6163b3ba 364
a1ff29b9 365;;;###autoload (define-key esc-map "/" 'dabbrev-expand)
5f24557b 366;;??? Do we want this?
a1ff29b9 367;;;###autoload (define-key esc-map [?\C-/] 'dabbrev-completion)
6163b3ba
RS
368
369;;;###autoload
370(defun dabbrev-completion (&optional arg)
371 "Completion on current word.
6163b3ba
RS
372Like \\[dabbrev-expand] but finds all expansions in the current buffer
373and presents suggestions for completion.
374
5f24557b 375With a prefix argument ARG, it searches all buffers accepted by the
7313ccdb 376function pointed out by `dabbrev-friend-buffer-function' to find the
dd1ae355
RS
377completions.
378
bbc4e17c 379If the prefix argument is 16 (which comes from \\[universal-argument] \\[universal-argument]),
fe0e0a47 380then it searches *all* buffers."
6163b3ba 381 (interactive "*P")
df6eb420
RS
382 (dabbrev--reset-global-variables)
383 (let* ((dabbrev-check-other-buffers (and arg t))
384 (dabbrev-check-all-buffers
dd1ae355 385 (and arg (= (prefix-numeric-value arg) 16)))
6163b3ba 386 (abbrev (dabbrev--abbrev-at-point))
5f24557b
SM
387 (beg (progn (search-backward abbrev) (point)))
388 (end (progn (search-forward abbrev) (point)))
543abb4a
RS
389 (ignore-case-p (and (if (eq dabbrev-case-fold-search 'case-fold-search)
390 case-fold-search
391 dabbrev-case-fold-search)
392 (or (not dabbrev-upcase-means-case-search)
393 (string= abbrev (downcase abbrev)))))
06b60517 394 (my-obarray dabbrev--last-obarray))
6163b3ba 395 (save-excursion
fe0e0a47
LT
396 ;;--------------------------------
397 ;; New abbreviation to expand.
398 ;;--------------------------------
399 (setq dabbrev--last-abbreviation abbrev)
400 ;; Find all expansion
401 (let ((completion-list
402 (dabbrev--find-all-expansions abbrev ignore-case-p))
403 (completion-ignore-case ignore-case-p))
404 ;; Make an obarray with all expansions
405 (setq my-obarray (make-vector (length completion-list) 0))
406 (or (> (length my-obarray) 0)
407 (error "No dynamic expansion for \"%s\" found%s"
408 abbrev
409 (if dabbrev--check-other-buffers "" " in this-buffer")))
410 (cond
411 ((or (not ignore-case-p)
412 (not dabbrev-case-replace))
413 (mapc (function (lambda (string)
414 (intern string my-obarray)))
415 completion-list))
416 ((string= abbrev (upcase abbrev))
417 (mapc (function (lambda (string)
418 (intern (upcase string) my-obarray)))
419 completion-list))
420 ((string= (substring abbrev 0 1)
421 (upcase (substring abbrev 0 1)))
422 (mapc (function (lambda (string)
423 (intern (capitalize string) my-obarray)))
424 completion-list))
425 (t
426 (mapc (function (lambda (string)
427 (intern (downcase string) my-obarray)))
428 completion-list)))
429 (setq dabbrev--last-obarray my-obarray)
5f24557b
SM
430 (setq dabbrev--last-completion-buffer (current-buffer))))
431 (completion-in-region beg end my-obarray)))
2f790b20
JB
432
433;;;###autoload
434(defun dabbrev-expand (arg)
435 "Expand previous word \"dynamically\".
2f790b20 436
6163b3ba
RS
437Expands to the most recent, preceding word for which this is a prefix.
438If no suitable preceding word is found, words following point are
439considered. If still no suitable word is found, then look in the
440buffers accepted by the function pointed out by variable
441`dabbrev-friend-buffer-function'.
2f790b20 442
7313ccdb 443A positive prefix argument, N, says to take the Nth backward *distinct*
6163b3ba 444possibility. A negative argument says search forward.
2f790b20
JB
445
446If the cursor has not moved from the end of the previous expansion and
447no argument is given, replace the previously-made expansion
6163b3ba
RS
448with the next possible expansion not yet tried.
449
450The variable `dabbrev-backward-only' may be used to limit the
451direction of search to backward if set non-nil.
452
7313ccdb 453See also `dabbrev-abbrev-char-regexp' and \\[dabbrev-completion]."
2f790b20 454 (interactive "*P")
dea5efcb
RS
455 (let (abbrev record-case-pattern
456 expansion old direction (orig-point (point)))
2f790b20
JB
457 ;; abbrev -- the abbrev to expand
458 ;; expansion -- the expansion found (eventually) or nil until then
459 ;; old -- the text currently in the buffer
460 ;; (the abbrev, or the previously-made expansion)
2f790b20
JB
461 (save-excursion
462 (if (and (null arg)
df6eb420
RS
463 (markerp dabbrev--last-abbrev-location)
464 (marker-position dabbrev--last-abbrev-location)
6163b3ba
RS
465 (or (eq last-command this-command)
466 (and (window-minibuffer-p (selected-window))
467 (= dabbrev--last-abbrev-location
468 (point)))))
7313ccdb 469 ;; Find a different expansion for the same abbrev as last time.
6163b3ba
RS
470 (progn
471 (setq abbrev dabbrev--last-abbreviation)
472 (setq old dabbrev--last-expansion)
473 (setq direction dabbrev--last-direction))
a8a2d6ca
KH
474 ;; If the user inserts a space after expanding
475 ;; and then asks to expand again, always fetch the next word.
a6bd541a 476 (if (and (eq (preceding-char) ?\s)
a8a2d6ca
KH
477 (markerp dabbrev--last-abbrev-location)
478 (marker-position dabbrev--last-abbrev-location)
479 (= (point) (1+ dabbrev--last-abbrev-location)))
dea5efcb 480 (progn
a8a2d6ca
KH
481 ;; The "abbrev" to expand is just the space.
482 (setq abbrev " ")
483 (save-excursion
b9559a72
RS
484 (save-restriction
485 (widen)
486 (if dabbrev--last-buffer
487 (set-buffer dabbrev--last-buffer))
488 ;; Find the end of the last "expansion" word.
489 (if (or (eq dabbrev--last-direction 1)
490 (and (eq dabbrev--last-direction 0)
491 (< dabbrev--last-expansion-location (point))))
492 (setq dabbrev--last-expansion-location
493 (+ dabbrev--last-expansion-location
494 (length dabbrev--last-expansion))))
495 (goto-char dabbrev--last-expansion-location)
496 ;; Take the following word, with intermediate separators,
497 ;; as our expansion this time.
498 (re-search-forward
499 (concat "\\(?:" dabbrev--abbrev-char-regexp "\\)+"))
500 (setq expansion (buffer-substring-no-properties
501 dabbrev--last-expansion-location (point)))
502
503 ;; Record the end of this expansion, in case we repeat this.
504 (setq dabbrev--last-expansion-location (point))))
a8a2d6ca
KH
505 ;; Indicate that dabbrev--last-expansion-location is
506 ;; at the end of the expansion.
507 (setq dabbrev--last-direction -1))
508
509 ;; We have a different abbrev to expand.
510 (dabbrev--reset-global-variables)
511 (setq direction (if (null arg)
512 (if dabbrev-backward-only 1 0)
513 (prefix-numeric-value arg)))
514 (setq abbrev (dabbrev--abbrev-at-point))
dea5efcb 515 (setq record-case-pattern t)
a8a2d6ca 516 (setq old nil)))
6163b3ba
RS
517
518 ;;--------------------------------
519 ;; Find the expansion
520 ;;--------------------------------
a8a2d6ca
KH
521 (or expansion
522 (setq expansion
523 (dabbrev--find-expansion abbrev direction
543abb4a
RS
524 (and (if (eq dabbrev-case-fold-search 'case-fold-search)
525 case-fold-search
526 dabbrev-case-fold-search)
a8a2d6ca
KH
527 (or (not dabbrev-upcase-means-case-search)
528 (string= abbrev (downcase abbrev))))))))
6163b3ba
RS
529 (cond
530 ((not expansion)
531 (dabbrev--reset-global-variables)
532 (if old
533 (save-excursion
4209f479 534 (setq buffer-undo-list (cons orig-point buffer-undo-list))
3132e115
RS
535 ;; Put back the original abbrev with its original case pattern.
536 (search-backward old)
537 (insert abbrev)
538 (delete-region (point) (+ (point) (length old)))))
7313ccdb 539 (error "No%s dynamic expansion for `%s' found"
6163b3ba
RS
540 (if old " further" "") abbrev))
541 (t
fdad0f14
GM
542 (if (not (or (eq dabbrev--last-buffer dabbrev--last-buffer-found)
543 (minibuffer-window-active-p (selected-window))))
2f790b20 544 (progn
6163b3ba
RS
545 (message "Expansion found in '%s'"
546 (buffer-name dabbrev--last-buffer))
547 (setq dabbrev--last-buffer-found dabbrev--last-buffer))
548 (message nil))
a8a2d6ca
KH
549 (if (and (or (eq (current-buffer) dabbrev--last-buffer)
550 (null dabbrev--last-buffer))
551 (numberp dabbrev--last-expansion-location)
552 (and (> dabbrev--last-expansion-location (point))))
553 (setq dabbrev--last-expansion-location
554 (copy-marker dabbrev--last-expansion-location)))
2f790b20 555 ;; Success: stick it in and return.
4209f479 556 (setq buffer-undo-list (cons orig-point buffer-undo-list))
3ffa545b
GM
557 (dabbrev--substitute-expansion old abbrev expansion
558 record-case-pattern)
dea5efcb 559
2f790b20 560 ;; Save state for re-expand.
da49057c 561 (setq dabbrev--last-expansion expansion)
6163b3ba
RS
562 (setq dabbrev--last-abbreviation abbrev)
563 (setq dabbrev--last-abbrev-location (point-marker))))))
564
b578f267
EN
565;;----------------------------------------------------------------
566;; Local functions
567;;----------------------------------------------------------------
6163b3ba 568
6163b3ba 569(defun dabbrev--same-major-mode-p (other-buffer)
5f24557b 570 "Check if OTHER-BUFFER has the same major mode as current buffer."
7313ccdb 571 (eq major-mode
7fdbcd83 572 (with-current-buffer other-buffer
7313ccdb 573 major-mode)))
6163b3ba 574
6163b3ba 575(defun dabbrev--goto-start-of-abbrev ()
5f24557b
SM
576 "Back over all abbrev type characters and then moves forward over
577all skip characters."
6163b3ba
RS
578 ;; Move backwards over abbrev chars
579 (save-match-data
b0021416
RS
580 (when (> (point) (minibuffer-prompt-end))
581 (forward-char -1)
582 (while (and (looking-at dabbrev--abbrev-char-regexp)
583 (> (point) (minibuffer-prompt-end))
584 (not (= (point) (field-beginning (point) nil
585 (1- (point))))))
586 (forward-char -1))
587 (or (looking-at dabbrev--abbrev-char-regexp)
588 (forward-char 1)))
6163b3ba
RS
589 (and dabbrev-abbrev-skip-leading-regexp
590 (while (looking-at dabbrev-abbrev-skip-leading-regexp)
591 (forward-char 1)))))
592
6163b3ba 593(defun dabbrev--abbrev-at-point ()
5f24557b 594 "Extract the symbol at point to serve as abbreviation."
6163b3ba 595 ;; Check for error
a8a2d6ca
KH
596 (if (bobp)
597 (error "No possible abbreviation preceding point"))
6163b3ba
RS
598 ;; Return abbrev at point
599 (save-excursion
a8a2d6ca 600 ;; Record the end of the abbreviation.
6163b3ba 601 (setq dabbrev--last-abbrev-location (point))
a8a2d6ca
KH
602 ;; If we aren't right after an abbreviation,
603 ;; move point back to just after one.
604 ;; This is so the user can get successive words
605 ;; by typing the punctuation followed by M-/.
606 (save-match-data
607 (if (save-excursion
608 (forward-char -1)
5f24557b
SM
609 (not (looking-at (or dabbrev-abbrev-char-regexp
610 "\\sw\\|\\s_"))))
a8a2d6ca
KH
611 (if (re-search-backward (or dabbrev-abbrev-char-regexp
612 "\\sw\\|\\s_")
613 nil t)
614 (forward-char 1)
615 (error "No possible abbreviation preceding point"))))
616 ;; Now find the beginning of that one.
617 (dabbrev--goto-start-of-abbrev)
6f0b000c
RS
618 (buffer-substring-no-properties
619 dabbrev--last-abbrev-location (point))))
da49057c 620
6163b3ba 621(defun dabbrev--reset-global-variables ()
5f24557b 622 "Initialize all global variables."
6163b3ba
RS
623 ;; dabbrev--last-obarray and dabbrev--last-completion-buffer
624 ;; must not be reset here.
625 (setq dabbrev--last-table nil
626 dabbrev--last-abbreviation nil
627 dabbrev--last-abbrev-location nil
628 dabbrev--last-direction nil
629 dabbrev--last-expansion nil
630 dabbrev--last-expansion-location nil
631 dabbrev--friend-buffer-list nil
632 dabbrev--last-buffer nil
633 dabbrev--last-buffer-found nil
634 dabbrev--abbrev-char-regexp (or dabbrev-abbrev-char-regexp
635 "\\sw\\|\\s_")
df6eb420 636 dabbrev--check-other-buffers dabbrev-check-other-buffers))
6163b3ba 637
6163b3ba 638(defun dabbrev--select-buffers ()
513e7954
RS
639 "Return a list of other buffers to search for a possible abbrev.
640The current buffer is not included in the list.
641
642This function makes a list of all the buffers returned by `buffer-list',
643then discards buffers whose names match `dabbrev-ignored-buffer-names'
644or `dabbrev-ignored-buffer-regexps'. It also discards buffers for which
645`dabbrev-friend-buffer-function', if it is bound, returns nil when called
646with the buffer as argument.
647It returns the list of the buffers that are not discarded."
648 (dabbrev-filter-elements
649 buffer (buffer-list)
650 (and (not (eq (current-buffer) buffer))
651 (not (dabbrev--ignore-buffer-p buffer))
652 (boundp 'dabbrev-friend-buffer-function)
2ebf8f54 653 (funcall dabbrev-friend-buffer-function buffer))))
7313ccdb 654
6163b3ba 655(defun dabbrev--try-find (abbrev reverse n ignore-case)
fd2dfb40
RS
656 "Search for ABBREV, backwards if REVERSE, N times.
657If IGNORE-CASE is non-nil, ignore case while searching.
658Return the expansion found, and save the location of the start
659of the expansion in `dabbrev--last-expansion-location'."
6163b3ba 660 (save-excursion
df6eb420
RS
661 (save-restriction
662 (widen)
663 (let ((expansion nil))
664 (and dabbrev--last-expansion-location
665 (goto-char dabbrev--last-expansion-location))
666 (let ((case-fold-search ignore-case)
667 (count n))
668 (while (and (> count 0)
669 (setq expansion (dabbrev--search abbrev
670 reverse
93a43334
RS
671 (and ignore-case
672 (if (eq dabbrev-case-distinction 'case-replace)
673 case-replace
674 dabbrev-case-distinction))
675 )))
df6eb420
RS
676 (setq count (1- count))))
677 (and expansion
678 (setq dabbrev--last-expansion-location (point)))
679 expansion))))
6163b3ba 680
6163b3ba 681(defun dabbrev--find-all-expansions (abbrev ignore-case)
fd2dfb40
RS
682 "Return a list of all possible expansions of ABBREV.
683If IGNORE-CASE is non-nil, accept matches which differ in case."
6163b3ba
RS
684 (let ((all-expansions nil)
685 expansion)
686 (save-excursion
687 (goto-char (point-min))
688 (while (setq expansion (dabbrev--find-expansion abbrev -1 ignore-case))
df6eb420 689 (setq all-expansions (cons expansion all-expansions))))
6163b3ba
RS
690 all-expansions))
691
a6a06429
MB
692(defun dabbrev--ignore-buffer-p (buffer)
693 "Return non-nil if BUFFER should be ignored by dabbrev."
694 (let ((bn (buffer-name buffer)))
695 (or (member bn dabbrev-ignored-buffer-names)
696 (let ((tail dabbrev-ignored-buffer-regexps)
697 (match nil))
698 (while (and tail (not match))
699 (setq match (string-match (car tail) bn)
700 tail (cdr tail)))
701 match))))
702
6163b3ba 703(defun dabbrev--find-expansion (abbrev direction ignore-case)
fd2dfb40
RS
704 "Find one occurrence of ABBREV, and return the expansion.
705DIRECTION > 0 means look that many times backwards.
706DIRECTION < 0 means look that many times forward.
707DIRECTION = 0 means try both backward and forward.
708IGNORE-CASE non-nil means ignore case when searching.
709This sets `dabbrev--last-direction' to 1 or -1 according
710to the direction in which the occurrence was actually found.
71296446 711It sets `dabbrev--last-expansion-location' to the location
fd2dfb40 712of the start of the occurrence."
513e7954
RS
713 (save-excursion
714 ;; If we were scanning something other than the current buffer,
715 ;; continue scanning there.
716 (when dabbrev--last-buffer
7daa3523 717 (set-buffer dabbrev--last-buffer))
513e7954
RS
718 (or
719 ;; ------------------------------------------
720 ;; Look backward in current buffer.
721 ;; ------------------------------------------
722 (and (not dabbrev-search-these-buffers-only)
723 (>= direction 0)
724 (setq dabbrev--last-direction (min 1 direction))
725 (dabbrev--try-find abbrev t
726 (max 1 direction)
727 ignore-case))
728 ;; ------------------------------------------
729 ;; Look forward in current buffer
730 ;; or whatever buffer we were last scanning.
731 ;; ------------------------------------------
732 (and (or (not dabbrev-search-these-buffers-only)
733 dabbrev--last-buffer)
734 (<= direction 0)
735 (setq dabbrev--last-direction -1)
736 (dabbrev--try-find abbrev nil
737 (max 1 (- direction))
738 ignore-case))
739 ;; ------------------------------------------
740 ;; Look in other buffers.
741 ;; Always start at (point-min) and look forward.
742 ;; ------------------------------------------
743 (progn
744 (setq dabbrev--last-direction -1)
745 (unless dabbrev--last-buffer
746 ;; If we have just now begun to search other buffers,
747 ;; determine which other buffers we should check.
748 ;; Put that list in dabbrev--friend-buffer-list.
7daa3523
TTN
749 (unless dabbrev--friend-buffer-list
750 (setq dabbrev--friend-buffer-list
751 (dabbrev--make-friend-buffer-list))
752 (setq dabbrev--progress-reporter
753 (make-progress-reporter
754 "Scanning for dabbrevs..."
755 (- (length dabbrev--friend-buffer-list)) 0 0 1 1.5))))
513e7954
RS
756 ;; Walk through the buffers till we find a match.
757 (let (expansion)
758 (while (and (not expansion) dabbrev--friend-buffer-list)
2e27ed13 759 (setq dabbrev--last-buffer (pop dabbrev--friend-buffer-list))
513e7954 760 (set-buffer dabbrev--last-buffer)
7daa3523
TTN
761 (progress-reporter-update dabbrev--progress-reporter
762 (- (length dabbrev--friend-buffer-list)))
513e7954
RS
763 (setq dabbrev--last-expansion-location (point-min))
764 (setq expansion (dabbrev--try-find abbrev nil 1 ignore-case)))
765 expansion)))))
766
767;; Compute the list of buffers to scan.
768;; If dabbrev-search-these-buffers-only, then the current buffer
769;; is included in this list if it should be searched.
770;; Otherwise, the current buffer is searched first specially.,
771;; and it is not included in this list.
772(defun dabbrev--make-friend-buffer-list ()
773 (let ((list (mapcar (function get-buffer)
774 dabbrev-search-these-buffers-only)))
775 (when (and (null dabbrev-search-these-buffers-only)
776 dabbrev--check-other-buffers
777 (or (eq dabbrev--check-other-buffers t)
778 (setq dabbrev--check-other-buffers
779 (y-or-n-p "Scan other buffers also? "))))
780 (setq list (funcall dabbrev-select-buffers-function))
781 ;; If dabbrev-check-all-buffers, tack on all the other
782 ;; buffers at the end of the list, except those which are
783 ;; specifically to be ignored.
784 (if dabbrev-check-all-buffers
785 (setq list
786 (append list
3ffa545b
GM
787 (dabbrev-filter-elements
788 buffer (buffer-list)
513e7954
RS
789 (and (not (memq buffer list))
790 (not (dabbrev--ignore-buffer-p buffer)))))))
791 ;; Remove the current buffer.
792 (setq list (delq (current-buffer) list)))
793 ;; Move buffers in the list that are visible on the screen
794 ;; to the front of the list, but don't add anything to the list.
795 (if list
796 (walk-windows (lambda (w)
797 (unless (eq w (selected-window))
798 (if (memq (window-buffer w) list)
799 (setq list
800 (cons (window-buffer w)
801 (delq (window-buffer w)
802 list))))))))
803 ;; In a minibuffer, search the buffer it was activated from,
804 ;; first after the minibuffer itself. Unless we aren't supposed
805 ;; to search the current buffer either.
806 (if (and (window-minibuffer-p (selected-window))
807 (not dabbrev-search-these-buffers-only))
808 (setq list
809 (cons (dabbrev--minibuffer-origin)
810 (delq (dabbrev--minibuffer-origin) list))))
811 list))
6163b3ba 812
6163b3ba
RS
813(defun dabbrev--safe-replace-match (string &optional fixedcase literal)
814 (if (eq major-mode 'picture-mode)
6ee55cb1
RS
815 (with-no-warnings
816 (picture-replace-match string fixedcase literal))
6163b3ba
RS
817 (replace-match string fixedcase literal)))
818
819;;;----------------------------------------------------------------
3ffa545b
GM
820(defun dabbrev--substitute-expansion (old abbrev expansion record-case-pattern)
821 "Replace OLD with EXPANSION in the buffer.
822OLD is text currently in the buffer, perhaps the abbreviation
823or perhaps another expansion that was tried previously.
824ABBREV is the abbreviation we are expanding.
825It is \" \" if we are copying subsequent words.
826EXPANSION is the expansion substring to be used this time.
827RECORD-CASE-PATTERN, if non-nil, means set `dabbrev--last-case-pattern'
828to record whether we upcased the expansion, downcased it, or did neither."
6163b3ba 829 ;;(undo-boundary)
543abb4a
RS
830 (let ((use-case-replace (and (if (eq dabbrev-case-fold-search 'case-fold-search)
831 case-fold-search
832 dabbrev-case-fold-search)
6163b3ba
RS
833 (or (not dabbrev-upcase-means-case-search)
834 (string= abbrev (downcase abbrev)))
543abb4a
RS
835 (if (eq dabbrev-case-replace 'case-replace)
836 case-replace
837 dabbrev-case-replace))))
3ffa545b
GM
838
839 ;; If we upcased or downcased the original expansion,
840 ;; do likewise for the subsequent words when we copy them.
fd2dfb40
RS
841 ;; Don't do any of the usual case processing, though.
842 (when (equal abbrev " ")
843 (if dabbrev--last-case-pattern
844 (setq expansion
845 (funcall dabbrev--last-case-pattern expansion)))
846 (setq use-case-replace nil))
3ffa545b 847
65411629
RS
848 ;; If the expansion has mixed case
849 ;; and it is not simply a capitalized word,
850 ;; or if the abbrev has mixed case,
851 ;; and if the given abbrev's case pattern
66db4b5b
RS
852 ;; matches the start of the expansion,
853 ;; copy the expansion's case
854 ;; instead of downcasing all the rest.
e921af9e
RS
855 ;;
856 ;; Treat a one-capital-letter (possibly with preceding non-letter
857 ;; characters) abbrev as "not all upper case", so as to force
858 ;; preservation of the expansion's pattern if the expansion starts
859 ;; with a capital letter.
860 (let ((expansion-rest (substring expansion 1))
861 (first-letter-position (string-match "[[:alpha:]]" abbrev)))
862 (if (or (null first-letter-position)
863 (and (not (and (or (string= expansion-rest (downcase expansion-rest))
864 (string= expansion-rest (upcase expansion-rest)))
865 (or (string= abbrev (downcase abbrev))
866 (and (string= abbrev (upcase abbrev))
867 (> (- (length abbrev) first-letter-position)
868 1)))))
869 (string= abbrev
870 (substring expansion 0 (length abbrev)))))
65411629 871 (setq use-case-replace nil)))
fd2dfb40
RS
872
873 ;; If the abbrev and the expansion are both all-lower-case
874 ;; then don't do any conversion. The conversion would be a no-op
875 ;; for this replacement, but it would carry forward to subsequent words.
e921af9e 876 ;; The goal of this is to prevent that carrying forward.
fd2dfb40
RS
877 (if (and (string= expansion (downcase expansion))
878 (string= abbrev (downcase abbrev)))
07e47d0b 879 (setq use-case-replace nil))
fd2dfb40 880
07e47d0b
RS
881 (if use-case-replace
882 (setq expansion (downcase expansion)))
3ffa545b
GM
883
884 ;; In case we insert subsequent words,
885 ;; record if we upcased or downcased the first word,
886 ;; in order to do likewise for subsequent words.
887 (and record-case-pattern
71296446 888 (setq dabbrev--last-case-pattern
3ffa545b
GM
889 (and use-case-replace
890 (cond ((equal abbrev (upcase abbrev)) 'upcase)
891 ((equal abbrev (downcase abbrev)) 'downcase)))))
892
19c17c4e 893 ;; Convert whitespace to single spaces.
e2e75068
RS
894 (if dabbrev-eliminate-newlines
895 (let ((pos
896 (if (equal abbrev " ") 0 (length abbrev))))
897 ;; If ABBREV is real, search after the end of it.
898 ;; If ABBREV is space and we are copying successive words,
899 ;; search starting at the front.
19c17c4e
RS
900 (while (string-match "[\n \t]+" expansion pos)
901 (setq pos (1+ (match-beginning 0)))
902 (setq expansion (replace-match " " nil nil expansion)))))
fd2dfb40 903
6163b3ba
RS
904 (if old
905 (save-excursion
906 (search-backward old))
9b7c13e0 907 ;;(set-match-data (list (point-marker) (point-marker)))
fd2dfb40
RS
908 (search-backward abbrev)
909 (search-forward abbrev))
910
6163b3ba
RS
911 ;; Make case of replacement conform to case of abbreviation
912 ;; provided (1) that kind of thing is enabled in this buffer
913 ;; and (2) the replacement itself is all lower case.
914 (dabbrev--safe-replace-match expansion
915 (not use-case-replace)
916 t)))
917
918
919;;;----------------------------------------------------------------
920;;; Search function used by dabbrevs library.
921
6163b3ba
RS
922
923(defun dabbrev--search (abbrev reverse ignore-case)
fd2dfb40
RS
924 "Search for something that could be used to expand ABBREV.
925
926Second arg, REVERSE, is t for reverse search, nil for forward.
927The variable `dabbrev-limit' controls the maximum search region size.
928Third argument IGNORE-CASE non-nil means treat case as insignificant while
929looking for a match and when comparing with previous matches. Also if
930that's non-nil and the match is found at the beginning of a sentence
931and is in lower case except for the initial then it is converted to
932all lower case for return.
933
934Table of expansions already seen is examined in buffer
935`dabbrev--last-table' so that only distinct possibilities are found
936by dabbrev-re-expand.
937
938Returns the expansion found, or nil if not found.
939Leaves point at the location of the start of the expansion."
6163b3ba
RS
940 (save-match-data
941 (let ((pattern1 (concat (regexp-quote abbrev)
942 "\\(" dabbrev--abbrev-char-regexp "\\)"))
943 (pattern2 (concat (regexp-quote abbrev)
944 "\\(\\(" dabbrev--abbrev-char-regexp "\\)+\\)"))
155133a2
RS
945 ;; This makes it possible to find matches in minibuffer prompts
946 ;; even when they are "inviolable".
947 (inhibit-point-motion-hooks t)
93a43334 948 found-string result)
6163b3ba
RS
949 ;; Limited search.
950 (save-restriction
951 (and dabbrev-limit
952 (narrow-to-region dabbrev--last-expansion-location
953 (+ (point)
954 (if reverse (- dabbrev-limit) dabbrev-limit))))
955 ;;--------------------------------
956 ;; Look for a distinct expansion, using dabbrev--last-table.
957 ;;--------------------------------
958 (while (and (not found-string)
959 (if reverse
960 (re-search-backward pattern1 nil t)
961 (re-search-forward pattern1 nil t)))
63d991d6
KH
962 (goto-char (match-beginning 0))
963 ;; In case we matched in the middle of a word,
964 ;; back up to start of word and verify we still match.
965 (dabbrev--goto-start-of-abbrev)
966
967 (if (not (looking-at pattern1))
968 nil
969 ;; We have a truly valid match. Find the end.
6163b3ba 970 (re-search-forward pattern2)
2e27ed13 971 (setq found-string (match-string-no-properties 0))
93a43334 972 (setq result found-string)
6163b3ba 973 (and ignore-case (setq found-string (downcase found-string)))
63d991d6 974 ;; Ignore this match if it's already in the table.
7313ccdb
RS
975 (if (dabbrev-filter-elements
976 table-string dabbrev--last-table
977 (string= found-string table-string))
63d991d6
KH
978 (setq found-string nil)))
979 ;; Prepare to continue searching.
2e27ed13 980 (goto-char (if reverse (match-beginning 0) (match-end 0))))
63d991d6 981 ;; If we found something, use it.
93a43334
RS
982 (when found-string
983 ;; Put it into `dabbrev--last-table'
984 ;; and return it (either downcased, or as is).
985 (setq dabbrev--last-table
986 (cons found-string dabbrev--last-table))
987 result)))))
6163b3ba 988
df27f31f 989(dolist (mess '("^No dynamic expansion for .* found"
87207d14
DL
990 "^No further dynamic expansion for .* found$"
991 "^No possible abbreviation preceding point$"))
992 (add-to-list 'debug-ignored-errors mess))
993
01987a6b 994(provide 'dabbrev)
7313ccdb 995
b578f267 996;;; dabbrev.el ends here