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