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