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