Mercurial > emacs
annotate lisp/dabbrev.el @ 4386:abd79e187610
(try_window): Handle invisible newline at end of buffer.
(display_text_line): Don't display invisible text.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 31 Jul 1993 22:00:33 +0000 |
parents | ca1e006fff42 |
children | 069c54e77fd1 |
rev | line source |
---|---|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1 ;;; dabbrev.el --- dynamic abbreviation package for GNU Emacs. |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
846
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
3 ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
4 |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
5 ;; Last-Modified: 16 Mar 1992 |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
6 ;; Copyright (C) 1985, 1986 Free Software Foundation, Inc. |
20674ae6bf52
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
7 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
793
diff
changeset
|
8 ;; Maintainer: FSF |
2247
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1144
diff
changeset
|
9 ;; Keywords: abbrev |
267 | 10 |
11 ;; This file is part of GNU Emacs. | |
12 | |
13 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
14 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
793
diff
changeset
|
15 ;; the Free Software Foundation; either version 2, or (at your option) |
267 | 16 ;; any later version. |
17 | |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
24 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
25 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
26 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
793
diff
changeset
|
27 ;;; Commentary: |
267 | 28 |
29 ; DABBREVS - "Dynamic abbreviations" hack, originally written by Don Morrison | |
30 ; for Twenex Emacs. Converted to mlisp by Russ Fish. Supports the table | |
31 ; feature to avoid hitting the same expansion on re-expand, and the search | |
32 ; size limit variable. Bugs fixed from the Twenex version are flagged by | |
33 ; comments starting with ;;; . | |
34 ; | |
793
6fb68a1460a6
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
662
diff
changeset
|
35 ; converted to Emacs Lisp by Spencer Thomas. |
267 | 36 ; Thoroughly cleaned up by Richard Stallman. |
37 ; | |
38 ; If anyone feels like hacking at it, Bob Keller (Keller@Utah-20) first | |
39 ; suggested the beast, and has some good ideas for its improvement, but | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
793
diff
changeset
|
40 ; doesn't know TECO (the lucky devil...). One thing that should definitely |
267 | 41 ; be done is adding the ability to search some other buffer(s) if you can?t |
42 ; find the expansion you want in the current one. | |
43 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
793
diff
changeset
|
44 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
793
diff
changeset
|
45 |
267 | 46 ;; (defun dabbrevs-help () |
47 ;; "Give help about dabbrevs." | |
48 ;; (interactive) | |
49 ;; (&info "emacs" "dabbrevs") ; Select the specific info node. | |
50 ;; ) | |
51 (defvar dabbrevs-limit nil | |
52 "*Limits region searched by `dabbrevs-expand' to this many chars away.") | |
53 (make-variable-buffer-local 'dabbrevs-limit) | |
54 | |
55 (defvar dabbrevs-backward-only nil | |
56 "*If non-NIL, `dabbrevs-expand' only looks backwards.") | |
57 | |
58 ; State vars for dabbrevs-re-expand. | |
59 (defvar last-dabbrevs-table nil | |
60 "Table of expansions seen so far (local)") | |
61 (make-variable-buffer-local 'last-dabbrevs-table) | |
62 | |
63 (defvar last-dabbrevs-abbreviation "" | |
64 "Last string we tried to expand (local).") | |
65 (make-variable-buffer-local 'last-dabbrevs-abbreviation) | |
66 | |
67 (defvar last-dabbrevs-direction 0 | |
68 "Direction of last dabbrevs search (local)") | |
69 (make-variable-buffer-local 'last-dabbrevs-direction) | |
70 | |
71 (defvar last-dabbrevs-abbrev-location nil | |
72 "Location last abbreviation began (local).") | |
73 (make-variable-buffer-local 'last-dabbrevs-abbrev-location) | |
74 | |
75 (defvar last-dabbrevs-expansion nil | |
76 "Last expansion of an abbreviation. (local)") | |
77 (make-variable-buffer-local 'last-dabbrevs-expansion) | |
78 | |
79 (defvar last-dabbrevs-expansion-location nil | |
80 "Location the last expansion was found. (local)") | |
81 (make-variable-buffer-local 'last-dabbrevs-expansion-location) | |
82 | |
83 ;;;###autoload | |
84 (defun dabbrev-expand (arg) | |
85 "Expand previous word \"dynamically\". | |
86 Expands to the most recent, preceding word for which this is a prefix. | |
87 If no suitable preceding word is found, words following point are considered. | |
88 | |
89 If `case-fold-search' and `case-replace' are non-nil (usually true) | |
90 then the substituted word may be case-adjusted to match the abbreviation | |
91 that you had typed. This takes place if the substituted word, as found, | |
92 is all lower case, or if it is at the beginning of a sentence and only | |
93 its first letter was upper case. | |
94 | |
95 A positive prefix arg N says to take the Nth backward DISTINCT | |
96 possibility. A negative argument says search forward. The variable | |
97 `dabbrev-backward-only' may be used to limit the direction of search to | |
98 backward if set non-nil. | |
99 | |
100 If the cursor has not moved from the end of the previous expansion and | |
101 no argument is given, replace the previously-made expansion | |
102 with the next possible expansion not yet tried." | |
103 (interactive "*P") | |
104 (let (abbrev expansion old which loc n pattern | |
105 (do-case (and case-fold-search case-replace))) | |
106 ;; abbrev -- the abbrev to expand | |
107 ;; expansion -- the expansion found (eventually) or nil until then | |
108 ;; old -- the text currently in the buffer | |
109 ;; (the abbrev, or the previously-made expansion) | |
110 ;; loc -- place where expansion is found | |
111 ;; (to start search there for next expansion if requested later) | |
112 ;; do-case -- non-nil if should transform case when substituting. | |
113 (save-excursion | |
114 (if (and (null arg) | |
115 (eq last-command this-command) | |
116 last-dabbrevs-abbrev-location) | |
117 (progn | |
118 (setq abbrev last-dabbrevs-abbreviation) | |
119 (setq old last-dabbrevs-expansion) | |
120 (setq which last-dabbrevs-direction)) | |
121 (setq which (if (null arg) | |
122 (if dabbrevs-backward-only 1 0) | |
123 (prefix-numeric-value arg))) | |
124 (setq loc (point)) | |
125 (forward-word -1) | |
126 (setq last-dabbrevs-abbrev-location (point)) ; Original location. | |
127 (setq abbrev (buffer-substring (point) loc)) | |
128 (setq old abbrev) | |
129 (setq last-dabbrevs-expansion-location nil) | |
130 (setq last-dabbrev-table nil)) ; Clear table of things seen. | |
131 | |
132 (setq pattern (concat "\\b" (regexp-quote abbrev) "\\(\\sw\\|\\s_\\)+")) | |
133 ;; Try looking backward unless inhibited. | |
134 (if (>= which 0) | |
135 (progn | |
136 (setq n (max 1 which)) | |
137 (if last-dabbrevs-expansion-location | |
138 (goto-char last-dabbrevs-expansion-location)) | |
139 (while (and (> n 0) | |
140 (setq expansion (dabbrevs-search pattern t do-case))) | |
141 (setq loc (point-marker)) | |
142 (setq last-dabbrev-table (cons expansion last-dabbrev-table)) | |
143 (setq n (1- n))) | |
144 (or expansion | |
145 (setq last-dabbrevs-expansion-location nil)) | |
146 (setq last-dabbrevs-direction (min 1 which)))) | |
147 | |
148 (if (and (<= which 0) (not expansion)) ; Then look forward. | |
149 (progn | |
150 (setq n (max 1 (- which))) | |
151 (if last-dabbrevs-expansion-location | |
152 (goto-char last-dabbrevs-expansion-location)) | |
153 (while (and (> n 0) | |
154 (setq expansion (dabbrevs-search pattern nil do-case))) | |
155 (setq loc (point-marker)) | |
156 (setq last-dabbrev-table (cons expansion last-dabbrev-table)) | |
157 (setq n (1- n))) | |
158 (setq last-dabbrevs-direction -1)))) | |
159 | |
160 (if (not expansion) | |
161 (let ((first (string= abbrev old))) | |
162 (setq last-dabbrevs-abbrev-location nil) | |
163 (if (not first) | |
164 (progn (undo-boundary) | |
3731
ca1e006fff42
(dabbrev-expand): Do all changes with replace-match.
Richard M. Stallman <rms@gnu.org>
parents:
2713
diff
changeset
|
165 (search-backward old) |
ca1e006fff42
(dabbrev-expand): Do all changes with replace-match.
Richard M. Stallman <rms@gnu.org>
parents:
2713
diff
changeset
|
166 (if (eq major-mode 'picture-mode) |
ca1e006fff42
(dabbrev-expand): Do all changes with replace-match.
Richard M. Stallman <rms@gnu.org>
parents:
2713
diff
changeset
|
167 (picture-replace-match abbrev t 'literal) |
ca1e006fff42
(dabbrev-expand): Do all changes with replace-match.
Richard M. Stallman <rms@gnu.org>
parents:
2713
diff
changeset
|
168 (replace-match abbrev t 'literal)))) |
267 | 169 (error (if first |
170 "No dynamic expansion for \"%s\" found." | |
171 "No further dynamic expansions for \"%s\" found.") | |
172 abbrev)) | |
173 ;; Success: stick it in and return. | |
174 (undo-boundary) | |
175 (search-backward old) | |
176 ;; Make case of replacement conform to case of abbreviation | |
177 ;; provided (1) that kind of thing is enabled in this buffer | |
178 ;; and (2) the replacement itself is all lower case. | |
179 ;; First put back the original abbreviation with its original | |
180 ;; case pattern. | |
181 (save-excursion | |
3731
ca1e006fff42
(dabbrev-expand): Do all changes with replace-match.
Richard M. Stallman <rms@gnu.org>
parents:
2713
diff
changeset
|
182 (if (eq major-mode 'picture-mode) |
ca1e006fff42
(dabbrev-expand): Do all changes with replace-match.
Richard M. Stallman <rms@gnu.org>
parents:
2713
diff
changeset
|
183 (picture-replace-match abbrev t 'literal) |
ca1e006fff42
(dabbrev-expand): Do all changes with replace-match.
Richard M. Stallman <rms@gnu.org>
parents:
2713
diff
changeset
|
184 (replace-match abbrev t 'literal))) |
267 | 185 (search-forward abbrev) |
186 (let ((do-case (and do-case | |
187 (string= (substring expansion 1) | |
188 (downcase (substring expansion 1)))))) | |
189 ;; First put back the original abbreviation with its original | |
190 ;; case pattern. | |
191 (save-excursion | |
192 (replace-match abbrev t 'literal)) | |
2713
fd3e1f2d7ae5
(dabbrev-expand): Delete a search-forward call
Richard M. Stallman <rms@gnu.org>
parents:
2247
diff
changeset
|
193 ;;; This used to be necessary, but no longer, |
fd3e1f2d7ae5
(dabbrev-expand): Delete a search-forward call
Richard M. Stallman <rms@gnu.org>
parents:
2247
diff
changeset
|
194 ;;; because now point is preserved correctly above. |
fd3e1f2d7ae5
(dabbrev-expand): Delete a search-forward call
Richard M. Stallman <rms@gnu.org>
parents:
2247
diff
changeset
|
195 ;;; (search-forward abbrev) |
3731
ca1e006fff42
(dabbrev-expand): Do all changes with replace-match.
Richard M. Stallman <rms@gnu.org>
parents:
2713
diff
changeset
|
196 (if (eq major-mode 'picture-mode) |
ca1e006fff42
(dabbrev-expand): Do all changes with replace-match.
Richard M. Stallman <rms@gnu.org>
parents:
2713
diff
changeset
|
197 (picture-replace-match (if do-case (downcase expansion) expansion) |
ca1e006fff42
(dabbrev-expand): Do all changes with replace-match.
Richard M. Stallman <rms@gnu.org>
parents:
2713
diff
changeset
|
198 (not do-case) |
ca1e006fff42
(dabbrev-expand): Do all changes with replace-match.
Richard M. Stallman <rms@gnu.org>
parents:
2713
diff
changeset
|
199 'literal) |
ca1e006fff42
(dabbrev-expand): Do all changes with replace-match.
Richard M. Stallman <rms@gnu.org>
parents:
2713
diff
changeset
|
200 (replace-match (if do-case (downcase expansion) expansion) |
ca1e006fff42
(dabbrev-expand): Do all changes with replace-match.
Richard M. Stallman <rms@gnu.org>
parents:
2713
diff
changeset
|
201 (not do-case) |
ca1e006fff42
(dabbrev-expand): Do all changes with replace-match.
Richard M. Stallman <rms@gnu.org>
parents:
2713
diff
changeset
|
202 'literal))) |
267 | 203 ;; Save state for re-expand. |
204 (setq last-dabbrevs-abbreviation abbrev) | |
205 (setq last-dabbrevs-expansion expansion) | |
206 (setq last-dabbrevs-expansion-location loc)))) | |
207 | |
208 ;;;###autoload | |
209 (define-key esc-map "/" 'dabbrev-expand) | |
210 | |
211 | |
212 ;; Search function used by dabbrevs library. | |
213 ;; First arg is string to find as prefix of word. Second arg is | |
214 ;; t for reverse search, nil for forward. Variable dabbrevs-limit | |
215 ;; controls the maximum search region size. | |
216 | |
217 ;; Table of expansions already seen is examined in buffer last-dabbrev-table, | |
218 ;; so that only distinct possibilities are found by dabbrevs-re-expand. | |
219 ;; Note that to prevent finding the abbrev itself it must have been | |
220 ;; entered in the table. | |
221 | |
222 ;; IGNORE-CASE non-nil means treat case as insignificant while | |
223 ;; looking for a match and when comparing with previous matches. | |
224 ;; Also if that's non-nil and the match is found at the beginning of a sentence | |
225 ;; and is in lower case except for the initial | |
226 ;; then it is converted to all lower case for return. | |
227 | |
228 ;; Value is the expansion, or nil if not found. After a successful | |
229 ;; search, point is left right after the expansion found. | |
230 | |
231 (defun dabbrevs-search (pattern reverse ignore-case) | |
232 (let (missing result (case-fold-search ignore-case)) | |
233 (save-restriction ; Uses restriction for limited searches. | |
234 (if dabbrevs-limit | |
235 (narrow-to-region last-dabbrevs-abbrev-location | |
236 (+ (point) | |
237 (* dabbrevs-limit (if reverse -1 1))))) | |
238 ;; Keep looking for a distinct expansion. | |
239 (setq result nil) | |
240 (setq missing nil) | |
241 (while (and (not result) (not missing)) | |
242 ; Look for it, leave loop if search fails. | |
243 (setq missing | |
244 (not (if reverse | |
245 (re-search-backward pattern nil t) | |
246 (re-search-forward pattern nil t)))) | |
247 | |
248 (if (not missing) | |
249 (progn | |
250 (setq result (buffer-substring (match-beginning 0) | |
251 (match-end 0))) | |
252 (let* ((test last-dabbrev-table)) | |
253 (while (and test | |
254 (not | |
255 (if ignore-case | |
256 (string= (downcase (car test)) | |
257 (downcase result)) | |
258 (string= (car test) result)))) | |
259 (setq test (cdr test))) | |
260 (if test (setq result nil)))))) ; if already in table, ignore | |
261 (if result | |
262 (save-excursion | |
263 (let ((beg (match-beginning 0))) | |
264 (goto-char beg) | |
265 (and ignore-case | |
266 (string= (substring result 1) | |
267 (downcase (substring result 1))) | |
268 (if (string= paragraph-start | |
269 (concat "^$\\|" page-delimiter)) | |
270 (and (re-search-backward sentence-end nil t) | |
271 (= (match-end 0) beg)) | |
272 (forward-char 1) | |
273 (backward-sentence) | |
274 (= (point) beg)) | |
275 (setq result (downcase result)))))) | |
276 result))) | |
584 | 277 |
1144 | 278 (provide 'dabbrev) |
584 | 279 |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
280 ;;; dabbrev.el ends here |