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