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