Mercurial > emacs
annotate lisp/completion.el @ 3594:aacca1901f73
* emacsserver.c (main): When we're passing a `struct sockaddr_un'
to bind or accept, cast the pointer, to avoid warnings on systems
which declare prototypes for this.
author | Jim Blandy <jimb@redhat.com> |
---|---|
date | Wed, 09 Jun 1993 12:41:31 +0000 |
parents | 507f64624555 |
children | 20145b01f038 |
rev | line source |
---|---|
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
190
diff
changeset
|
1 ;;; completion.el --- dynamic word-completion code |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
190
diff
changeset
|
2 |
795
c693d56ef36d
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
3 ;; Maintainer: bug-completion@think.com |
2247
2c7997f249eb
Add or correct keywords
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
1356
diff
changeset
|
4 ;; Keywords: abbrev |
795
c693d56ef36d
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
5 |
c693d56ef36d
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
6 ;;; Commentary: |
c693d56ef36d
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
7 |
3169
ff7e4f44269d
Comment out handling of shell-send-input.
Richard M. Stallman <rms@gnu.org>
parents:
2247
diff
changeset
|
8 ;;; This file is very badly designed in that it redefines |
ff7e4f44269d
Comment out handling of shell-send-input.
Richard M. Stallman <rms@gnu.org>
parents:
2247
diff
changeset
|
9 ;;; standard functions of Emacs. This is bad design, because |
ff7e4f44269d
Comment out handling of shell-send-input.
Richard M. Stallman <rms@gnu.org>
parents:
2247
diff
changeset
|
10 ;;; this file cannot be updated to correspond to the latest |
ff7e4f44269d
Comment out handling of shell-send-input.
Richard M. Stallman <rms@gnu.org>
parents:
2247
diff
changeset
|
11 ;;; versions of those functions. Therefore, you must expect |
ff7e4f44269d
Comment out handling of shell-send-input.
Richard M. Stallman <rms@gnu.org>
parents:
2247
diff
changeset
|
12 ;;; it to produce unpredictable and undesirable results. |
ff7e4f44269d
Comment out handling of shell-send-input.
Richard M. Stallman <rms@gnu.org>
parents:
2247
diff
changeset
|
13 ;;; This file needs to be redesigned to work in a modular fashion. |
ff7e4f44269d
Comment out handling of shell-send-input.
Richard M. Stallman <rms@gnu.org>
parents:
2247
diff
changeset
|
14 ;;; -- rms. |
ff7e4f44269d
Comment out handling of shell-send-input.
Richard M. Stallman <rms@gnu.org>
parents:
2247
diff
changeset
|
15 |
56 | 16 ;;; This is a Completion system for GNU Emacs |
17 ;;; | |
18 ;;; E-Mail: | |
19 ;;; Internet: completion@think.com, bug-completion@think.com | |
20 ;;; UUCP: {rutgers,harvard,mit-eddie}!think!completion | |
21 ;;; | |
22 ;;; If you are a new user, we'd appreciate knowing your site name and | |
23 ;;; any comments you have. | |
24 ;;; | |
25 ;;; | |
26 ;;; NO WARRANTY | |
27 ;;; | |
28 ;;; This software is distributed free of charge and is in the public domain. | |
29 ;;; Anyone may use, duplicate or modify this program. Thinking Machines | |
30 ;;; Corporation does not restrict in any way the use of this software by | |
31 ;;; anyone. | |
32 ;;; | |
33 ;;; Thinking Machines Corporation provides absolutely no warranty of any kind. | |
34 ;;; The entire risk as to the quality and performance of this program is with | |
35 ;;; you. In no event will Thinking Machines Corporation be liable to you for | |
36 ;;; damages, including any lost profits, lost monies, or other special, | |
37 ;;; incidental or consequential damages arising out of the use of this program. | |
38 ;;; | |
39 ;;; You must not restrict the distribution of this software. | |
40 ;;; | |
41 ;;; Please keep this notice and author information in any copies you make. | |
42 ;;; | |
43 ;;; 4/90 | |
44 ;;; | |
45 ;;; | |
46 ;;; Advertisement | |
47 ;;;--------------- | |
48 ;;; Try using this. If you are like most you will be happy you did. | |
49 ;;; | |
50 ;;; What to put in .emacs | |
51 ;;;----------------------- | |
52 ;;; (load "completion") ;; If it's not part of the standard band. | |
53 ;;; (initialize-completions) | |
54 ;;; | |
55 ;;; For best results, be sure to byte-compile the file first. | |
56 ;;; | |
57 | |
58 ;;; Authors | |
59 ;;;--------- | |
60 ;;; Jim Salem {salem@think.com} | |
61 ;;; Brewster Kahle {brewster@think.com} | |
62 ;;; Thinking Machines Corporation | |
63 ;;; 245 First St., Cambridge MA 02142 (617) 876-1111 | |
64 ;;; | |
65 ;;; Mailing Lists | |
66 ;;;--------------- | |
67 ;;; | |
68 ;;; Bugs to bug-completion@think.com | |
69 ;;; Comments to completion@think.com | |
70 ;;; Requests to be added completion-request@think.com | |
71 ;;; | |
72 ;;; Availability | |
73 ;;;-------------- | |
74 ;;; Anonymous FTP from think.com | |
75 ;;; | |
76 | |
77 ;;;--------------------------------------------------------------------------- | |
78 ;;; Documentation [Slightly out of date] | |
79 ;;;--------------------------------------------------------------------------- | |
80 ;;; (also check the documentation string of the functions) | |
81 ;;; | |
82 ;;; Introduction | |
83 ;;;--------------- | |
84 ;;; | |
85 ;;; After you type a few characters, pressing the "complete" key inserts | |
86 ;;; the rest of the word you are likely to type. | |
87 ;;; | |
88 ;;; This watches all the words that you type and remembers them. When | |
89 ;;; typing a new word, pressing "complete" (meta-return) "completes" the | |
90 ;;; word by inserting the most recently used word that begins with the | |
91 ;;; same characters. If you press meta-return repeatedly, it cycles | |
92 ;;; through all the words it knows about. | |
93 ;;; | |
94 ;;; If you like the completion then just continue typing, it is as if you | |
95 ;;; entered the text by hand. If you want the inserted extra characters | |
96 ;;; to go away, type control-w or delete. More options are described below. | |
97 ;;; | |
98 ;;; The guesses are made in the order of the most recently "used". Typing | |
99 ;;; in a word and then typing a separator character (such as a space) "uses" | |
100 ;;; the word. So does moving a cursor over the word. If no words are found, | |
101 ;;; it uses an extended version of the dabbrev style completion. | |
102 ;;; | |
103 ;;; You automatically save the completions you use to a file between | |
104 ;;; sessions. | |
105 ;;; | |
106 ;;; Completion enables programmers to enter longer, more descriptive | |
107 ;;; variable names while typing fewer keystrokes than they normally would. | |
108 ;;; | |
109 ;;; | |
110 ;;; Full documentation | |
111 ;;;--------------------- | |
112 ;;; | |
113 ;;; A "word" is any string containing characters with either word or symbol | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3186
diff
changeset
|
114 ;;; syntax. [E.G. Any alphanumeric string with hyphens, underscores, etc.] |
56 | 115 ;;; Unless you change the constants, you must type at least three characters |
116 ;;; for the word to be recognized. Only words longer than 6 characters are | |
117 ;;; saved. | |
118 ;;; | |
119 ;;; When you load this file, completion will be on. I suggest you use the | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3186
diff
changeset
|
120 ;;; compiled version (because it is noticeably faster). |
56 | 121 ;;; |
122 ;;; M-X completion-mode toggles whether or not new words are added to the | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
123 ;;; database by changing the value of enable-completion. |
56 | 124 ;;; |
125 ;;; SAVING/LOADING COMPLETIONS | |
126 ;;; Completions are automatically saved from one session to another | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
127 ;;; (unless save-completions-flag or enable-completion is nil). |
56 | 128 ;;; Loading this file (or calling initialize-completions) causes EMACS |
129 ;;; to load a completions database for a saved completions file | |
130 ;;; (default: ~/.completions). When you exit, EMACS saves a copy of the | |
131 ;;; completions that you | |
132 ;;; often use. When you next start, EMACS loads in the saved completion file. | |
133 ;;; | |
134 ;;; The number of completions saved depends loosely on | |
135 ;;; *saved-completions-decay-factor*. Completions that have never been | |
136 ;;; inserted via "complete" are not saved. You are encouraged to experiment | |
137 ;;; with different functions (see compute-completion-min-num-uses). | |
138 ;;; | |
139 ;;; Some completions are permanent and are always saved out. These | |
140 ;;; completions have their num-uses slot set to T. Use | |
141 ;;; add-permanent-completion to do this | |
142 ;;; | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
143 ;;; Completions are saved only if enable-completion is T. The number of old |
56 | 144 ;;; versions kept of the saved completions file is controlled by |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
145 ;;; completions-file-versions-kept. |
56 | 146 ;;; |
147 ;;; COMPLETE KEY OPTIONS | |
148 ;;; The complete function takes a numeric arguments. | |
149 ;;; control-u :: leave the point at the beginning of the completion rather | |
150 ;;; than the middle. | |
151 ;;; a number :: rotate through the possible completions by that amount | |
152 ;;; `-' :: same as -1 (insert previous completion) | |
153 ;;; | |
154 ;;; HOW THE DATABASE IS MAINTAINED | |
155 ;;; <write> | |
156 ;;; | |
157 ;;; UPDATING THE DATABASE MANUALLY | |
158 ;;; m-x kill-completion | |
159 ;;; kills the completion at point. | |
160 ;;; m-x add-completion | |
161 ;;; m-x add-permanent-completion | |
162 ;;; | |
163 ;;; UPDATING THE DATABASE FROM A SOURCE CODE FILE | |
164 ;;; m-x add-completions-from-buffer | |
165 ;;; Parses all the definition names from a C or LISP mode buffer and | |
166 ;;; adds them to the completion database. | |
167 ;;; | |
168 ;;; m-x add-completions-from-lisp-file | |
169 ;;; Parses all the definition names from a C or Lisp mode file and | |
170 ;;; adds them to the completion database. | |
171 ;;; | |
172 ;;; UPDATING THE DATABASE FROM A TAGS TABLE | |
173 ;;; m-x add-completions-from-tags-table | |
174 ;;; Adds completions from the current tags-table-buffer. | |
175 ;;; | |
176 ;;; HOW A COMPLETION IS FOUND | |
177 ;;; <write> | |
178 ;;; | |
179 ;;; STRING CASING | |
180 ;;; Completion is string case independent if case-fold-search has its | |
181 ;;; normal default of T. Also when the completion is inserted the case of the | |
182 ;;; entry is coerced appropriately. | |
183 ;;; [E.G. APP --> APPROPRIATELY app --> appropriately | |
184 ;;; App --> Appropriately] | |
185 ;;; | |
186 ;;; INITIALIZATION | |
187 ;;; The form `(initialize-completions)' initializes the completion system by | |
188 ;;; trying to load in the user's completions. After the first cal, further | |
189 ;;; calls have no effect so one should be careful not to put the form in a | |
190 ;;; site's standard site-init file. | |
191 ;;; | |
192 ;;;--------------------------------------------------------------------------- | |
193 ;;; | |
194 ;;; | |
195 | |
196 ;;;--------------------------------------------------------------------------- | |
197 ;;; Functions you might like to call | |
198 ;;;--------------------------------------------------------------------------- | |
199 ;;; | |
200 ;;; add-completion string &optional num-uses | |
201 ;;; Adds a new string to the database | |
202 ;;; | |
203 ;;; add-permanent-completion string | |
204 ;;; Adds a new string to the database with num-uses = T | |
205 ;;; | |
206 | |
207 ;;; kill-completion string | |
208 ;;; Kills the completion from the database. | |
209 ;;; | |
210 ;;; clear-all-completions | |
211 ;;; Clears the database | |
212 ;;; | |
213 ;;; list-all-completions | |
214 ;;; Returns a list of all completions. | |
215 ;;; | |
216 ;;; | |
217 ;;; next-completion string &optional index | |
218 ;;; Returns a completion entry that starts with string. | |
219 ;;; | |
220 ;;; find-exact-completion string | |
221 ;;; Returns a completion entry that exactly matches string. | |
222 ;;; | |
223 ;;; complete | |
224 ;;; Inserts a completion at point | |
225 ;;; | |
226 ;;; initialize-completions | |
227 ;;; Loads the completions file and sets up so that exiting emacs will | |
228 ;;; save them. | |
229 ;;; | |
230 ;;; save-completions-to-file &optional filename | |
231 ;;; load-completions-from-file &optional filename | |
232 ;;; | |
233 ;;;----------------------------------------------- | |
234 ;;; Other functions | |
235 ;;;----------------------------------------------- | |
236 ;;; | |
237 ;;; get-completion-list string | |
238 ;;; | |
239 ;;; These things are for manipulating the structure | |
240 ;;; make-completion string num-uses | |
241 ;;; completion-num-uses completion | |
242 ;;; completion-string completion | |
243 ;;; set-completion-num-uses completion num-uses | |
244 ;;; set-completion-string completion string | |
245 ;;; | |
246 ;;; | |
247 | |
248 ;;;----------------------------------------------- | |
249 ;;; To Do :: (anybody ?) | |
250 ;;;----------------------------------------------- | |
251 ;;; | |
252 ;;; Implement Lookup and keyboard interface in C | |
253 ;;; Add package prefix smarts (for Common Lisp) | |
254 ;;; Add autoprompting of possible completions after every keystroke (fast | |
255 ;;; terminals only !) | |
256 ;;; Add doc. to texinfo | |
257 ;;; | |
258 ;;; | |
259 ;;;----------------------------------------------- | |
795
c693d56ef36d
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
260 ;;; Change Log: |
56 | 261 ;;;----------------------------------------------- |
262 ;;; Sometime in '84 Brewster implemented a somewhat buggy version for | |
263 ;;; Symbolics LISPMs. | |
264 ;;; Jan. '85 Jim became enamored of the idea and implemented a faster, | |
265 ;;; more robust version. | |
266 ;;; With input from many users at TMC, (rose, craig, and gls come to mind), | |
267 ;;; the current style of interface was developed. | |
268 ;;; 9/87, Jim and Brewster took terminals home. Yuck. After | |
269 ;;; complaining for a while Brewester implemented a subset of the current | |
270 ;;; LISPM version for GNU Emacs. | |
271 ;;; 8/88 After complaining for a while (and with sufficient | |
272 ;;; promised rewards), Jim reimplemented a version of GNU completion | |
273 ;;; superior to that of the LISPM version. | |
274 ;;; | |
275 ;;;----------------------------------------------- | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3186
diff
changeset
|
276 ;;; Acknowledgements |
56 | 277 ;;;----------------------------------------------- |
278 ;;; Cliff Lasser (cal@think.com), Kevin Herbert (kph@cisco.com), | |
279 ;;; eero@media-lab, kgk@cs.brown.edu, jla@ai.mit.edu, | |
280 ;;; | |
281 ;;;----------------------------------------------- | |
282 ;;; Change Log | |
283 ;;;----------------------------------------------- | |
284 ;;; From version 9 to 10 | |
285 ;;; - Allowance for non-integral *completion-version* nos. | |
286 ;;; - Fix cmpl-apply-as-top-level for keyboard macros | |
287 ;;; - Fix broken completion merging (in save-completions-to-file) | |
288 ;;; - More misc. fixes for version 19.0 of emacs | |
289 ;;; | |
290 ;;; From Version 8 to 9 | |
291 ;;; - Ported to version 19.0 of emacs (backcompatible with version 18) | |
292 ;;; - Added add-completions-from-tags-table (with thanks to eero@media-lab) | |
293 ;;; | |
294 ;;; From Version 7 to 8 | |
295 ;;; - Misc. changes to comments | |
296 ;;; - new completion key bindings: c-x o, M->, M-<, c-a, c-e | |
297 ;;; - cdabbrev now checks all the visible window buffers and the "other buffer" | |
298 ;;; - `%' is now a symbol character rather than a separator (except in C mode) | |
299 ;;; | |
300 ;;; From Version 6 to 7 | |
301 ;;; - Fixed bug with saving out .completion file the first time | |
302 ;;; | |
303 ;;; From Version 5 to 6 | |
304 ;;; - removed statistics recording | |
305 ;;; - reworked advise to handle autoloads | |
306 ;;; - Fixed fortran mode support | |
307 ;;; - Added new cursor motion triggers | |
308 ;;; | |
309 ;;; From Version 4 to 5 | |
310 ;;; - doesn't bother saving if nothing has changed | |
311 ;;; - auto-save if haven't used for a 1/2 hour | |
312 ;;; - save period extended to two weeks | |
313 ;;; - minor fix to capitalization code | |
314 ;;; - added *completion-auto-save-period* to variables recorded. | |
315 ;;; - added reenter protection to cmpl-record-statistics-filter | |
316 ;;; - added backup protection to save-completions-to-file (prevents | |
317 ;;; problems with disk full errors) | |
318 | |
795
c693d56ef36d
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
319 ;;; Code: |
c693d56ef36d
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
732
diff
changeset
|
320 |
56 | 321 ;;;--------------------------------------------------------------------------- |
322 ;;; User changeable parameters | |
323 ;;;--------------------------------------------------------------------------- | |
324 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
325 (defvar enable-completion t |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
326 "*Non-nil means enable recording and saving of completions. |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
327 If nil, no new words added to the database or saved to the init file.") |
56 | 328 |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
329 (defvar save-completions-flag t |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
330 "*Non-nil means save most-used completions when exiting Emacs. |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
331 See also `saved-completions-retention-time'.") |
56 | 332 |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
333 (defvar save-completions-file-name "~/.completions" |
56 | 334 "*The filename to save completions to.") |
335 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
336 (defvar save-completions-retention-time 336 |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
337 "*Discard a completion if unused for this many hours. |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
338 \(1 day = 24, 1 week = 168). If this is 0, non-permanent completions |
190 | 339 will not be saved unless these are used. Default is two weeks.") |
56 | 340 |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
341 (defvar completion-on-separator-character nil |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
342 "*Non-nil means separator characters mark previous word as used. |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
343 This means the word will be saved as a completion.") |
56 | 344 |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
345 (defvar completions-file-versions-kept kept-new-versions |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
346 "*Number of versions to keep for the saved completions file.") |
56 | 347 |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
348 (defvar completion-prompt-speed-threshold 4800 |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
349 "*Minimum output speed at which to display next potential completion.") |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
350 |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
351 (defvar completion-cdabbrev-prompt-flag nil |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
352 "*If non-nil, the next completion prompt does a cdabbrev search. |
56 | 353 This can be time consuming.") |
354 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
355 (defvar completion-search-distance 15000 |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
356 "*How far to search in the buffer when looking for completions. |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
357 In number of characters. If nil, search the whole buffer.") |
56 | 358 |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
359 (defvar completions-merging-modes '(lisp c) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
360 "*List of modes {`c' or `lisp'} for automatic completions merging. |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
361 Definitions from visited files which have these modes |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
362 are automatically added to the completion database.") |
56 | 363 |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
364 ;;;(defvar *record-cmpl-statistics-p* nil |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
365 ;;; "*If non-nil, record completion statistics.") |
56 | 366 |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
367 ;;;(defvar *completion-auto-save-period* 1800 |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
368 ;;; "*The period in seconds to wait for emacs to be idle before autosaving |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
369 ;;;the completions. Default is a 1/2 hour.") |
56 | 370 |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
371 (defconst completion-min-length nil ;; defined below in eval-when |
56 | 372 "*The minimum length of a stored completion. |
373 DON'T CHANGE WITHOUT RECOMPILING ! This is used by macros.") | |
374 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
375 (defconst completion-max-length nil ;; defined below in eval-when |
56 | 376 "*The maximum length of a stored completion. |
377 DON'T CHANGE WITHOUT RECOMPILING ! This is used by macros.") | |
378 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
379 (defconst completion-prefix-min-length nil ;; defined below in eval-when |
56 | 380 "The minimum length of a completion search string. |
381 DON'T CHANGE WITHOUT RECOMPILING ! This is used by macros.") | |
382 | |
383 (defmacro eval-when-compile-load-eval (&rest body) | |
384 ;; eval everything before expanding | |
385 (mapcar 'eval body) | |
190 | 386 (cons 'progn body)) |
56 | 387 |
388 (defun completion-eval-when () | |
389 (eval-when-compile-load-eval | |
390 ;; These vars. are defined at both compile and load time. | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
391 (setq completion-min-length 6) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
392 (setq completion-max-length 200) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
393 (setq completion-prefix-min-length 3))) |
56 | 394 |
395 (completion-eval-when) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
396 |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
397 ;; Need this file around too |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
398 (require 'cl) |
56 | 399 |
400 ;;;--------------------------------------------------------------------------- | |
401 ;;; Internal Variables | |
402 ;;;--------------------------------------------------------------------------- | |
403 | |
404 (defvar cmpl-initialized-p nil | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
405 "Set to t when the completion system is initialized. |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
406 Indicates that the old completion file has been read in.") |
56 | 407 |
408 (defvar cmpl-completions-accepted-p nil | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
409 "Set to t as soon as the first completion has been accepted. |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
410 Used to decide whether to save completions.") |
56 | 411 |
412 | |
413 ;;;--------------------------------------------------------------------------- | |
414 ;;; Low level tools | |
415 ;;;--------------------------------------------------------------------------- | |
416 | |
417 ;;;----------------------------------------------- | |
418 ;;; Misc. | |
419 ;;;----------------------------------------------- | |
420 | |
421 (defun minibuffer-window-selected-p () | |
422 "True iff the current window is the minibuffer." | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
423 (window-minibuffer-p (selected-window))) |
56 | 424 |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
425 (defmacro cmpl-read-time-eval (form) |
56 | 426 ;; Like the #. reader macro |
190 | 427 (eval form)) |
56 | 428 |
429 | |
430 ;;;----------------------------------------------- | |
431 ;;; String case coercion | |
432 ;;;----------------------------------------------- | |
433 | |
434 (defun cmpl-string-case-type (string) | |
435 "Returns :capitalized, :up, :down, :mixed, or :neither." | |
436 (let ((case-fold-search nil)) | |
437 (cond ((string-match "[a-z]" string) | |
438 (cond ((string-match "[A-Z]" string) | |
439 (cond ((and (> (length string) 1) | |
440 (null (string-match "[A-Z]" string 1))) | |
441 ':capitalized) | |
442 (t | |
443 ':mixed))) | |
444 (t ':down))) | |
445 (t | |
446 (cond ((string-match "[A-Z]" string) | |
447 ':up) | |
448 (t ':neither)))) | |
449 )) | |
450 | |
451 ;;; Tests - | |
452 ;;; (cmpl-string-case-type "123ABCDEF456") --> :up | |
453 ;;; (cmpl-string-case-type "123abcdef456") --> :down | |
454 ;;; (cmpl-string-case-type "123aBcDeF456") --> :mixed | |
455 ;;; (cmpl-string-case-type "123456") --> :neither | |
456 ;;; (cmpl-string-case-type "Abcde123") --> :capitalized | |
457 | |
458 (defun cmpl-coerce-string-case (string case-type) | |
459 (cond ((eq case-type ':down) (downcase string)) | |
460 ((eq case-type ':up) (upcase string)) | |
461 ((eq case-type ':capitalized) | |
462 (setq string (downcase string)) | |
463 (aset string 0 (logand ?\337 (aref string 0))) | |
464 string) | |
465 (t string) | |
466 )) | |
467 | |
468 (defun cmpl-merge-string-cases (string-to-coerce given-string) | |
469 (let ((string-case-type (cmpl-string-case-type string-to-coerce)) | |
470 ) | |
471 (cond ((memq string-case-type '(:down :up :capitalized)) | |
472 ;; Found string is in a standard case. Coerce to a type based on | |
473 ;; the given string | |
474 (cmpl-coerce-string-case string-to-coerce | |
475 (cmpl-string-case-type given-string)) | |
476 ) | |
477 (t | |
478 ;; If the found string is in some unusual case, just insert it | |
479 ;; as is | |
480 string-to-coerce) | |
481 ))) | |
482 | |
483 ;;; Tests - | |
484 ;;; (cmpl-merge-string-cases "AbCdEf456" "abc") --> AbCdEf456 | |
485 ;;; (cmpl-merge-string-cases "abcdef456" "ABC") --> ABCDEF456 | |
486 ;;; (cmpl-merge-string-cases "ABCDEF456" "Abc") --> Abcdef456 | |
487 ;;; (cmpl-merge-string-cases "ABCDEF456" "abc") --> abcdef456 | |
488 | |
489 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
490 (defun cmpl-hours-since-origin () |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
491 (let ((time (current-time))) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
492 (+ (* (/ (car time) 3600.0) (lsh 1 16)) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
493 (/ (nth 2 time) 3600.0)))) |
56 | 494 |
495 ;;;--------------------------------------------------------------------------- | |
496 ;;; "Symbol" parsing functions | |
497 ;;;--------------------------------------------------------------------------- | |
498 ;;; The functions symbol-before-point, symbol-under-point, etc. quickly return | |
499 ;;; an appropriate symbol string. The strategy is to temporarily change | |
500 ;;; the syntax table to enable fast symbol searching. There are three classes | |
501 ;;; of syntax in these "symbol" syntax tables :: | |
502 ;;; | |
503 ;;; syntax (?_) - "symbol" chars (e.g. alphanumerics) | |
504 ;;; syntax (?w) - symbol chars to ignore at end of words (e.g. period). | |
505 ;;; syntax (? ) - everything else | |
506 ;;; | |
507 ;;; Thus by judicious use of scan-sexps and forward-word, we can get | |
508 ;;; the word we want relatively fast and without consing. | |
509 ;;; | |
510 ;;; Why do we need a separate category for "symbol chars to ignore at ends" ? | |
511 ;;; For example, in LISP we want starting :'s trimmed | |
512 ;;; so keyword argument specifiers also define the keyword completion. And, | |
513 ;;; for example, in C we want `.' appearing in a structure ref. to | |
514 ;;; be kept intact in order to store the whole structure ref.; however, if | |
515 ;;; it appears at the end of a symbol it should be discarded because it is | |
516 ;;; probably used as a period. | |
517 | |
518 ;;; Here is the default completion syntax :: | |
519 ;;; Symbol chars :: A-Z a-z 0-9 @ / \ * + ~ $ < > % | |
520 ;;; Symbol chars to ignore at ends :: _ : . - | |
521 ;;; Separator chars. :: <tab> <space> ! ^ & ( ) = ` | { } [ ] ; " ' # | |
522 ;;; , ? <Everything else> | |
523 | |
524 ;;; Mode specific differences and notes :: | |
525 ;;; LISP diffs -> | |
526 ;;; Symbol chars :: ! & ? = ^ | |
527 ;;; | |
528 ;;; C diffs -> | |
529 ;;; Separator chars :: + * / : % | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3186
diff
changeset
|
530 ;;; A note on the hyphen (`-'). Perhaps the hyphen should also be a separator |
56 | 531 ;;; char., however, we wanted to have completion symbols include pointer |
532 ;;; references. For example, "foo->bar" is a symbol as far as completion is | |
533 ;;; concerned. | |
534 ;;; | |
535 ;;; FORTRAN diffs -> | |
536 ;;; Separator chars :: + - * / : | |
537 ;;; | |
538 ;;; Pathname diffs -> | |
539 ;;; Symbol chars :: . | |
540 ;;; Of course there is no pathname "mode" and in fact we have not implemented | |
541 ;;; this table. However, if there was such a mode, this is what it would look | |
542 ;;; like. | |
543 | |
544 ;;;----------------------------------------------- | |
545 ;;; Table definitions | |
546 ;;;----------------------------------------------- | |
547 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
548 (defun cmpl-make-standard-completion-syntax-table () |
56 | 549 (let ((table (make-vector 256 0)) ;; default syntax is whitespace |
550 ) | |
551 ;; alpha chars | |
552 (dotimes (i 26) | |
553 (modify-syntax-entry (+ ?a i) "_" table) | |
554 (modify-syntax-entry (+ ?A i) "_" table)) | |
555 ;; digit chars. | |
556 (dotimes (i 10) | |
557 (modify-syntax-entry (+ ?0 i) "_" table)) | |
558 ;; Other ones | |
559 (let ((symbol-chars '(?@ ?/ ?\\ ?* ?+ ?~ ?$ ?< ?> ?%)) | |
560 (symbol-chars-ignore '(?_ ?- ?: ?.)) | |
561 ) | |
562 (dolist (char symbol-chars) | |
563 (modify-syntax-entry char "_" table)) | |
564 (dolist (char symbol-chars-ignore) | |
565 (modify-syntax-entry char "w" table) | |
566 ) | |
567 ) | |
568 table)) | |
569 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
570 (defconst cmpl-standard-syntax-table (cmpl-make-standard-completion-syntax-table)) |
56 | 571 |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
572 (defun cmpl-make-lisp-completion-syntax-table () |
56 | 573 (let ((table (copy-syntax-table cmpl-standard-syntax-table)) |
574 (symbol-chars '(?! ?& ?? ?= ?^)) | |
575 ) | |
576 (dolist (char symbol-chars) | |
577 (modify-syntax-entry char "_" table)) | |
578 table)) | |
579 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
580 (defun cmpl-make-c-completion-syntax-table () |
56 | 581 (let ((table (copy-syntax-table cmpl-standard-syntax-table)) |
582 (separator-chars '(?+ ?* ?/ ?: ?%)) | |
583 ) | |
584 (dolist (char separator-chars) | |
585 (modify-syntax-entry char " " table)) | |
586 table)) | |
587 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
588 (defun cmpl-make-fortran-completion-syntax-table () |
56 | 589 (let ((table (copy-syntax-table cmpl-standard-syntax-table)) |
590 (separator-chars '(?+ ?- ?* ?/ ?:)) | |
591 ) | |
592 (dolist (char separator-chars) | |
593 (modify-syntax-entry char " " table)) | |
594 table)) | |
595 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
596 (defconst cmpl-lisp-syntax-table (cmpl-make-lisp-completion-syntax-table)) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
597 (defconst cmpl-c-syntax-table (cmpl-make-c-completion-syntax-table)) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
598 (defconst cmpl-fortran-syntax-table (cmpl-make-fortran-completion-syntax-table)) |
56 | 599 |
600 (defvar cmpl-syntax-table cmpl-standard-syntax-table | |
601 "This variable holds the current completion syntax table.") | |
602 (make-variable-buffer-local 'cmpl-syntax-table) | |
603 | |
604 ;;;----------------------------------------------- | |
605 ;;; Installing the appropriate mode tables | |
606 ;;;----------------------------------------------- | |
607 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
608 (add-hook 'lisp-mode-hook |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
609 '(lambda () |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
610 (setq cmpl-syntax-table cmpl-lisp-syntax-table))) |
56 | 611 |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
612 (add-hook 'c-mode-hook |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
613 '(lambda () |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
614 (setq cmpl-syntax-table cmpl-c-syntax-table))) |
56 | 615 |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
616 (add-hook 'fortran-mode-hook |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
617 '(lambda () |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
618 (setq cmpl-syntax-table cmpl-fortran-syntax-table) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
619 (completion-setup-fortran-mode))) |
56 | 620 |
621 ;;;----------------------------------------------- | |
622 ;;; Symbol functions | |
623 ;;;----------------------------------------------- | |
624 (defvar cmpl-symbol-start nil | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
625 "Holds first character of symbol, after any completion symbol function.") |
56 | 626 (defvar cmpl-symbol-end nil |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
627 "Holds last character of symbol, after any completion symbol function.") |
56 | 628 ;;; These are temp. vars. we use to avoid using let. |
629 ;;; Why ? Small speed improvement. | |
630 (defvar cmpl-saved-syntax nil) | |
631 (defvar cmpl-saved-point nil) | |
632 | |
633 (defun symbol-under-point () | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
634 "Returns the symbol that the point is currently on. |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
635 But only if it is longer than `completion-min-length'." |
56 | 636 (setq cmpl-saved-syntax (syntax-table)) |
637 (set-syntax-table cmpl-syntax-table) | |
638 (cond | |
639 ;; Cursor is on following-char and after preceding-char | |
640 ((memq (char-syntax (following-char)) '(?w ?_)) | |
641 (setq cmpl-saved-point (point) | |
642 cmpl-symbol-start (scan-sexps (1+ cmpl-saved-point) -1) | |
643 cmpl-symbol-end (scan-sexps cmpl-saved-point 1)) | |
644 ;; remove chars to ignore at the start | |
645 (cond ((= (char-syntax (char-after cmpl-symbol-start)) ?w) | |
646 (goto-char cmpl-symbol-start) | |
647 (forward-word 1) | |
648 (setq cmpl-symbol-start (point)) | |
649 (goto-char cmpl-saved-point) | |
650 )) | |
651 ;; remove chars to ignore at the end | |
652 (cond ((= (char-syntax (char-after (1- cmpl-symbol-end))) ?w) | |
653 (goto-char cmpl-symbol-end) | |
654 (forward-word -1) | |
655 (setq cmpl-symbol-end (point)) | |
656 (goto-char cmpl-saved-point) | |
657 )) | |
658 ;; restore state | |
659 (set-syntax-table cmpl-saved-syntax) | |
660 ;; Return completion if the length is reasonable | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
661 (if (and (<= (cmpl-read-time-eval completion-min-length) |
56 | 662 (- cmpl-symbol-end cmpl-symbol-start)) |
663 (<= (- cmpl-symbol-end cmpl-symbol-start) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
664 (cmpl-read-time-eval completion-max-length))) |
56 | 665 (buffer-substring cmpl-symbol-start cmpl-symbol-end)) |
666 ) | |
667 (t | |
668 ;; restore table if no symbol | |
669 (set-syntax-table cmpl-saved-syntax) | |
670 nil) | |
671 )) | |
672 | |
673 ;;; tests for symbol-under-point | |
674 ;;; `^' indicates cursor pos. where value is returned | |
675 ;;; simple-word-test | |
676 ;;; ^^^^^^^^^^^^^^^^ --> simple-word-test | |
677 ;;; _harder_word_test_ | |
678 ;;; ^^^^^^^^^^^^^^^^^^ --> harder_word_test | |
679 ;;; .___.______. | |
680 ;;; --> nil | |
681 ;;; /foo/bar/quux.hello | |
682 ;;; ^^^^^^^^^^^^^^^^^^^ --> /foo/bar/quux.hello | |
683 ;;; | |
684 | |
685 (defun symbol-before-point () | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
686 "Returns a string of the symbol immediately before point. |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
687 Returns nil if there isn't one longer than `completion-min-length'." |
56 | 688 ;; This is called when a word separator is typed so it must be FAST ! |
689 (setq cmpl-saved-syntax (syntax-table)) | |
690 (set-syntax-table cmpl-syntax-table) | |
691 ;; Cursor is on following-char and after preceding-char | |
692 (cond ((= (setq cmpl-preceding-syntax (char-syntax (preceding-char))) ?_) | |
693 ;; No chars. to ignore at end | |
694 (setq cmpl-symbol-end (point) | |
695 cmpl-symbol-start (scan-sexps (1+ cmpl-symbol-end) -1) | |
696 ) | |
697 ;; remove chars to ignore at the start | |
698 (cond ((= (char-syntax (char-after cmpl-symbol-start)) ?w) | |
699 (goto-char cmpl-symbol-start) | |
700 (forward-word 1) | |
701 (setq cmpl-symbol-start (point)) | |
702 (goto-char cmpl-symbol-end) | |
703 )) | |
704 ;; restore state | |
705 (set-syntax-table cmpl-saved-syntax) | |
706 ;; return value if long enough | |
707 (if (>= cmpl-symbol-end | |
708 (+ cmpl-symbol-start | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
709 (cmpl-read-time-eval completion-min-length))) |
56 | 710 (buffer-substring cmpl-symbol-start cmpl-symbol-end)) |
711 ) | |
712 ((= cmpl-preceding-syntax ?w) | |
713 ;; chars to ignore at end | |
714 (setq cmpl-saved-point (point) | |
715 cmpl-symbol-start (scan-sexps (1+ cmpl-saved-point) -1)) | |
716 ;; take off chars. from end | |
717 (forward-word -1) | |
718 (setq cmpl-symbol-end (point)) | |
719 ;; remove chars to ignore at the start | |
720 (cond ((= (char-syntax (char-after cmpl-symbol-start)) ?w) | |
721 (goto-char cmpl-symbol-start) | |
722 (forward-word 1) | |
723 (setq cmpl-symbol-start (point)) | |
724 )) | |
725 ;; restore state | |
726 (goto-char cmpl-saved-point) | |
727 (set-syntax-table cmpl-saved-syntax) | |
728 ;; Return completion if the length is reasonable | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
729 (if (and (<= (cmpl-read-time-eval completion-min-length) |
56 | 730 (- cmpl-symbol-end cmpl-symbol-start)) |
731 (<= (- cmpl-symbol-end cmpl-symbol-start) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
732 (cmpl-read-time-eval completion-max-length))) |
56 | 733 (buffer-substring cmpl-symbol-start cmpl-symbol-end)) |
734 ) | |
735 (t | |
736 ;; restore table if no symbol | |
737 (set-syntax-table cmpl-saved-syntax) | |
738 nil) | |
739 )) | |
740 | |
741 ;;; tests for symbol-before-point | |
742 ;;; `^' indicates cursor pos. where value is returned | |
743 ;;; simple-word-test | |
744 ;;; ^ --> nil | |
745 ;;; ^ --> nil | |
746 ;;; ^ --> simple-w | |
747 ;;; ^ --> simple-word-test | |
748 ;;; _harder_word_test_ | |
749 ;;; ^ --> harder_word_test | |
750 ;;; ^ --> harder_word_test | |
751 ;;; ^ --> harder | |
752 ;;; .___.... | |
753 ;;; --> nil | |
754 | |
755 (defun symbol-under-or-before-point () | |
756 ;;; This could be made slightly faster but it is better to avoid | |
757 ;;; copying all the code. | |
758 ;;; However, it is only used by the completion string prompter. | |
759 ;;; If it comes into common use, it could be rewritten. | |
760 (setq cmpl-saved-syntax (syntax-table)) | |
761 (set-syntax-table cmpl-syntax-table) | |
762 (cond ((memq (char-syntax (following-char)) '(?w ?_)) | |
763 (set-syntax-table cmpl-saved-syntax) | |
764 (symbol-under-point)) | |
765 (t | |
766 (set-syntax-table cmpl-saved-syntax) | |
767 (symbol-before-point)) | |
768 )) | |
769 | |
770 | |
771 (defun symbol-before-point-for-complete () | |
772 ;; "Returns a string of the symbol immediately before point | |
773 ;; or nil if there isn't one. Like symbol-before-point but doesn't trim the | |
774 ;; end chars." | |
775 ;; Cursor is on following-char and after preceding-char | |
776 (setq cmpl-saved-syntax (syntax-table)) | |
777 (set-syntax-table cmpl-syntax-table) | |
778 (cond ((memq (setq cmpl-preceding-syntax (char-syntax (preceding-char))) | |
779 '(?_ ?w)) | |
780 (setq cmpl-symbol-end (point) | |
781 cmpl-symbol-start (scan-sexps (1+ cmpl-symbol-end) -1) | |
782 ) | |
783 ;; remove chars to ignore at the start | |
784 (cond ((= (char-syntax (char-after cmpl-symbol-start)) ?w) | |
785 (goto-char cmpl-symbol-start) | |
786 (forward-word 1) | |
787 (setq cmpl-symbol-start (point)) | |
788 (goto-char cmpl-symbol-end) | |
789 )) | |
790 ;; restore state | |
791 (set-syntax-table cmpl-saved-syntax) | |
792 ;; Return completion if the length is reasonable | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
793 (if (and (<= (cmpl-read-time-eval |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
794 completion-prefix-min-length) |
56 | 795 (- cmpl-symbol-end cmpl-symbol-start)) |
796 (<= (- cmpl-symbol-end cmpl-symbol-start) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
797 (cmpl-read-time-eval completion-max-length))) |
56 | 798 (buffer-substring cmpl-symbol-start cmpl-symbol-end)) |
799 ) | |
800 (t | |
801 ;; restore table if no symbol | |
802 (set-syntax-table cmpl-saved-syntax) | |
803 nil) | |
804 )) | |
805 | |
806 ;;; tests for symbol-before-point-for-complete | |
807 ;;; `^' indicates cursor pos. where value is returned | |
808 ;;; simple-word-test | |
809 ;;; ^ --> nil | |
810 ;;; ^ --> nil | |
811 ;;; ^ --> simple-w | |
812 ;;; ^ --> simple-word-test | |
813 ;;; _harder_word_test_ | |
814 ;;; ^ --> harder_word_test | |
815 ;;; ^ --> harder_word_test_ | |
816 ;;; ^ --> harder_ | |
817 ;;; .___.... | |
818 ;;; --> nil | |
819 | |
820 | |
821 | |
822 ;;;--------------------------------------------------------------------------- | |
823 ;;; Statistics Recording | |
824 ;;;--------------------------------------------------------------------------- | |
825 | |
826 ;;; Note that the guts of this has been turned off. The guts | |
827 ;;; are in completion-stats.el. | |
828 | |
829 ;;;----------------------------------------------- | |
830 ;;; Conditionalizing code on *record-cmpl-statistics-p* | |
831 ;;;----------------------------------------------- | |
832 ;;; All statistics code outside this block should use this | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
833 (defmacro cmpl-statistics-block (&rest body)) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
834 ;;; "Only executes body if we are recording statistics." |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
835 ;;; (list 'cond |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
836 ;;; (list* '*record-cmpl-statistics-p* body) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
837 ;;; )) |
56 | 838 |
839 ;;;----------------------------------------------- | |
840 ;;; Completion Sources | |
841 ;;;----------------------------------------------- | |
842 | |
843 ;; ID numbers | |
844 (defconst cmpl-source-unknown 0) | |
845 (defconst cmpl-source-init-file 1) | |
846 (defconst cmpl-source-file-parsing 2) | |
847 (defconst cmpl-source-separator 3) | |
848 (defconst cmpl-source-cursor-moves 4) | |
849 (defconst cmpl-source-interactive 5) | |
850 (defconst cmpl-source-cdabbrev 6) | |
851 (defconst num-cmpl-sources 7) | |
852 (defvar current-completion-source cmpl-source-unknown) | |
853 | |
854 | |
855 | |
856 ;;;--------------------------------------------------------------------------- | |
857 ;;; Completion Method #2: dabbrev-expand style | |
858 ;;;--------------------------------------------------------------------------- | |
859 ;;; | |
860 ;;; This method is used if there are no useful stored completions. It is | |
861 ;;; based on dabbrev-expand with these differences : | |
862 ;;; 1) Faster (we don't use regexps) | |
863 ;;; 2) case coercion handled correctly | |
864 ;;; This is called cdabbrev to differentiate it. | |
865 ;;; We simply search backwards through the file looking for words which | |
866 ;;; start with the same letters we are trying to complete. | |
867 ;;; | |
868 | |
869 (defvar cdabbrev-completions-tried nil) | |
870 ;;; "A list of all the cdabbrev completions since the last reset.") | |
871 | |
872 (defvar cdabbrev-current-point 0) | |
873 ;;; "The current point position the cdabbrev search is at.") | |
874 | |
875 (defvar cdabbrev-current-window nil) | |
876 ;;; "The current window we are looking for cdabbrevs in. T if looking in | |
877 ;;; (other-buffer), NIL if no more cdabbrevs.") | |
878 | |
879 (defvar cdabbrev-wrapped-p nil) | |
880 ;;; "T if the cdabbrev search has wrapped around the file.") | |
881 | |
882 (defvar cdabbrev-abbrev-string "") | |
883 (defvar cdabbrev-start-point 0) | |
884 | |
885 ;;; Test strings for cdabbrev | |
886 ;;; cdat-upcase ;;same namestring | |
887 ;;; CDAT-UPCASE ;;ok | |
888 ;;; cdat2 ;;too short | |
889 ;;; cdat-1-2-3-4 ;;ok | |
890 ;;; a-cdat-1 ;;doesn't start correctly | |
891 ;;; cdat-simple ;;ok | |
892 | |
893 | |
894 (defun reset-cdabbrev (abbrev-string &optional initial-completions-tried) | |
895 "Resets the cdabbrev search to search for abbrev-string. | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
896 INITIAL-COMPLETIONS-TRIED is a list of downcased strings to ignore |
56 | 897 during the search." |
898 (setq cdabbrev-abbrev-string abbrev-string | |
899 cdabbrev-completions-tried | |
900 (cons (downcase abbrev-string) initial-completions-tried) | |
901 ) | |
902 (reset-cdabbrev-window t) | |
903 ) | |
904 | |
905 (defun set-cdabbrev-buffer () | |
906 ;; cdabbrev-current-window must not be NIL | |
907 (set-buffer (if (eq cdabbrev-current-window t) | |
908 (other-buffer) | |
909 (window-buffer cdabbrev-current-window))) | |
910 ) | |
911 | |
912 | |
913 (defun reset-cdabbrev-window (&optional initializep) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
914 "Resets the cdabbrev search to search for abbrev-string." |
56 | 915 ;; Set the window |
916 (cond (initializep | |
917 (setq cdabbrev-current-window (selected-window)) | |
918 ) | |
919 ((eq cdabbrev-current-window t) | |
920 ;; Everything has failed | |
921 (setq cdabbrev-current-window nil)) | |
922 (cdabbrev-current-window | |
923 (setq cdabbrev-current-window (next-window cdabbrev-current-window)) | |
924 (if (eq cdabbrev-current-window (selected-window)) | |
925 ;; No more windows, try other buffer. | |
926 (setq cdabbrev-current-window t))) | |
927 ) | |
928 (when cdabbrev-current-window | |
929 (save-excursion | |
930 (set-cdabbrev-buffer) | |
931 (setq cdabbrev-current-point (point) | |
932 cdabbrev-start-point cdabbrev-current-point | |
933 cdabbrev-stop-point | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
934 (if completion-search-distance |
56 | 935 (max (point-min) |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
936 (- cdabbrev-start-point completion-search-distance)) |
56 | 937 (point-min)) |
938 cdabbrev-wrapped-p nil) | |
939 ))) | |
940 | |
941 (defun next-cdabbrev () | |
942 "Return the next possible cdabbrev expansion or nil if there isn't one. | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
943 `reset-cdabbrev' must've been called already. |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
944 This is sensitive to `case-fold-search'." |
56 | 945 ;; note that case-fold-search affects the behavior of this function |
946 ;; Bug: won't pick up an expansion that starts at the top of buffer | |
947 (when cdabbrev-current-window | |
948 (let (saved-point | |
949 saved-syntax | |
950 (expansion nil) | |
951 downcase-expansion tried-list syntax saved-point-2) | |
952 (save-excursion | |
953 (unwind-protect | |
954 (progn | |
955 ;; Switch to current completion buffer | |
956 (set-cdabbrev-buffer) | |
957 ;; Save current buffer state | |
958 (setq saved-point (point) | |
959 saved-syntax (syntax-table)) | |
960 ;; Restore completion state | |
961 (set-syntax-table cmpl-syntax-table) | |
962 (goto-char cdabbrev-current-point) | |
963 ;; Loop looking for completions | |
964 (while | |
965 ;; This code returns t if it should loop again | |
966 (cond | |
967 (;; search for the string | |
968 (search-backward cdabbrev-abbrev-string cdabbrev-stop-point t) | |
969 ;; return nil if the completion is valid | |
970 (not | |
971 (and | |
972 ;; does it start with a separator char ? | |
973 (or (= (setq syntax (char-syntax (preceding-char))) ? ) | |
974 (and (= syntax ?w) | |
975 ;; symbol char to ignore at end. Are we at end ? | |
976 (progn | |
977 (setq saved-point-2 (point)) | |
978 (forward-word -1) | |
979 (prog1 | |
980 (= (char-syntax (preceding-char)) ? ) | |
981 (goto-char saved-point-2) | |
982 )))) | |
983 ;; is the symbol long enough ? | |
984 (setq expansion (symbol-under-point)) | |
985 ;; have we not tried this one before | |
986 (progn | |
987 ;; See if we've already used it | |
988 (setq tried-list cdabbrev-completions-tried | |
989 downcase-expansion (downcase expansion)) | |
990 (while (and tried-list | |
991 (not (string-equal downcase-expansion | |
992 (car tried-list)))) | |
993 ;; Already tried, don't choose this one | |
994 (setq tried-list (cdr tried-list)) | |
995 ) | |
996 ;; at this point tried-list will be nil if this | |
997 ;; expansion has not yet been tried | |
998 (if tried-list | |
999 (setq expansion nil) | |
1000 t) | |
1001 )))) | |
1002 ;; search failed | |
1003 (cdabbrev-wrapped-p | |
1004 ;; If already wrapped, then we've failed completely | |
1005 nil) | |
1006 (t | |
1007 ;; need to wrap | |
1008 (goto-char (setq cdabbrev-current-point | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1009 (if completion-search-distance |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1010 (min (point-max) (+ cdabbrev-start-point completion-search-distance)) |
56 | 1011 (point-max)))) |
1012 | |
1013 (setq cdabbrev-wrapped-p t)) | |
1014 )) | |
1015 ;; end of while loop | |
1016 (cond (expansion | |
1017 ;; successful | |
1018 (setq cdabbrev-completions-tried | |
1019 (cons downcase-expansion cdabbrev-completions-tried) | |
1020 cdabbrev-current-point (point)))) | |
1021 ) | |
1022 (set-syntax-table saved-syntax) | |
1023 (goto-char saved-point) | |
1024 )) | |
1025 ;; If no expansion, go to next window | |
1026 (cond (expansion) | |
1027 (t (reset-cdabbrev-window) | |
1028 (next-cdabbrev))) | |
1029 ))) | |
1030 | |
1031 ;;; The following must be eval'd in the minibuffer :: | |
1032 ;;; (reset-cdabbrev "cdat") | |
1033 ;;; (next-cdabbrev) --> "cdat-simple" | |
1034 ;;; (next-cdabbrev) --> "cdat-1-2-3-4" | |
1035 ;;; (next-cdabbrev) --> "CDAT-UPCASE" | |
1036 ;;; (next-cdabbrev) --> "cdat-wrapping" | |
1037 ;;; (next-cdabbrev) --> "cdat_start_sym" | |
1038 ;;; (next-cdabbrev) --> nil | |
1039 ;;; (next-cdabbrev) --> nil | |
1040 ;;; (next-cdabbrev) --> nil | |
1041 | |
1042 ;;; _cdat_start_sym | |
1043 ;;; cdat-wrapping | |
1044 | |
1045 | |
1046 ;;;--------------------------------------------------------------------------- | |
1047 ;;; Completion Database | |
1048 ;;;--------------------------------------------------------------------------- | |
1049 | |
1050 ;;; We use two storage modes for the two search types :: | |
1051 ;;; 1) Prefix {cmpl-prefix-obarray} for looking up possible completions | |
1052 ;;; Used by search-completion-next | |
1053 ;;; the value of the symbol is nil or a cons of head and tail pointers | |
1054 ;;; 2) Interning {cmpl-obarray} to see if it's in the database | |
1055 ;;; Used by find-exact-completion, completion-in-database-p | |
1056 ;;; The value of the symbol is the completion entry | |
1057 | |
1058 ;;; bad things may happen if this length is changed due to the way | |
1059 ;;; GNU implements obarrays | |
1060 (defconst cmpl-obarray-length 511) | |
1061 | |
1062 (defvar cmpl-prefix-obarray (make-vector cmpl-obarray-length 0) | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3186
diff
changeset
|
1063 "An obarray used to store the downcased completion prefixes. |
56 | 1064 Each symbol is bound to a list of completion entries.") |
1065 | |
1066 (defvar cmpl-obarray (make-vector cmpl-obarray-length 0) | |
1067 "An obarray used to store the downcased completions. | |
1068 Each symbol is bound to a single completion entry.") | |
1069 | |
1070 ;;;----------------------------------------------- | |
1071 ;;; Completion Entry Structure Definition | |
1072 ;;;----------------------------------------------- | |
1073 | |
1074 ;;; A completion entry is a LIST of string, prefix-symbol num-uses, and | |
1075 ;;; last-use-time (the time the completion was last used) | |
1076 ;;; last-use-time is T if the string should be kept permanently | |
1077 ;;; num-uses is incremented everytime the completion is used. | |
1078 | |
1079 ;;; We chose lists because (car foo) is faster than (aref foo 0) and the | |
1080 ;;; creation time is about the same. | |
1081 | |
1082 ;;; READER MACROS | |
1083 | |
1084 (defmacro completion-string (completion-entry) | |
1085 (list 'car completion-entry)) | |
1086 | |
1087 (defmacro completion-num-uses (completion-entry) | |
1088 ;; "The number of times it has used. Used to decide whether to save | |
1089 ;; it." | |
1090 (list 'car (list 'cdr completion-entry))) | |
1091 | |
1092 (defmacro completion-last-use-time (completion-entry) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1093 ;; "The time it was last used. In hours since origin. Used to decide |
56 | 1094 ;; whether to save it. T if one should always save it." |
1095 (list 'nth 2 completion-entry)) | |
1096 | |
1097 (defmacro completion-source (completion-entry) | |
1098 (list 'nth 3 completion-entry)) | |
1099 | |
1100 ;;; WRITER MACROS | |
1101 (defmacro set-completion-string (completion-entry string) | |
1102 (list 'setcar completion-entry string)) | |
1103 | |
1104 (defmacro set-completion-num-uses (completion-entry num-uses) | |
1105 (list 'setcar (list 'cdr completion-entry) num-uses)) | |
1106 | |
1107 (defmacro set-completion-last-use-time (completion-entry last-use-time) | |
1108 (list 'setcar (list 'cdr (list 'cdr completion-entry)) last-use-time)) | |
1109 | |
1110 ;;; CONSTRUCTOR | |
1111 (defun make-completion (string) | |
1112 "Returns a list of a completion entry." | |
1113 (list (list string 0 nil current-completion-source))) | |
1114 | |
1115 ;; Obsolete | |
1116 ;;(defmacro cmpl-prefix-entry-symbol (completion-entry) | |
1117 ;; (list 'car (list 'cdr completion-entry))) | |
1118 | |
1119 | |
1120 | |
1121 ;;;----------------------------------------------- | |
1122 ;;; Prefix symbol entry definition | |
1123 ;;;----------------------------------------------- | |
1124 ;;; A cons of (head . tail) | |
1125 | |
1126 ;;; READER Macros | |
1127 | |
1128 (defmacro cmpl-prefix-entry-head (prefix-entry) | |
1129 (list 'car prefix-entry)) | |
1130 | |
1131 (defmacro cmpl-prefix-entry-tail (prefix-entry) | |
1132 (list 'cdr prefix-entry)) | |
1133 | |
1134 ;;; WRITER Macros | |
1135 | |
1136 (defmacro set-cmpl-prefix-entry-head (prefix-entry new-head) | |
1137 (list 'setcar prefix-entry new-head)) | |
1138 | |
1139 (defmacro set-cmpl-prefix-entry-tail (prefix-entry new-tail) | |
1140 (list 'setcdr prefix-entry new-tail)) | |
1141 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3186
diff
changeset
|
1142 ;;; Constructor |
56 | 1143 |
1144 (defun make-cmpl-prefix-entry (completion-entry-list) | |
1145 "Makes a new prefix entry containing only completion-entry." | |
1146 (cons completion-entry-list completion-entry-list)) | |
1147 | |
1148 ;;;----------------------------------------------- | |
1149 ;;; Completion Database - Utilities | |
1150 ;;;----------------------------------------------- | |
1151 | |
1152 (defun clear-all-completions () | |
1153 "Initializes the completion storage. All existing completions are lost." | |
1154 (interactive) | |
1155 (setq cmpl-prefix-obarray (make-vector cmpl-obarray-length 0)) | |
1156 (setq cmpl-obarray (make-vector cmpl-obarray-length 0)) | |
1157 (cmpl-statistics-block | |
1158 (record-clear-all-completions)) | |
1159 ) | |
1160 | |
1161 (defun list-all-completions () | |
1162 "Returns a list of all the known completion entries." | |
1163 (let ((return-completions nil)) | |
1164 (mapatoms 'list-all-completions-1 cmpl-prefix-obarray) | |
1165 return-completions)) | |
1166 | |
1167 (defun list-all-completions-1 (prefix-symbol) | |
1168 (if (boundp prefix-symbol) | |
1169 (setq return-completions | |
1170 (append (cmpl-prefix-entry-head (symbol-value prefix-symbol)) | |
1171 return-completions)))) | |
1172 | |
1173 (defun list-all-completions-by-hash-bucket () | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1174 "Return list of lists of known completion entries, organized by hash bucket." |
56 | 1175 (let ((return-completions nil)) |
1176 (mapatoms 'list-all-completions-by-hash-bucket-1 cmpl-prefix-obarray) | |
1177 return-completions)) | |
1178 | |
1179 (defun list-all-completions-by-hash-bucket-1 (prefix-symbol) | |
1180 (if (boundp prefix-symbol) | |
1181 (setq return-completions | |
1182 (cons (cmpl-prefix-entry-head (symbol-value prefix-symbol)) | |
1183 return-completions)))) | |
1184 | |
1185 | |
1186 ;;;----------------------------------------------- | |
1187 ;;; Updating the database | |
1188 ;;;----------------------------------------------- | |
1189 ;;; | |
1190 ;;; These are the internal functions used to update the datebase | |
1191 ;;; | |
1192 ;;; | |
1193 (defvar completion-to-accept nil) | |
1194 ;;"Set to a string that is pending its acceptance." | |
1195 ;; this checked by the top level reading functions | |
1196 | |
1197 (defvar cmpl-db-downcase-string nil) | |
1198 ;; "Setup by find-exact-completion, etc. The given string, downcased." | |
1199 (defvar cmpl-db-symbol nil) | |
1200 ;; "The interned symbol corresponding to cmpl-db-downcase-string. | |
1201 ;; Set up by cmpl-db-symbol." | |
1202 (defvar cmpl-db-prefix-symbol nil) | |
1203 ;; "The interned prefix symbol corresponding to cmpl-db-downcase-string." | |
1204 (defvar cmpl-db-entry nil) | |
1205 (defvar cmpl-db-debug-p nil | |
1206 "Set to T if you want to debug the database.") | |
1207 | |
1208 ;;; READS | |
1209 (defun find-exact-completion (string) | |
1210 "Returns the completion entry for string or nil. | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1211 Sets up `cmpl-db-downcase-string' and `cmpl-db-symbol'." |
56 | 1212 (and (boundp (setq cmpl-db-symbol |
1213 (intern (setq cmpl-db-downcase-string (downcase string)) | |
1214 cmpl-obarray))) | |
1215 (symbol-value cmpl-db-symbol) | |
1216 )) | |
1217 | |
1218 (defun find-cmpl-prefix-entry (prefix-string) | |
1356 | 1219 "Returns the prefix entry for string. |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1220 Sets `cmpl-db-prefix-symbol'. |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1221 Prefix-string must be exactly `completion-prefix-min-length' long |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1222 and downcased. Sets up `cmpl-db-prefix-symbol'." |
56 | 1223 (and (boundp (setq cmpl-db-prefix-symbol |
1224 (intern prefix-string cmpl-prefix-obarray))) | |
1225 (symbol-value cmpl-db-prefix-symbol))) | |
1226 | |
1227 (defvar inside-locate-completion-entry nil) | |
1228 ;; used to trap lossage in silent error correction | |
1229 | |
1230 (defun locate-completion-entry (completion-entry prefix-entry) | |
1356 | 1231 "Locates the completion entry. |
1232 Returns a pointer to the element before the completion entry or nil if | |
1233 the completion entry is at the head. | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1234 Must be called after `find-exact-completion'." |
56 | 1235 (let ((prefix-list (cmpl-prefix-entry-head prefix-entry)) |
1236 next-prefix-list | |
1237 ) | |
1238 (cond | |
1239 ((not (eq (car prefix-list) completion-entry)) | |
1240 ;; not already at head | |
1241 (while (and prefix-list | |
1242 (not (eq completion-entry | |
1243 (car (setq next-prefix-list (cdr prefix-list))) | |
1244 ))) | |
1245 (setq prefix-list next-prefix-list)) | |
1246 (cond (;; found | |
1247 prefix-list) | |
1248 ;; Didn't find it. Database is messed up. | |
1249 (cmpl-db-debug-p | |
1250 ;; not found, error if debug mode | |
1251 (error "Completion entry exists but not on prefix list - %s" | |
1252 string)) | |
1253 (inside-locate-completion-entry | |
1254 ;; recursive error: really scrod | |
1255 (locate-completion-db-error)) | |
1256 (t | |
1257 ;; Patch out | |
1258 (set cmpl-db-symbol nil) | |
1259 ;; Retry | |
1260 (locate-completion-entry-retry completion-entry) | |
1261 )))))) | |
1262 | |
1263 (defun locate-completion-entry-retry (old-entry) | |
1264 (let ((inside-locate-completion-entry t)) | |
1265 (add-completion (completion-string old-entry) | |
1266 (completion-num-uses old-entry) | |
1267 (completion-last-use-time old-entry)) | |
1268 (let ((cmpl-entry (find-exact-completion (completion-string old-entry))) | |
1269 (pref-entry | |
1270 (if cmpl-entry | |
1271 (find-cmpl-prefix-entry | |
1272 (substring cmpl-db-downcase-string | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1273 0 completion-prefix-min-length)))) |
56 | 1274 ) |
1275 (if (and cmpl-entry pref-entry) | |
1276 ;; try again | |
1277 (locate-completion-entry cmpl-entry pref-entry) | |
1278 ;; still losing | |
1279 (locate-completion-db-error)) | |
1280 ))) | |
1281 | |
1282 (defun locate-completion-db-error () | |
1283 ;; recursive error: really scrod | |
1284 (error "Completion database corrupted. Try M-x clear-all-completions. Send bug report.") | |
1285 ) | |
1286 | |
1287 ;;; WRITES | |
1288 (defun add-completion-to-tail-if-new (string) | |
1356 | 1289 "If STRING is not in the database add it to appropriate prefix list. |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3186
diff
changeset
|
1290 STRING is added to the end of the appropriate prefix list with |
1356 | 1291 num-uses = 0. The database is unchanged if it is there. STRING must be |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1292 longer than `completion-prefix-min-length'. |
56 | 1293 This must be very fast. |
1294 Returns the completion entry." | |
1295 (or (find-exact-completion string) | |
1296 ;; not there | |
1297 (let (;; create an entry | |
1298 (entry (make-completion string)) | |
1299 ;; setup the prefix | |
1300 (prefix-entry (find-cmpl-prefix-entry | |
1301 (substring cmpl-db-downcase-string 0 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1302 (cmpl-read-time-eval |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1303 completion-prefix-min-length)))) |
56 | 1304 ) |
1305 ;; The next two forms should happen as a unit (atomically) but | |
1306 ;; no fatal errors should result if that is not the case. | |
1307 (cond (prefix-entry | |
1308 ;; These two should be atomic, but nothing fatal will happen | |
1309 ;; if they're not. | |
1310 (setcdr (cmpl-prefix-entry-tail prefix-entry) entry) | |
1311 (set-cmpl-prefix-entry-tail prefix-entry entry)) | |
1312 (t | |
1313 (set cmpl-db-prefix-symbol (make-cmpl-prefix-entry entry)) | |
1314 )) | |
1315 ;; statistics | |
1316 (cmpl-statistics-block | |
1317 (note-added-completion)) | |
1318 ;; set symbol | |
1319 (set cmpl-db-symbol (car entry)) | |
1320 ))) | |
1321 | |
1322 (defun add-completion-to-head (string) | |
1356 | 1323 "If STRING is not in the database, add it to prefix list. |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3186
diff
changeset
|
1324 STRING is added to the head of the appropriate prefix list. Otherwise |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1325 it is moved to the head of the list. |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1326 STRING must be longer than `completion-prefix-min-length'. |
56 | 1327 Updates the saved string with the supplied string. |
1328 This must be very fast. | |
1329 Returns the completion entry." | |
1330 ;; Handle pending acceptance | |
1331 (if completion-to-accept (accept-completion)) | |
1332 ;; test if already in database | |
1333 (if (setq cmpl-db-entry (find-exact-completion string)) | |
1334 ;; found | |
1335 (let* ((prefix-entry (find-cmpl-prefix-entry | |
1336 (substring cmpl-db-downcase-string 0 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1337 (cmpl-read-time-eval |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1338 completion-prefix-min-length)))) |
56 | 1339 (splice-ptr (locate-completion-entry cmpl-db-entry prefix-entry)) |
1340 (cmpl-ptr (cdr splice-ptr)) | |
1341 ) | |
1342 ;; update entry | |
1343 (set-completion-string cmpl-db-entry string) | |
1344 ;; move to head (if necessary) | |
1345 (cond (splice-ptr | |
1346 ;; These should all execute atomically but it is not fatal if | |
1347 ;; they don't. | |
1348 ;; splice it out | |
1349 (or (setcdr splice-ptr (cdr cmpl-ptr)) | |
1350 ;; fix up tail if necessary | |
1351 (set-cmpl-prefix-entry-tail prefix-entry splice-ptr)) | |
1352 ;; splice in at head | |
1353 (setcdr cmpl-ptr (cmpl-prefix-entry-head prefix-entry)) | |
1354 (set-cmpl-prefix-entry-head prefix-entry cmpl-ptr) | |
1355 )) | |
1356 cmpl-db-entry) | |
1357 ;; not there | |
1358 (let (;; create an entry | |
1359 (entry (make-completion string)) | |
1360 ;; setup the prefix | |
1361 (prefix-entry (find-cmpl-prefix-entry | |
1362 (substring cmpl-db-downcase-string 0 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1363 (cmpl-read-time-eval |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1364 completion-prefix-min-length)))) |
56 | 1365 ) |
1366 (cond (prefix-entry | |
1367 ;; Splice in at head | |
1368 (setcdr entry (cmpl-prefix-entry-head prefix-entry)) | |
1369 (set-cmpl-prefix-entry-head prefix-entry entry)) | |
1370 (t | |
1371 ;; Start new prefix entry | |
1372 (set cmpl-db-prefix-symbol (make-cmpl-prefix-entry entry)) | |
1373 )) | |
1374 ;; statistics | |
1375 (cmpl-statistics-block | |
1376 (note-added-completion)) | |
1377 ;; Add it to the symbol | |
1378 (set cmpl-db-symbol (car entry)) | |
1379 ))) | |
1380 | |
1381 (defun delete-completion (string) | |
1356 | 1382 "Deletes the completion from the database. |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1383 String must be longer than `completion-prefix-min-length'." |
56 | 1384 ;; Handle pending acceptance |
1385 (if completion-to-accept (accept-completion)) | |
1386 (if (setq cmpl-db-entry (find-exact-completion string)) | |
1387 ;; found | |
1388 (let* ((prefix-entry (find-cmpl-prefix-entry | |
1389 (substring cmpl-db-downcase-string 0 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1390 (cmpl-read-time-eval |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1391 completion-prefix-min-length)))) |
56 | 1392 (splice-ptr (locate-completion-entry cmpl-db-entry prefix-entry)) |
1393 ) | |
1394 ;; delete symbol reference | |
1395 (set cmpl-db-symbol nil) | |
1396 ;; remove from prefix list | |
1397 (cond (splice-ptr | |
1398 ;; not at head | |
1399 (or (setcdr splice-ptr (cdr (cdr splice-ptr))) | |
1400 ;; fix up tail if necessary | |
1401 (set-cmpl-prefix-entry-tail prefix-entry splice-ptr)) | |
1402 ) | |
1403 (t | |
1404 ;; at head | |
1405 (or (set-cmpl-prefix-entry-head | |
1406 prefix-entry (cdr (cmpl-prefix-entry-head prefix-entry))) | |
1407 ;; List is now empty | |
1408 (set cmpl-db-prefix-symbol nil)) | |
1409 )) | |
1410 (cmpl-statistics-block | |
1411 (note-completion-deleted)) | |
1412 ) | |
1413 (error "Unknown completion: %s. Couldn't delete it." string) | |
1414 )) | |
1415 | |
1416 ;;; Tests -- | |
1417 ;;; - Add and Find - | |
1418 ;;; (add-completion-to-head "banana") --> ("banana" 0 nil 0) | |
1419 ;;; (find-exact-completion "banana") --> ("banana" 0 nil 0) | |
1420 ;;; (find-exact-completion "bana") --> nil | |
1421 ;;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...)) | |
1422 ;;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banana" ...)) | |
1423 ;;; (add-completion-to-head "banish") --> ("banish" 0 nil 0) | |
1424 ;;; (find-exact-completion "banish") --> ("banish" 0 nil 0) | |
1425 ;;; (car (find-cmpl-prefix-entry "ban")) --> (("banish" ...) ("banana" ...)) | |
1426 ;;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banana" ...)) | |
1427 ;;; (add-completion-to-head "banana") --> ("banana" 0 nil 0) | |
1428 ;;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...) ("banish" ...)) | |
1429 ;;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banish" ...)) | |
1430 ;;; | |
1431 ;;; - Deleting - | |
1432 ;;; (add-completion-to-head "banner") --> ("banner" 0 nil 0) | |
1433 ;;; (delete-completion "banner") | |
1434 ;;; (find-exact-completion "banner") --> nil | |
1435 ;;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...) ("banish" ...)) | |
1436 ;;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banish" ...)) | |
1437 ;;; (add-completion-to-head "banner") --> ("banner" 0 nil 0) | |
1438 ;;; (delete-completion "banana") | |
1439 ;;; (car (find-cmpl-prefix-entry "ban")) --> (("banner" ...) ("banish" ...)) | |
1440 ;;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banish" ...)) | |
1441 ;;; (delete-completion "banner") | |
1442 ;;; (delete-completion "banish") | |
1443 ;;; (find-cmpl-prefix-entry "ban") --> nil | |
1444 ;;; (delete-completion "banner") --> error | |
1445 ;;; | |
1446 ;;; - Tail - | |
1447 ;;; (add-completion-to-tail-if-new "banana") --> ("banana" 0 nil 0) | |
1448 ;;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...)) | |
1449 ;;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banana" ...)) | |
1450 ;;; (add-completion-to-tail-if-new "banish") --> ("banish" 0 nil 0) | |
1451 ;;; (car (find-cmpl-prefix-entry "ban")) -->(("banana" ...) ("banish" ...)) | |
1452 ;;; (cdr (find-cmpl-prefix-entry "ban")) -->(("banish" ...)) | |
1453 ;;; | |
1454 | |
1455 | |
1456 ;;;--------------------------------------------------------------------------- | |
1457 ;;; Database Update :: Interface level routines | |
1458 ;;;--------------------------------------------------------------------------- | |
1459 ;;; | |
1460 ;;; These lie on top of the database ref. functions but below the standard | |
1461 ;;; user interface level | |
1462 | |
1463 | |
1464 (defun interactive-completion-string-reader (prompt) | |
1465 (let* ((default (symbol-under-or-before-point)) | |
1466 (new-prompt | |
1467 (if default | |
1468 (format "%s: (default: %s) " prompt default) | |
1469 (format "%s: " prompt)) | |
1470 ) | |
1471 (read (completing-read new-prompt cmpl-obarray)) | |
1472 ) | |
1473 (if (zerop (length read)) (setq read (or default ""))) | |
1474 (list read) | |
1475 )) | |
1476 | |
1477 (defun check-completion-length (string) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1478 (if (< (length string) completion-min-length) |
56 | 1479 (error "The string \"%s\" is too short to be saved as a completion." |
1480 string) | |
1481 (list string))) | |
1482 | |
1483 (defun add-completion (string &optional num-uses last-use-time) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1484 "Add STRING to completion list, or move it to head of list. |
56 | 1485 The completion is altered appropriately if num-uses and/or last-use-time is |
1486 specified." | |
1487 (interactive (interactive-completion-string-reader "Completion to add")) | |
1488 (check-completion-length string) | |
1489 (let* ((current-completion-source (if (interactive-p) | |
1490 cmpl-source-interactive | |
1491 current-completion-source)) | |
1492 (entry (add-completion-to-head string))) | |
1493 | |
1494 (if num-uses (set-completion-num-uses entry num-uses)) | |
1495 (if last-use-time | |
1496 (set-completion-last-use-time entry last-use-time)) | |
1497 )) | |
1498 | |
1499 (defun add-permanent-completion (string) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1500 "Add STRING if it isn't already listed, and mark it permanent." |
56 | 1501 (interactive |
1502 (interactive-completion-string-reader "Completion to add permanently")) | |
1503 (let ((current-completion-source (if (interactive-p) | |
1504 cmpl-source-interactive | |
1505 current-completion-source)) | |
1506 ) | |
1507 (add-completion string nil t) | |
1508 )) | |
1509 | |
1510 (defun kill-completion (string) | |
1511 (interactive (interactive-completion-string-reader "Completion to kill")) | |
1512 (check-completion-length string) | |
1513 (delete-completion string) | |
1514 ) | |
1515 | |
1516 (defun accept-completion () | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1517 "Accepts the pending completion in `completion-to-accept'. |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1518 This bumps num-uses. Called by `add-completion-to-head' and |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1519 `completion-search-reset'." |
56 | 1520 (let ((string completion-to-accept) |
1521 ;; if this is added afresh here, then it must be a cdabbrev | |
1522 (current-completion-source cmpl-source-cdabbrev) | |
1523 entry | |
1524 ) | |
1525 (setq completion-to-accept nil) | |
1526 (setq entry (add-completion-to-head string)) | |
1527 (set-completion-num-uses entry (1+ (completion-num-uses entry))) | |
1528 (setq cmpl-completions-accepted-p t) | |
1529 )) | |
1530 | |
1531 (defun use-completion-under-point () | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1532 "Add the completion symbol underneath the point into the completion buffer." |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1533 (let ((string (and enable-completion (symbol-under-point))) |
56 | 1534 (current-completion-source cmpl-source-cursor-moves)) |
1535 (if string (add-completion-to-head string)))) | |
1536 | |
1537 (defun use-completion-before-point () | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1538 "Add the completion symbol before point into the completion buffer." |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1539 (let ((string (and enable-completion (symbol-before-point))) |
56 | 1540 (current-completion-source cmpl-source-cursor-moves)) |
1541 (if string (add-completion-to-head string)))) | |
1542 | |
1543 (defun use-completion-under-or-before-point () | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1544 "Add the completion symbol before point into the completion buffer." |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1545 (let ((string (and enable-completion (symbol-under-or-before-point))) |
56 | 1546 (current-completion-source cmpl-source-cursor-moves)) |
1547 (if string (add-completion-to-head string)))) | |
1548 | |
1549 (defun use-completion-before-separator () | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1550 "Add the completion symbol before point into the completion buffer. |
1356 | 1551 Completions added this way will automatically be saved if |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1552 `completion-on-separator-character' is non-nil." |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1553 (let ((string (and enable-completion (symbol-before-point))) |
56 | 1554 (current-completion-source cmpl-source-separator) |
1555 entry) | |
1556 (cmpl-statistics-block | |
1557 (note-separator-character string) | |
1558 ) | |
1559 (cond (string | |
1560 (setq entry (add-completion-to-head string)) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1561 (when (and completion-on-separator-character |
56 | 1562 (zerop (completion-num-uses entry))) |
1563 (set-completion-num-uses entry 1) | |
1564 (setq cmpl-completions-accepted-p t) | |
1565 ))) | |
1566 )) | |
1567 | |
1568 ;;; Tests -- | |
1569 ;;; - Add and Find - | |
1570 ;;; (add-completion "banana" 5 10) | |
1571 ;;; (find-exact-completion "banana") --> ("banana" 5 10 0) | |
1572 ;;; (add-completion "banana" 6) | |
1573 ;;; (find-exact-completion "banana") --> ("banana" 6 10 0) | |
1574 ;;; (add-completion "banish") | |
1575 ;;; (car (find-cmpl-prefix-entry "ban")) --> (("banish" ...) ("banana" ...)) | |
1576 ;;; | |
1577 ;;; - Accepting - | |
1578 ;;; (setq completion-to-accept "banana") | |
1579 ;;; (accept-completion) | |
1580 ;;; (find-exact-completion "banana") --> ("banana" 7 10) | |
1581 ;;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...) ("banish" ...)) | |
1582 ;;; (setq completion-to-accept "banish") | |
1583 ;;; (add-completion "banner") | |
1584 ;;; (car (find-cmpl-prefix-entry "ban")) | |
1585 ;;; --> (("banner" ...) ("banish" 1 ...) ("banana" 7 ...)) | |
1586 ;;; | |
1587 ;;; - Deleting - | |
1588 ;;; (kill-completion "banish") | |
1589 ;;; (car (find-cmpl-prefix-entry "ban")) --> (("banner" ...) ("banana" ...)) | |
1590 | |
1591 | |
1592 ;;;--------------------------------------------------------------------------- | |
1593 ;;; Searching the database | |
1594 ;;;--------------------------------------------------------------------------- | |
1595 ;;; Functions outside this block must call completion-search-reset followed | |
1596 ;;; by calls to completion-search-next or completion-search-peek | |
1597 ;;; | |
1598 | |
1599 ;;; Status variables | |
1600 ;; Commented out to improve loading speed | |
1601 (defvar cmpl-test-string "") | |
1602 ;; "The current string used by completion-search-next." | |
1603 (defvar cmpl-test-regexp "") | |
1604 ;; "The current regexp used by completion-search-next. | |
1605 ;; (derived from cmpl-test-string)" | |
1606 (defvar cmpl-last-index 0) | |
1607 ;; "The last index that completion-search-next was called with." | |
1608 (defvar cmpl-cdabbrev-reset-p nil) | |
1609 ;; "Set to t when cdabbrevs have been reset." | |
1610 (defvar cmpl-next-possibilities nil) | |
1611 ;; "A pointer to the element BEFORE the next set of possible completions. | |
1612 ;; cadr of this is the cmpl-next-possibility" | |
1613 (defvar cmpl-starting-possibilities nil) | |
1614 ;; "The initial list of starting possibilities." | |
1615 (defvar cmpl-next-possibility nil) | |
1616 ;; "The cached next possibility." | |
1617 (defvar cmpl-tried-list nil) | |
1618 ;; "A downcased list of all the completions we have tried." | |
1619 | |
1620 | |
1621 (defun completion-search-reset (string) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1622 "Set up the for completion searching for STRING. |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1623 STRING must be longer than `completion-prefix-min-length'." |
56 | 1624 (if completion-to-accept (accept-completion)) |
1625 (setq cmpl-starting-possibilities | |
1626 (cmpl-prefix-entry-head | |
1627 (find-cmpl-prefix-entry (downcase (substring string 0 3)))) | |
1628 cmpl-test-string string | |
1629 cmpl-test-regexp (concat (regexp-quote string) ".")) | |
1630 (completion-search-reset-1) | |
1631 ) | |
1632 | |
1633 (defun completion-search-reset-1 () | |
1634 (setq cmpl-next-possibilities cmpl-starting-possibilities | |
1635 cmpl-next-possibility nil | |
1636 cmpl-cdabbrev-reset-p nil | |
1637 cmpl-last-index -1 | |
1638 cmpl-tried-list nil | |
1639 )) | |
1640 | |
1641 (defun completion-search-next (index) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1642 "Return the next completion entry. |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1643 If INDEX is out of sequence, reset and start from the top. |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1644 If there are no more entries, try cdabbrev and returns only a string." |
56 | 1645 (cond |
1646 ((= index (setq cmpl-last-index (1+ cmpl-last-index))) | |
1647 (completion-search-peek t)) | |
1648 ((minusp index) | |
1649 (completion-search-reset-1) | |
1650 (setq cmpl-last-index index) | |
1651 ;; reverse the possibilities list | |
1652 (setq cmpl-next-possibilities (reverse cmpl-starting-possibilities)) | |
1653 ;; do a "normal" search | |
1654 (while (and (completion-search-peek nil) | |
1655 (minusp (setq index (1+ index)))) | |
1656 (setq cmpl-next-possibility nil) | |
1657 ) | |
1658 (cond ((not cmpl-next-possibilities)) | |
1659 ;; If no more possibilities, leave it that way | |
1660 ((= -1 cmpl-last-index) | |
1661 ;; next completion is at index 0. reset next-possibility list | |
1662 ;; to start at beginning | |
1663 (setq cmpl-next-possibilities cmpl-starting-possibilities)) | |
1664 (t | |
1665 ;; otherwise point to one before current | |
1666 (setq cmpl-next-possibilities | |
1667 (nthcdr (- (length cmpl-starting-possibilities) | |
1668 (length cmpl-next-possibilities)) | |
1669 cmpl-starting-possibilities)) | |
1670 ))) | |
1671 (t | |
1672 ;; non-negative index, reset and search | |
1673 ;;(prin1 'reset) | |
1674 (completion-search-reset-1) | |
1675 (setq cmpl-last-index index) | |
1676 (while (and (completion-search-peek t) | |
1677 (not (minusp (setq index (1- index))))) | |
1678 (setq cmpl-next-possibility nil) | |
1679 )) | |
1680 ) | |
1681 (prog1 | |
1682 cmpl-next-possibility | |
1683 (setq cmpl-next-possibility nil) | |
1684 )) | |
1685 | |
1686 | |
1687 (defun completion-search-peek (use-cdabbrev) | |
1688 "Returns the next completion entry without actually moving the pointers. | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1689 Calling this again or calling `completion-search-next' results in the same |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1690 string being returned. Depends on `case-fold-search'. |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1691 If there are no more entries, try cdabbrev and then return only a string." |
56 | 1692 (cond |
1693 ;; return the cached value if we have it | |
1694 (cmpl-next-possibility) | |
1695 ((and cmpl-next-possibilities | |
1696 ;; still a few possibilities left | |
1697 (progn | |
1698 (while | |
1699 (and (not (eq 0 (string-match cmpl-test-regexp | |
1700 (completion-string (car cmpl-next-possibilities))))) | |
1701 (setq cmpl-next-possibilities (cdr cmpl-next-possibilities)) | |
1702 )) | |
1703 cmpl-next-possibilities | |
1704 )) | |
1705 ;; successful match | |
1706 (setq cmpl-next-possibility (car cmpl-next-possibilities) | |
1707 cmpl-tried-list (cons (downcase (completion-string cmpl-next-possibility)) | |
1708 cmpl-tried-list) | |
1709 cmpl-next-possibilities (cdr cmpl-next-possibilities) | |
1710 ) | |
1711 cmpl-next-possibility) | |
1712 (use-cdabbrev | |
1713 ;; unsuccessful, use cdabbrev | |
1714 (cond ((not cmpl-cdabbrev-reset-p) | |
1715 (reset-cdabbrev cmpl-test-string cmpl-tried-list) | |
1716 (setq cmpl-cdabbrev-reset-p t) | |
1717 )) | |
1718 (setq cmpl-next-possibility (next-cdabbrev)) | |
1719 ) | |
1720 ;; Completely unsuccessful, return nil | |
1721 )) | |
1722 | |
1723 ;;; Tests -- | |
1724 ;;; - Add and Find - | |
1725 ;;; (add-completion "banana") | |
1726 ;;; (completion-search-reset "ban") | |
1727 ;;; (completion-search-next 0) --> "banana" | |
1728 ;;; | |
1729 ;;; - Discrimination - | |
1730 ;;; (add-completion "cumberland") | |
1731 ;;; (add-completion "cumberbund") | |
1732 ;;; cumbering | |
1733 ;;; (completion-search-reset "cumb") | |
1734 ;;; (completion-search-peek t) --> "cumberbund" | |
1735 ;;; (completion-search-next 0) --> "cumberbund" | |
1736 ;;; (completion-search-peek t) --> "cumberland" | |
1737 ;;; (completion-search-next 1) --> "cumberland" | |
1738 ;;; (completion-search-peek nil) --> nil | |
1739 ;;; (completion-search-next 2) --> "cumbering" {cdabbrev} | |
1740 ;;; (completion-search-next 3) --> nil or "cumming"{depends on context} | |
1741 ;;; (completion-search-next 1) --> "cumberland" | |
1742 ;;; (completion-search-peek t) --> "cumbering" {cdabbrev} | |
1743 ;;; | |
1744 ;;; - Accepting - | |
1745 ;;; (completion-search-next 1) --> "cumberland" | |
1746 ;;; (setq completion-to-accept "cumberland") | |
1747 ;;; (completion-search-reset "foo") | |
1748 ;;; (completion-search-reset "cum") | |
1749 ;;; (completion-search-next 0) --> "cumberland" | |
1750 ;;; | |
1751 ;;; - Deleting - | |
1752 ;;; (kill-completion "cumberland") | |
1753 ;;; cummings | |
1754 ;;; (completion-search-reset "cum") | |
1755 ;;; (completion-search-next 0) --> "cumberbund" | |
1756 ;;; (completion-search-next 1) --> "cummings" | |
1757 ;;; | |
1758 ;;; - Ignoring Capitalization - | |
1759 ;;; (completion-search-reset "CuMb") | |
1760 ;;; (completion-search-next 0) --> "cumberbund" | |
1761 | |
1762 | |
1763 | |
1764 ;;;----------------------------------------------- | |
1765 ;;; COMPLETE | |
1766 ;;;----------------------------------------------- | |
1767 | |
1768 (defun completion-mode () | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1769 "Toggles whether or not to add new words to the completion database." |
56 | 1770 (interactive) |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1771 (setq enable-completion (not enable-completion)) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1772 (message "Completion mode is now %s." (if enable-completion "ON" "OFF")) |
56 | 1773 ) |
1774 | |
1775 (defvar cmpl-current-index 0) | |
1776 (defvar cmpl-original-string nil) | |
1777 (defvar cmpl-last-insert-location -1) | |
1778 (defvar cmpl-leave-point-at-start nil) | |
1779 | |
1780 (defun complete (&optional arg) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1781 "Fill out a completion of the word before point. |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3186
diff
changeset
|
1782 Point is left at end. Consecutive calls rotate through all possibilities. |
56 | 1783 Prefix args :: |
1784 control-u :: leave the point at the beginning of the completion rather | |
1785 than at the end. | |
1786 a number :: rotate through the possible completions by that amount | |
1787 `-' :: same as -1 (insert previous completion) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1788 {See the comments at the top of `completion.el' for more info.}" |
56 | 1789 (interactive "*p") |
1790 ;;; Set up variables | |
1791 (cond ((eq last-command this-command) | |
1792 ;; Undo last one | |
1793 (delete-region cmpl-last-insert-location (point)) | |
1794 ;; get next completion | |
1795 (setq cmpl-current-index (+ cmpl-current-index (or arg 1))) | |
1796 ) | |
1797 (t | |
1798 (if (not cmpl-initialized-p) | |
1799 (initialize-completions)) ;; make sure everything's loaded | |
1800 (cond ((consp current-prefix-arg) ;; control-u | |
1801 (setq arg 0) | |
1802 (setq cmpl-leave-point-at-start t) | |
1803 ) | |
1804 (t | |
1805 (setq cmpl-leave-point-at-start nil) | |
1806 )) | |
1807 ;; get string | |
1808 (setq cmpl-original-string (symbol-before-point-for-complete)) | |
1809 (cond ((not cmpl-original-string) | |
1810 (setq this-command 'failed-complete) | |
1811 (error "To complete, the point must be after a symbol at least %d character long." | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1812 completion-prefix-min-length))) |
56 | 1813 ;; get index |
1814 (setq cmpl-current-index (if current-prefix-arg arg 0)) | |
1815 ;; statistics | |
1816 (cmpl-statistics-block | |
1817 (note-complete-entered-afresh cmpl-original-string)) | |
1818 ;; reset database | |
1819 (completion-search-reset cmpl-original-string) | |
1820 ;; erase what we've got | |
1821 (delete-region cmpl-symbol-start cmpl-symbol-end) | |
1822 )) | |
1823 | |
1824 ;; point is at the point to insert the new symbol | |
1825 ;; Get the next completion | |
1826 (let* ((print-status-p | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1827 (and (>= baud-rate completion-prompt-speed-threshold) |
56 | 1828 (not (minibuffer-window-selected-p)))) |
1829 (insert-point (point)) | |
1830 (entry (completion-search-next cmpl-current-index)) | |
1831 string | |
1832 ) | |
1833 ;; entry is either a completion entry or a string (if cdabbrev) | |
1834 | |
1835 ;; If found, insert | |
1836 (cond (entry | |
1837 ;; Setup for proper case | |
1838 (setq string (if (stringp entry) | |
1839 entry (completion-string entry))) | |
1840 (setq string (cmpl-merge-string-cases | |
1841 string cmpl-original-string)) | |
1842 ;; insert | |
1843 (insert string) | |
1844 ;; accept it | |
1845 (setq completion-to-accept string) | |
1846 ;; fixup and cache point | |
1847 (cond (cmpl-leave-point-at-start | |
1848 (setq cmpl-last-insert-location (point)) | |
1849 (goto-char insert-point)) | |
1850 (t;; point at end, | |
1851 (setq cmpl-last-insert-location insert-point)) | |
1852 ) | |
1853 ;; statistics | |
1854 (cmpl-statistics-block | |
1855 (note-complete-inserted entry cmpl-current-index)) | |
1856 ;; Done ! cmpl-stat-complete-successful | |
1857 ;;display the next completion | |
1858 (cond | |
1859 ((and print-status-p | |
1860 ;; This updates the display and only prints if there | |
1861 ;; is no typeahead | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1862 (sit-for 0) |
56 | 1863 (setq entry |
1864 (completion-search-peek | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1865 completion-cdabbrev-prompt-flag))) |
56 | 1866 (setq string (if (stringp entry) |
1867 entry (completion-string entry))) | |
1868 (setq string (cmpl-merge-string-cases | |
1869 string cmpl-original-string)) | |
1870 (message "Next completion: %s" string) | |
1871 )) | |
1872 ) | |
1873 (t;; none found, insert old | |
1874 (insert cmpl-original-string) | |
1875 ;; Don't accept completions | |
1876 (setq completion-to-accept nil) | |
1877 ;; print message | |
1878 (if (and print-status-p (cmpl19-sit-for 0)) | |
1879 (message "No %scompletions." | |
1880 (if (eq this-command last-command) "more " ""))) | |
1881 ;; statistics | |
1882 (cmpl-statistics-block | |
1883 (record-complete-failed cmpl-current-index)) | |
1884 ;; Pretend that we were never here | |
1885 (setq this-command 'failed-complete) | |
1886 )))) | |
1887 | |
1888 ;;;----------------------------------------------- | |
1889 ;;; "Complete" Key Keybindings | |
1890 ;;;----------------------------------------------- | |
1891 | |
1892 (global-set-key "\M-\r" 'complete) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1893 (global-set-key [?\C-\r] 'complete) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1894 (define-key function-key-map [C-return] [?\C-\r]) |
56 | 1895 |
1896 ;;; Tests - | |
1897 ;;; (add-completion "cumberland") | |
1898 ;;; (add-completion "cumberbund") | |
1899 ;;; cum | |
1900 ;;; Cumber | |
1901 ;;; cumbering | |
1902 ;;; cumb | |
1903 | |
1904 | |
1905 ;;;--------------------------------------------------------------------------- | |
1906 ;;; Parsing definitions from files into the database | |
1907 ;;;--------------------------------------------------------------------------- | |
1908 | |
1909 ;;;----------------------------------------------- | |
1910 ;;; Top Level functions :: | |
1911 ;;;----------------------------------------------- | |
1912 | |
1913 ;;; User interface | |
1914 (defun add-completions-from-file (file) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1915 "Parse possible completions from a file and add them to data base." |
56 | 1916 (interactive "fFile: ") |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1917 (setq file (expand-file-name file)) |
56 | 1918 (let* ((buffer (get-file-buffer file)) |
1919 (buffer-already-there-p buffer) | |
1920 ) | |
1921 (when (not buffer-already-there-p) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1922 (let ((completions-merging-modes nil)) |
56 | 1923 (setq buffer (find-file-noselect file)) |
1924 )) | |
1925 (unwind-protect | |
1926 (save-excursion | |
1927 (set-buffer buffer) | |
1928 (add-completions-from-buffer) | |
1929 ) | |
1930 (when (not buffer-already-there-p) | |
1931 (kill-buffer buffer)) | |
1932 ))) | |
1933 | |
1934 (defun add-completions-from-buffer () | |
1935 (interactive) | |
1936 (let ((current-completion-source cmpl-source-file-parsing) | |
1937 (start-num | |
1938 (cmpl-statistics-block | |
1939 (aref completion-add-count-vector cmpl-source-file-parsing))) | |
1940 mode | |
1941 ) | |
1942 (cond ((memq major-mode '(emacs-lisp-mode lisp-mode)) | |
1943 (add-completions-from-lisp-buffer) | |
1944 (setq mode 'lisp) | |
1945 ) | |
1946 ((memq major-mode '(c-mode)) | |
1947 (add-completions-from-c-buffer) | |
1948 (setq mode 'c) | |
1949 ) | |
1950 (t | |
1951 (error "Do not know how to parse completions in %s buffers." | |
1952 major-mode) | |
1953 )) | |
1954 (cmpl-statistics-block | |
1955 (record-cmpl-parse-file | |
1956 mode (point-max) | |
1957 (- (aref completion-add-count-vector cmpl-source-file-parsing) | |
1958 start-num))) | |
1959 )) | |
1960 | |
1961 ;;; Find file hook | |
1962 (defun cmpl-find-file-hook () | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1963 (cond (enable-completion |
56 | 1964 (cond ((and (memq major-mode '(emacs-lisp-mode lisp-mode)) |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1965 (memq 'lisp completions-merging-modes) |
56 | 1966 ) |
1967 (add-completions-from-buffer)) | |
1968 ((and (memq major-mode '(c-mode)) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1969 (memq 'c completions-merging-modes) |
56 | 1970 ) |
1971 (add-completions-from-buffer) | |
1972 ))) | |
1973 )) | |
1974 | |
1975 (pushnew 'cmpl-find-file-hook find-file-hooks) | |
1976 | |
1977 ;;;----------------------------------------------- | |
1978 ;;; Tags Table Completions | |
1979 ;;;----------------------------------------------- | |
1980 | |
1981 (defun add-completions-from-tags-table () | |
1982 ;; Inspired by eero@media-lab.media.mit.edu | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
1983 "Add completions from the current tags table." |
56 | 1984 (interactive) |
1985 (visit-tags-table-buffer) ;this will prompt if no tags-table | |
1986 (save-excursion | |
1987 (goto-char (point-min)) | |
1988 (let (string) | |
1989 (condition-case e | |
1990 (while t | |
1991 (search-forward "\177") | |
1992 (backward-char 3) | |
1993 (and (setq string (symbol-under-point)) | |
1994 (add-completion-to-tail-if-new string)) | |
1995 (forward-char 3) | |
1996 ) | |
1997 (search-failed) | |
1998 )))) | |
1999 | |
2000 | |
2001 ;;;----------------------------------------------- | |
2002 ;;; Lisp File completion parsing | |
2003 ;;;----------------------------------------------- | |
2004 ;;; This merely looks for phrases beginning with (def.... or | |
2005 ;;; (package:def ... and takes the next word. | |
2006 ;;; | |
2007 ;;; We tried using forward-lines and explicit searches but the regexp technique | |
2008 ;;; was faster. (About 100K characters per second) | |
2009 ;;; | |
2010 (defconst *lisp-def-regexp* | |
2011 "\n(\\(\\w*:\\)?def\\(\\w\\|\\s_\\)*\\s +(*" | |
2012 "A regexp that searches for lisp definition form." | |
2013 ) | |
2014 | |
2015 ;;; Tests - | |
2016 ;;; (and (string-match *lisp-def-regexp* "\n(defun foo") (match-end 0)) -> 8 | |
2017 ;;; (and (string-match *lisp-def-regexp* "\n(si:def foo") (match-end 0)) -> 9 | |
2018 ;;; (and (string-match *lisp-def-regexp* "\n(def-bar foo")(match-end 0)) -> 10 | |
2019 ;;; (and (string-match *lisp-def-regexp* "\n(defun (foo") (match-end 0)) -> 9 | |
2020 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2021 ;;; Parses all the definition names from a Lisp mode buffer and adds them to |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2022 ;;; the completion database. |
56 | 2023 (defun add-completions-from-lisp-buffer () |
2024 ;;; Benchmarks | |
2025 ;;; Sun-3/280 - 1500 to 3000 lines of lisp code per second | |
2026 (let (string) | |
2027 (save-excursion | |
2028 (goto-char (point-min)) | |
2029 (condition-case e | |
2030 (while t | |
2031 (re-search-forward *lisp-def-regexp*) | |
2032 (and (setq string (symbol-under-point)) | |
2033 (add-completion-to-tail-if-new string)) | |
2034 ) | |
2035 (search-failed) | |
2036 )))) | |
2037 | |
2038 | |
2039 ;;;----------------------------------------------- | |
2040 ;;; C file completion parsing | |
2041 ;;;----------------------------------------------- | |
2042 ;;; C : | |
2043 ;;; Looks for #define or [<storage class>] [<type>] <name>{,<name>} | |
2044 ;;; or structure, array or pointer defs. | |
2045 ;;; It gets most of the definition names. | |
2046 ;;; | |
2047 ;;; As you might suspect by now, we use some symbol table hackery | |
2048 ;;; | |
2049 ;;; Symbol separator chars (have whitespace syntax) --> , ; * = ( | |
2050 ;;; Opening char --> [ { | |
2051 ;;; Closing char --> ] } | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3186
diff
changeset
|
2052 ;;; opening and closing must be skipped over |
56 | 2053 ;;; Whitespace chars (have symbol syntax) |
2054 ;;; Everything else has word syntax | |
2055 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2056 (defun cmpl-make-c-def-completion-syntax-table () |
56 | 2057 (let ((table (make-vector 256 0)) |
2058 (whitespace-chars '(? ?\n ?\t ?\f ?\v ?\r)) | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3186
diff
changeset
|
2059 ;; unfortunately the ?( causes the parens to appear unbalanced |
56 | 2060 (separator-chars '(?, ?* ?= ?\( ?\; |
2061 )) | |
2062 ) | |
2063 ;; default syntax is whitespace | |
2064 (dotimes (i 256) | |
2065 (modify-syntax-entry i "w" table)) | |
2066 (dolist (char whitespace-chars) | |
2067 (modify-syntax-entry char "_" table)) | |
2068 (dolist (char separator-chars) | |
2069 (modify-syntax-entry char " " table)) | |
2070 (modify-syntax-entry ?\[ "(]" table) | |
2071 (modify-syntax-entry ?\{ "(}" table) | |
2072 (modify-syntax-entry ?\] ")[" table) | |
2073 (modify-syntax-entry ?\} "){" table) | |
2074 table)) | |
2075 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2076 (defconst cmpl-c-def-syntax-table (cmpl-make-c-def-completion-syntax-table)) |
56 | 2077 |
2078 ;;; Regexps | |
2079 (defconst *c-def-regexp* | |
2080 ;; This stops on lines with possible definitions | |
2081 "\n[_a-zA-Z#]" | |
2082 ;; This stops after the symbol to add. | |
2083 ;;"\n\\(#define\\s +.\\|\\(\\(\\w\\|\\s_\\)+\\b\\s *\\)+[(;,[*{=]\\)" | |
2084 ;; This stops before the symbol to add. {Test cases in parens. below} | |
2085 ;;"\n\\(\\(\\w\\|\\s_\\)+\\s *(\\|\\(\\(#define\\|auto\\|extern\\|register\\|static\\|int\\|long\\|short\\|unsigned\\|char\\|void\\|float\\|double\\|enum\\|struct\\|union\\|typedef\\)\\s +\\)+\\)" | |
2086 ;; this simple version picks up too much extraneous stuff | |
2087 ;; "\n\\(\\w\\|\\s_\\|#\\)\\B" | |
2088 "A regexp that searches for a definition form." | |
2089 ) | |
2090 ; | |
2091 ;(defconst *c-cont-regexp* | |
2092 ; "\\(\\w\\|\\s_\\)+\\b\\s *\\({\\|\\(\\[[0-9\t ]*\\]\\s *\\)*,\\(*\\|\\s \\)*\\b\\)" | |
2093 ; "This regexp should be used in a looking-at to parse for lists of variables.") | |
2094 ; | |
2095 ;(defconst *c-struct-regexp* | |
2096 ; "\\(*\\|\\s \\)*\\b" | |
2097 ; "This regexp should be used to test whether a symbol follows a structure definition.") | |
2098 | |
2099 ;(defun test-c-def-regexp (regexp string) | |
2100 ; (and (eq 0 (string-match regexp string)) (match-end 0)) | |
2101 ; ) | |
2102 | |
2103 ;;; Tests - | |
2104 ;;; (test-c-def-regexp *c-def-regexp* "\n#define foo") -> 10 (9) | |
2105 ;;; (test-c-def-regexp *c-def-regexp* "\nfoo (x, y) {") -> 6 (6) | |
2106 ;;; (test-c-def-regexp *c-def-regexp* "\nint foo (x, y)") -> 10 (5) | |
2107 ;;; (test-c-def-regexp *c-def-regexp* "\n int foo (x, y)") -> nil | |
2108 ;;; (test-c-def-regexp *c-cont-regexp* "oo, bar") -> 4 | |
2109 ;;; (test-c-def-regexp *c-cont-regexp* "oo, *bar") -> 5 | |
2110 ;;; (test-c-def-regexp *c-cont-regexp* "a [5][6], bar") -> 10 | |
2111 ;;; (test-c-def-regexp *c-cont-regexp* "oo(x,y)") -> nil | |
2112 ;;; (test-c-def-regexp *c-cont-regexp* "a [6] ,\t bar") -> 9 | |
2113 ;;; (test-c-def-regexp *c-cont-regexp* "oo {trout =1} my_carp;") -> 14 | |
2114 ;;; (test-c-def-regexp *c-cont-regexp* "truct_p complex foon") -> nil | |
2115 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2116 ;;; Parses all the definition names from a C mode buffer and adds them to the |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2117 ;;; completion database. |
56 | 2118 (defun add-completions-from-c-buffer () |
2119 ;; Benchmark -- | |
2120 ;; Sun 3/280-- 1250 lines/sec. | |
2121 | |
2122 (let (string next-point char | |
2123 (saved-syntax (syntax-table)) | |
2124 ) | |
2125 (save-excursion | |
2126 (goto-char (point-min)) | |
2127 (catch 'finish-add-completions | |
2128 (unwind-protect | |
2129 (while t | |
2130 ;; we loop here only when scan-sexps fails | |
2131 ;; (i.e. unbalance exps.) | |
2132 (set-syntax-table cmpl-c-def-syntax-table) | |
2133 (condition-case e | |
2134 (while t | |
2135 (re-search-forward *c-def-regexp*) | |
2136 (cond | |
2137 ((= (preceding-char) ?#) | |
2138 ;; preprocessor macro, see if it's one we handle | |
2139 (setq string (buffer-substring (point) (+ (point) 6))) | |
2140 (cond ((or (string-equal string "define") | |
2141 (string-equal string "ifdef ") | |
2142 ) | |
2143 ;; skip forward over definition symbol | |
2144 ;; and add it to database | |
2145 (and (forward-word 2) | |
2146 (setq string (symbol-before-point)) | |
2147 ;;(push string foo) | |
2148 (add-completion-to-tail-if-new string) | |
2149 )))) | |
2150 (t | |
2151 ;; C definition | |
2152 (setq next-point (point)) | |
2153 (while (and | |
2154 next-point | |
2155 ;; scan to next separator char. | |
2156 (setq next-point (scan-sexps next-point 1)) | |
2157 ) | |
2158 ;; position the point on the word we want to add | |
2159 (goto-char next-point) | |
2160 (while (= (setq char (following-char)) ?*) | |
2161 ;; handle pointer ref | |
2162 ;; move to next separator char. | |
2163 (goto-char | |
2164 (setq next-point (scan-sexps (point) 1))) | |
2165 ) | |
2166 (forward-word -1) | |
2167 ;; add to database | |
2168 (if (setq string (symbol-under-point)) | |
2169 ;; (push string foo) | |
2170 (add-completion-to-tail-if-new string) | |
2171 ;; Local TMC hack (useful for parsing paris.h) | |
2172 (if (and (looking-at "_AP") ;; "ansi prototype" | |
2173 (progn | |
2174 (forward-word -1) | |
2175 (setq string | |
2176 (symbol-under-point)) | |
2177 )) | |
2178 (add-completion-to-tail-if-new string) | |
2179 ) | |
2180 ) | |
2181 ;; go to next | |
2182 (goto-char next-point) | |
2183 ;; (push (format "%c" (following-char)) foo) | |
2184 (if (= (char-syntax char) ?\() | |
2185 ;; if on an opening delimiter, go to end | |
2186 (while (= (char-syntax char) ?\() | |
2187 (setq next-point (scan-sexps next-point 1) | |
2188 char (char-after next-point)) | |
2189 ) | |
2190 (or (= char ?,) | |
2191 ;; Current char is an end char. | |
2192 (setq next-point nil) | |
2193 )) | |
2194 )))) | |
2195 (search-failed ;;done | |
2196 (throw 'finish-add-completions t) | |
2197 ) | |
2198 (error | |
2199 ;; Check for failure in scan-sexps | |
2200 (if (or (string-equal (second e) | |
2201 "Containing expression ends prematurely") | |
2202 (string-equal (second e) "Unbalanced parentheses")) | |
2203 ;; unbalanced paren., keep going | |
2204 ;;(ding) | |
2205 (forward-line 1) | |
2206 (message "Error parsing C buffer for completions. Please bug report.") | |
2207 (throw 'finish-add-completions t) | |
2208 )) | |
2209 )) | |
2210 (set-syntax-table saved-syntax) | |
2211 ))))) | |
2212 | |
2213 | |
2214 ;;;--------------------------------------------------------------------------- | |
2215 ;;; Init files | |
2216 ;;;--------------------------------------------------------------------------- | |
2217 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2218 ;;; The version of save-completions-to-file called at kill-emacs time. |
56 | 2219 (defun kill-emacs-save-completions () |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2220 (when (and save-completions-flag enable-completion cmpl-initialized-p) |
56 | 2221 (cond |
2222 ((not cmpl-completions-accepted-p) | |
2223 (message "Completions database has not changed - not writing.")) | |
2224 (t | |
2225 (save-completions-to-file) | |
2226 )) | |
2227 )) | |
2228 | |
2229 (defconst saved-cmpl-file-header | |
2230 ";;; Completion Initialization file. | |
2231 ;;; Version = %s | |
2232 ;;; Format is (<string> . <last-use-time>) | |
2233 ;;; <string> is the completion | |
2234 ;;; <last-use-time> is the time the completion was last used | |
2235 ;;; If it is t, the completion will never be pruned from the file. | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2236 ;;; Otherwise it is in hours since origin. |
56 | 2237 \n") |
2238 | |
2239 (defun completion-backup-filename (filename) | |
2240 (concat filename ".BAK")) | |
2241 | |
2242 (defun save-completions-to-file (&optional filename) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2243 "Save completions in init file FILENAME. |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2244 If file name is not specified, use `save-completions-file-name'." |
56 | 2245 (interactive) |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2246 (setq filename (expand-file-name (or filename save-completions-file-name))) |
56 | 2247 (when (file-writable-p filename) |
2248 (if (not cmpl-initialized-p) | |
2249 (initialize-completions));; make sure everything's loaded | |
2250 (message "Saving completions to file %s" filename) | |
2251 | |
2252 (let* ((trim-versions-without-asking t) | |
2253 (kept-old-versions 0) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2254 (kept-new-versions completions-file-versions-kept) |
56 | 2255 last-use-time |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2256 (current-time (cmpl-hours-since-origin)) |
56 | 2257 (total-in-db 0) |
2258 (total-perm 0) | |
2259 (total-saved 0) | |
2260 (backup-filename (completion-backup-filename filename)) | |
2261 ) | |
2262 | |
2263 (save-excursion | |
2264 (get-buffer-create " *completion-save-buffer*") | |
2265 (set-buffer " *completion-save-buffer*") | |
2266 (setq buffer-file-name filename) | |
2267 | |
2268 (when (not (verify-visited-file-modtime (current-buffer))) | |
2269 ;; file has changed on disk. Bring us up-to-date | |
2270 (message "Completion file has changed. Merging. . .") | |
2271 (load-completions-from-file filename t) | |
2272 (message "Merging finished. Saving completions to file %s" filename) | |
2273 ) | |
2274 | |
2275 ;; prepare the buffer to be modified | |
2276 (clear-visited-file-modtime) | |
2277 (erase-buffer) | |
2278 ;; (/ 1 0) | |
2279 (insert (format saved-cmpl-file-header *completion-version*)) | |
2280 (dolist (completion (list-all-completions)) | |
2281 (setq total-in-db (1+ total-in-db)) | |
2282 (setq last-use-time (completion-last-use-time completion)) | |
2283 ;; Update num uses and maybe write completion to a file | |
2284 (cond ((or;; Write to file if | |
2285 ;; permanent | |
2286 (and (eq last-use-time t) | |
2287 (setq total-perm (1+ total-perm))) | |
2288 ;; or if | |
2289 (if (plusp (completion-num-uses completion)) | |
2290 ;; it's been used | |
2291 (setq last-use-time current-time) | |
2292 ;; or it was saved before and | |
2293 (and last-use-time | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2294 ;; save-completions-retention-time is nil |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2295 (or (not save-completions-retention-time) |
56 | 2296 ;; or time since last use is < ...retention-time* |
2297 (< (- current-time last-use-time) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2298 save-completions-retention-time)) |
56 | 2299 ))) |
2300 ;; write to file | |
2301 (setq total-saved (1+ total-saved)) | |
2302 (insert (prin1-to-string (cons (completion-string completion) | |
2303 last-use-time)) "\n") | |
2304 ))) | |
2305 | |
2306 ;; write the buffer | |
2307 (condition-case e | |
2308 (let ((file-exists-p (file-exists-p filename))) | |
2309 (when file-exists-p | |
2310 ;; If file exists . . . | |
2311 ;; Save a backup(so GNU doesn't screw us when we're out of disk) | |
2312 ;; (GNU leaves a 0 length file if it gets a disk full error!) | |
2313 | |
2314 ;; If backup doesn't exit, Rename current to backup | |
2315 ;; {If backup exists the primary file is probably messed up} | |
2316 (unless (file-exists-p backup-filename) | |
2317 (rename-file filename backup-filename)) | |
2318 ;; Copy the backup back to the current name | |
2319 ;; (so versioning works) | |
2320 (copy-file backup-filename filename t) | |
2321 ) | |
2322 ;; Save it | |
2323 (save-buffer) | |
2324 (when file-exists-p | |
2325 ;; If successful, remove backup | |
2326 (delete-file backup-filename) | |
2327 )) | |
2328 (error | |
2329 (set-buffer-modified-p nil) | |
2330 (message "Couldn't save completion file %s." filename) | |
2331 )) | |
2332 ;; Reset accepted-p flag | |
2333 (setq cmpl-completions-accepted-p nil) | |
2334 ) | |
2335 (cmpl-statistics-block | |
2336 (record-save-completions total-in-db total-perm total-saved)) | |
2337 ))) | |
2338 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2339 ;;;(defun autosave-completions () |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2340 ;;; (when (and save-completions-flag enable-completion cmpl-initialized-p |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2341 ;;; *completion-auto-save-period* |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2342 ;;; (> cmpl-emacs-idle-time *completion-auto-save-period*) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2343 ;;; cmpl-completions-accepted-p) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2344 ;;; (save-completions-to-file) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2345 ;;; )) |
56 | 2346 |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2347 ;;;(pushnew 'autosave-completions cmpl-emacs-idle-time-hooks) |
56 | 2348 |
2349 (defun load-completions-from-file (&optional filename no-message-p) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2350 "Loads a completion init file FILENAME. |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2351 If file is not specified, then use `save-completions-file-name'." |
56 | 2352 (interactive) |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2353 (setq filename (expand-file-name (or filename save-completions-file-name))) |
56 | 2354 (let* ((backup-filename (completion-backup-filename filename)) |
2355 (backup-readable-p (file-readable-p backup-filename)) | |
2356 ) | |
2357 (when backup-readable-p (setq filename backup-filename)) | |
2358 (when (file-readable-p filename) | |
2359 (if (not no-message-p) | |
2360 (message "Loading completions from %sfile %s . . ." | |
2361 (if backup-readable-p "backup " "") filename)) | |
2362 (save-excursion | |
2363 (get-buffer-create " *completion-save-buffer*") | |
2364 (set-buffer " *completion-save-buffer*") | |
2365 (setq buffer-file-name filename) | |
2366 ;; prepare the buffer to be modified | |
2367 (clear-visited-file-modtime) | |
2368 (erase-buffer) | |
2369 | |
2370 (let ((insert-okay-p nil) | |
2371 (buffer (current-buffer)) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2372 (current-time (cmpl-hours-since-origin)) |
56 | 2373 string num-uses entry last-use-time |
2374 cmpl-entry cmpl-last-use-time | |
2375 (current-completion-source cmpl-source-init-file) | |
2376 (start-num | |
2377 (cmpl-statistics-block | |
2378 (aref completion-add-count-vector cmpl-source-file-parsing))) | |
2379 (total-in-file 0) (total-perm 0) | |
2380 ) | |
2381 ;; insert the file into a buffer | |
2382 (condition-case e | |
2383 (progn (insert-file-contents filename t) | |
2384 (setq insert-okay-p t)) | |
2385 | |
2386 (file-error | |
2387 (message "File error trying to load completion file %s." | |
2388 filename))) | |
2389 ;; parse it | |
2390 (when insert-okay-p | |
2391 (goto-char (point-min)) | |
2392 | |
2393 (condition-case e | |
2394 (while t | |
2395 (setq entry (read buffer)) | |
2396 (setq total-in-file (1+ total-in-file)) | |
2397 (cond | |
2398 ((and (consp entry) | |
2399 (stringp (setq string (car entry))) | |
2400 (cond | |
2401 ((eq (setq last-use-time (cdr entry)) 'T) | |
2402 ;; handle case sensitivity | |
2403 (setq total-perm (1+ total-perm)) | |
2404 (setq last-use-time t)) | |
2405 ((eq last-use-time t) | |
2406 (setq total-perm (1+ total-perm))) | |
2407 ((integerp last-use-time)) | |
2408 )) | |
2409 ;; Valid entry | |
2410 ;; add it in | |
2411 (setq cmpl-last-use-time | |
2412 (completion-last-use-time | |
2413 (setq cmpl-entry | |
2414 (add-completion-to-tail-if-new string)) | |
2415 )) | |
2416 (if (or (eq last-use-time t) | |
2417 (and (> last-use-time 1000);;backcompatibility | |
2418 (not (eq cmpl-last-use-time t)) | |
2419 (or (not cmpl-last-use-time) | |
2420 ;; more recent | |
2421 (> last-use-time cmpl-last-use-time)) | |
2422 )) | |
2423 ;; update last-use-time | |
2424 (set-completion-last-use-time cmpl-entry last-use-time) | |
2425 )) | |
2426 (t | |
2427 ;; Bad format | |
2428 (message "Error: invalid saved completion - %s" | |
2429 (prin1-to-string entry)) | |
2430 ;; try to get back in sync | |
2431 (search-forward "\n(") | |
2432 ))) | |
2433 (search-failed | |
2434 (message "End of file while reading completions.") | |
2435 ) | |
2436 (end-of-file | |
2437 (if (= (point) (point-max)) | |
2438 (if (not no-message-p) | |
2439 (message "Loading completions from file %s . . . Done." | |
2440 filename)) | |
2441 (message "End of file while reading completions.") | |
2442 )) | |
2443 )) | |
2444 | |
2445 (cmpl-statistics-block | |
2446 (record-load-completions | |
2447 total-in-file total-perm | |
2448 (- (aref completion-add-count-vector cmpl-source-init-file) | |
2449 start-num))) | |
2450 | |
2451 ))))) | |
2452 | |
2453 (defun initialize-completions () | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2454 "Load the default completions file. |
1356 | 2455 Also sets up so that exiting emacs will automatically save the file." |
56 | 2456 (interactive) |
2457 (cond ((not cmpl-initialized-p) | |
2458 (load-completions-from-file) | |
2459 )) | |
2460 (setq cmpl-initialized-p t) | |
2461 ) | |
2462 | |
2463 | |
2464 ;;;----------------------------------------------- | |
2465 ;;; Kill EMACS patch | |
2466 ;;;----------------------------------------------- | |
2467 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2468 (add-hook 'kill-emacs-hook |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2469 '(lambda () |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2470 (kill-emacs-save-completions) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2471 (cmpl-statistics-block |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2472 (record-cmpl-kill-emacs)))) |
56 | 2473 |
2474 ;;;----------------------------------------------- | |
2475 ;;; Kill region patch | |
2476 ;;;----------------------------------------------- | |
2477 | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2478 (defun completion-kill-region (&optional beg end) |
56 | 2479 "Kill between point and mark. |
2480 The text is deleted but saved in the kill ring. | |
2481 The command \\[yank] can retrieve it from there. | |
2482 /(If you want to kill and then yank immediately, use \\[copy-region-as-kill].) | |
2483 | |
2484 This is the primitive for programs to kill text (as opposed to deleting it). | |
2485 Supply two arguments, character numbers indicating the stretch of text | |
2486 to be killed. | |
2487 Any command that calls this function is a \"kill command\". | |
2488 If the previous command was also a kill command, | |
2489 the text killed this time appends to the text killed last time | |
2490 to make one entry in the kill ring. | |
2491 Patched to remove the most recent completion." | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2492 (interactive "r") |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2493 (cond ((eq last-command 'complete) |
56 | 2494 (delete-region (point) cmpl-last-insert-location) |
2495 (insert cmpl-original-string) | |
2496 (setq completion-to-accept nil) | |
2497 (cmpl-statistics-block | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2498 (record-complete-failed))) |
56 | 2499 (t |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2500 (kill-region beg end)))) |
56 | 2501 |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2502 (global-set-key "\C-w" 'completion-kill-region) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2503 |
56 | 2504 ;;;----------------------------------------------- |
2505 ;;; Patches to self-insert-command. | |
2506 ;;;----------------------------------------------- | |
2507 | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3186
diff
changeset
|
2508 ;;; Need 2 versions: generic separator chars. and space (to get auto fill |
56 | 2509 ;;; to work) |
2510 | |
2511 ;;; All common separators (eg. space "(" ")" """) characters go through a | |
2512 ;;; function to add new words to the list of words to complete from: | |
2513 ;;; COMPLETION-SEPARATOR-SELF-INSERT-COMMAND (arg). | |
2514 ;;; If the character before this was an alpha-numeric then this adds the | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
3186
diff
changeset
|
2515 ;;; symbol before point to the completion list (using ADD-COMPLETION). |
56 | 2516 |
2517 (defun completion-separator-self-insert-command (arg) | |
2518 (interactive "p") | |
2519 (use-completion-before-separator) | |
2520 (self-insert-command arg) | |
2521 ) | |
2522 | |
2523 (defun completion-separator-self-insert-autofilling (arg) | |
2524 (interactive "p") | |
2525 (use-completion-before-separator) | |
2526 (self-insert-command arg) | |
2527 (and (> (current-column) fill-column) | |
732 | 2528 auto-fill-function |
2529 (funcall auto-fill-function)) | |
56 | 2530 ) |
2531 | |
2532 ;;;----------------------------------------------- | |
2533 ;;; Wrapping Macro | |
2534 ;;;----------------------------------------------- | |
2535 | |
2536 ;;; Note that because of the way byte compiling works, none of | |
2537 ;;; the functions defined with this macro get byte compiled. | |
2538 | |
2539 (defmacro def-completion-wrapper (function-name type &optional new-name) | |
1356 | 2540 "Add a call to update the completion database before function execution. |
2541 TYPE is the type of the wrapper to be added. Can be :before or :under." | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2542 (cond ((eq type ':separator) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2543 (list 'put (list 'quote function-name) ''completion-function |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2544 ''use-completion-before-separator)) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2545 ((eq type ':before) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2546 (list 'put (list 'quote function-name) ''completion-function |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2547 ''use-completion-before-point)) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2548 ((eq type ':backward-under) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2549 (list 'put (list 'quote function-name) ''completion-function |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2550 ''use-completion-backward-under)) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2551 ((eq type ':backward) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2552 (list 'put (list 'quote function-name) ''completion-function |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2553 ''use-completion-backward)) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2554 ((eq type ':under) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2555 (list 'put (list 'quote function-name) ''completion-function |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2556 ''use-completion-under-point)) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2557 ((eq type ':under-or-before) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2558 (list 'put (list 'quote function-name) ''completion-function |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2559 ''use-completion-under-or-before-point)) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2560 ((eq type ':minibuffer-separator) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2561 (list 'put (list 'quote function-name) ''completion-function |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2562 ''use-completion-minibuffer-separator)))) |
56 | 2563 |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2564 (defun use-completion-minibuffer-separator () |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2565 (let ((cmpl-syntax-table cmpl-standard-syntax-table)) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2566 (use-completion-before-separator))) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2567 |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2568 (defun use-completion-backward-under () |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2569 (use-completion-under-point) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2570 (if (eq last-command 'complete) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2571 ;; probably a failed completion if you have to back up |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2572 (cmpl-statistics-block (record-complete-failed)))) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2573 |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2574 (defun use-completion-backward () |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2575 (if (eq last-command 'complete) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2576 ;; probably a failed completion if you have to back up |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2577 (cmpl-statistics-block (record-complete-failed)))) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2578 |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2579 (defun completion-before-command () |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2580 (funcall (or (get this-command 'completion-function) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2581 'use-completion-under-or-before-point))) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2582 (add-hook 'before-command-hook 'completion-before-command) |
56 | 2583 |
2584 | |
2585 ;;;--------------------------------------------------------------------------- | |
2586 ;;; Patches to standard keymaps insert completions | |
2587 ;;;--------------------------------------------------------------------------- | |
2588 | |
2589 ;;;----------------------------------------------- | |
2590 ;;; Separators | |
2591 ;;;----------------------------------------------- | |
2592 ;;; We've used the completion syntax table given as a guide. | |
2593 ;;; | |
2594 ;;; Global separator chars. | |
2595 ;;; We left out <tab> because there are too many special cases for it. Also, | |
2596 ;;; in normal coding it's rarely typed after a word. | |
2597 (global-set-key " " 'completion-separator-self-insert-autofilling) | |
2598 (global-set-key "!" 'completion-separator-self-insert-command) | |
2599 (global-set-key "%" 'completion-separator-self-insert-command) | |
2600 (global-set-key "^" 'completion-separator-self-insert-command) | |
2601 (global-set-key "&" 'completion-separator-self-insert-command) | |
2602 (global-set-key "(" 'completion-separator-self-insert-command) | |
2603 (global-set-key ")" 'completion-separator-self-insert-command) | |
2604 (global-set-key "=" 'completion-separator-self-insert-command) | |
2605 (global-set-key "`" 'completion-separator-self-insert-command) | |
2606 (global-set-key "|" 'completion-separator-self-insert-command) | |
2607 (global-set-key "{" 'completion-separator-self-insert-command) | |
2608 (global-set-key "}" 'completion-separator-self-insert-command) | |
2609 (global-set-key "[" 'completion-separator-self-insert-command) | |
2610 (global-set-key "]" 'completion-separator-self-insert-command) | |
2611 (global-set-key ";" 'completion-separator-self-insert-command) | |
2612 (global-set-key "\"" 'completion-separator-self-insert-command) | |
2613 (global-set-key "'" 'completion-separator-self-insert-command) | |
2614 (global-set-key "#" 'completion-separator-self-insert-command) | |
2615 (global-set-key "," 'completion-separator-self-insert-command) | |
2616 (global-set-key "?" 'completion-separator-self-insert-command) | |
2617 | |
2618 ;;; We include period and colon even though they are symbol chars because : | |
2619 ;;; - in text we want to pick up the last word in a sentence. | |
2620 ;;; - in C pointer refs. we want to pick up the first symbol | |
2621 ;;; - it won't make a difference for lisp mode (package names are short) | |
2622 (global-set-key "." 'completion-separator-self-insert-command) | |
2623 (global-set-key ":" 'completion-separator-self-insert-command) | |
2624 | |
2625 ;;; Lisp Mode diffs | |
2626 (define-key lisp-mode-map "!" 'self-insert-command) | |
2627 (define-key lisp-mode-map "&" 'self-insert-command) | |
2628 (define-key lisp-mode-map "%" 'self-insert-command) | |
2629 (define-key lisp-mode-map "?" 'self-insert-command) | |
2630 (define-key lisp-mode-map "=" 'self-insert-command) | |
2631 (define-key lisp-mode-map "^" 'self-insert-command) | |
2632 | |
2633 ;;; C mode diffs. | |
2634 (def-completion-wrapper electric-c-semi :separator) | |
2635 (define-key c-mode-map "+" 'completion-separator-self-insert-command) | |
2636 (define-key c-mode-map "*" 'completion-separator-self-insert-command) | |
2637 (define-key c-mode-map "/" 'completion-separator-self-insert-command) | |
2638 | |
2639 ;;; FORTRAN mode diffs. (these are defined when fortran is called) | |
2640 (defun completion-setup-fortran-mode () | |
2641 (define-key fortran-mode-map "+" 'completion-separator-self-insert-command) | |
2642 (define-key fortran-mode-map "-" 'completion-separator-self-insert-command) | |
2643 (define-key fortran-mode-map "*" 'completion-separator-self-insert-command) | |
2644 (define-key fortran-mode-map "/" 'completion-separator-self-insert-command) | |
2645 ) | |
2646 | |
2647 ;;;----------------------------------------------- | |
2648 ;;; End of line chars. | |
2649 ;;;----------------------------------------------- | |
2650 (def-completion-wrapper newline :separator) | |
2651 (def-completion-wrapper newline-and-indent :separator) | |
3176 | 2652 (def-completion-wrapper comint-send-input :separator) |
56 | 2653 (def-completion-wrapper exit-minibuffer :minibuffer-separator) |
2654 (def-completion-wrapper eval-print-last-sexp :separator) | |
2655 (def-completion-wrapper eval-last-sexp :separator) | |
2656 ;;(def-completion-wrapper minibuffer-complete-and-exit :minibuffer) | |
2657 | |
2658 ;;;----------------------------------------------- | |
2659 ;;; Cursor movement | |
2660 ;;;----------------------------------------------- | |
2661 | |
2662 (def-completion-wrapper next-line :under-or-before) | |
2663 (def-completion-wrapper previous-line :under-or-before) | |
2664 (def-completion-wrapper beginning-of-buffer :under-or-before) | |
2665 (def-completion-wrapper end-of-buffer :under-or-before) | |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2666 (def-completion-wrapper beginning-of-line :under-or-before) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2667 (def-completion-wrapper end-of-line :under-or-before) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2668 (def-completion-wrapper forward-char :under-or-before) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2669 (def-completion-wrapper forward-word :under-or-before) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2670 (def-completion-wrapper forward-sexp :under-or-before) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2671 (def-completion-wrapper backward-char :backward-under) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2672 (def-completion-wrapper backward-word :backward-under) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2673 (def-completion-wrapper backward-sexp :backward-under) |
56 | 2674 |
3175
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2675 (def-completion-wrapper delete-backward-char :backward) |
15d3c2e32922
Pervasive changes to use Emacs 19 features
Richard M. Stallman <rms@gnu.org>
parents:
3169
diff
changeset
|
2676 (def-completion-wrapper delete-backward-char-untabify :backward) |
56 | 2677 |
2678 ;;; Tests -- | |
2679 ;;; foobarbiz | |
2680 ;;; foobar | |
2681 ;;; fooquux | |
2682 ;;; fooper | |
2683 | |
2684 (cmpl-statistics-block | |
2685 (record-completion-file-loaded)) | |
662
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
190
diff
changeset
|
2686 |
8a533acedb77
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
190
diff
changeset
|
2687 ;;; completion.el ends here |