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