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