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