(wait_reading_process_input): Use getpid when generating SIGIO.
[emacs.git] / lisp / completion.el
blob2e6c465789f5436ee8544153463fc4e3d9fd7616
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 (truncate
474 (+ (* (/ (car time) 3600.0) (lsh 1 16))
475 (/ (nth 2 time) 3600.0)))))
477 ;;---------------------------------------------------------------------------
478 ;; "Symbol" parsing functions
479 ;;---------------------------------------------------------------------------
480 ;; The functions symbol-before-point, symbol-under-point, etc. quickly return
481 ;; an appropriate symbol string. The strategy is to temporarily change
482 ;; the syntax table to enable fast symbol searching. There are three classes
483 ;; of syntax in these "symbol" syntax tables ::
485 ;; syntax (?_) - "symbol" chars (e.g. alphanumerics)
486 ;; syntax (?w) - symbol chars to ignore at end of words (e.g. period).
487 ;; syntax (? ) - everything else
489 ;; Thus by judicious use of scan-sexps and forward-word, we can get
490 ;; the word we want relatively fast and without consing.
492 ;; Why do we need a separate category for "symbol chars to ignore at ends" ?
493 ;; For example, in LISP we want starting :'s trimmed
494 ;; so keyword argument specifiers also define the keyword completion. And,
495 ;; for example, in C we want `.' appearing in a structure ref. to
496 ;; be kept intact in order to store the whole structure ref.; however, if
497 ;; it appears at the end of a symbol it should be discarded because it is
498 ;; probably used as a period.
500 ;; Here is the default completion syntax ::
501 ;; Symbol chars :: A-Z a-z 0-9 @ / \ * + ~ $ < > %
502 ;; Symbol chars to ignore at ends :: _ : . -
503 ;; Separator chars. :: <tab> <space> ! ^ & ( ) = ` | { } [ ] ; " ' #
504 ;; , ? <Everything else>
506 ;; Mode specific differences and notes ::
507 ;; LISP diffs ->
508 ;; Symbol chars :: ! & ? = ^
510 ;; C diffs ->
511 ;; Separator chars :: + * / : %
512 ;; A note on the hyphen (`-'). Perhaps the hyphen should also be a separator
513 ;; char., however, we wanted to have completion symbols include pointer
514 ;; references. For example, "foo->bar" is a symbol as far as completion is
515 ;; concerned.
517 ;; FORTRAN diffs ->
518 ;; Separator chars :: + - * / :
520 ;; Pathname diffs ->
521 ;; Symbol chars :: .
522 ;; Of course there is no pathname "mode" and in fact we have not implemented
523 ;; this table. However, if there was such a mode, this is what it would look
524 ;; like.
526 ;;-----------------------------------------------
527 ;; Table definitions
528 ;;-----------------------------------------------
530 (defun cmpl-make-standard-completion-syntax-table ()
531 (let ((table (make-syntax-table)) ;; default syntax is whitespace
533 ;; alpha chars
534 (setq i 0)
535 (while (< i 26)
536 (modify-syntax-entry (+ ?a i) "_" table)
537 (modify-syntax-entry (+ ?A i) "_" table)
538 (setq i (1+ i)))
539 ;; digit chars.
540 (setq i 0)
541 (while (< i 10)
542 (modify-syntax-entry (+ ?0 i) "_" table)
543 (setq i (1+ i)))
544 ;; Other ones
545 (let ((symbol-chars '(?@ ?/ ?\\ ?* ?+ ?~ ?$ ?< ?> ?%))
546 (symbol-chars-ignore '(?_ ?- ?: ?.))
548 (completion-dolist (char symbol-chars)
549 (modify-syntax-entry char "_" table))
550 (completion-dolist (char symbol-chars-ignore)
551 (modify-syntax-entry char "w" table)
554 table))
556 (defconst cmpl-standard-syntax-table (cmpl-make-standard-completion-syntax-table))
558 (defun cmpl-make-lisp-completion-syntax-table ()
559 (let ((table (copy-syntax-table cmpl-standard-syntax-table))
560 (symbol-chars '(?! ?& ?? ?= ?^))
562 (completion-dolist (char symbol-chars)
563 (modify-syntax-entry char "_" table))
564 table))
566 (defun cmpl-make-c-completion-syntax-table ()
567 (let ((table (copy-syntax-table cmpl-standard-syntax-table))
568 (separator-chars '(?+ ?* ?/ ?: ?%))
570 (completion-dolist (char separator-chars)
571 (modify-syntax-entry char " " table))
572 table))
574 (defun cmpl-make-fortran-completion-syntax-table ()
575 (let ((table (copy-syntax-table cmpl-standard-syntax-table))
576 (separator-chars '(?+ ?- ?* ?/ ?:))
578 (completion-dolist (char separator-chars)
579 (modify-syntax-entry char " " table))
580 table))
582 (defconst cmpl-lisp-syntax-table (cmpl-make-lisp-completion-syntax-table))
583 (defconst cmpl-c-syntax-table (cmpl-make-c-completion-syntax-table))
584 (defconst cmpl-fortran-syntax-table (cmpl-make-fortran-completion-syntax-table))
586 (defvar cmpl-syntax-table cmpl-standard-syntax-table
587 "This variable holds the current completion syntax table.")
588 (make-variable-buffer-local 'cmpl-syntax-table)
590 ;;-----------------------------------------------
591 ;; Installing the appropriate mode tables
592 ;;-----------------------------------------------
594 (add-hook 'lisp-mode-hook
595 '(lambda ()
596 (setq cmpl-syntax-table cmpl-lisp-syntax-table)))
598 (add-hook 'c-mode-hook
599 '(lambda ()
600 (setq cmpl-syntax-table cmpl-c-syntax-table)))
602 (add-hook 'fortran-mode-hook
603 '(lambda ()
604 (setq cmpl-syntax-table cmpl-fortran-syntax-table)
605 (completion-setup-fortran-mode)))
607 ;;-----------------------------------------------
608 ;; Symbol functions
609 ;;-----------------------------------------------
610 (defvar cmpl-symbol-start nil
611 "Holds first character of symbol, after any completion symbol function.")
612 (defvar cmpl-symbol-end nil
613 "Holds last character of symbol, after any completion symbol function.")
614 ;; These are temp. vars. we use to avoid using let.
615 ;; Why ? Small speed improvement.
616 (defvar cmpl-saved-syntax nil)
617 (defvar cmpl-saved-point nil)
619 (defun symbol-under-point ()
620 "Returns the symbol that the point is currently on.
621 But only if it is longer than `completion-min-length'."
622 (setq cmpl-saved-syntax (syntax-table))
623 (unwind-protect
624 (progn
625 (set-syntax-table cmpl-syntax-table)
626 (cond
627 ;; Cursor is on following-char and after preceding-char
628 ((memq (char-syntax (following-char)) '(?w ?_))
629 (setq cmpl-saved-point (point)
630 cmpl-symbol-start (scan-sexps (1+ cmpl-saved-point) -1)
631 cmpl-symbol-end (scan-sexps cmpl-saved-point 1))
632 ;; Remove chars to ignore at the start.
633 (cond ((= (char-syntax (char-after cmpl-symbol-start)) ?w)
634 (goto-char cmpl-symbol-start)
635 (forward-word 1)
636 (setq cmpl-symbol-start (point))
637 (goto-char cmpl-saved-point)
639 ;; Remove chars to ignore at the end.
640 (cond ((= (char-syntax (char-after (1- cmpl-symbol-end))) ?w)
641 (goto-char cmpl-symbol-end)
642 (forward-word -1)
643 (setq cmpl-symbol-end (point))
644 (goto-char cmpl-saved-point)
646 ;; Return completion if the length is reasonable.
647 (if (and (<= (cmpl-read-time-eval completion-min-length)
648 (- cmpl-symbol-end cmpl-symbol-start))
649 (<= (- cmpl-symbol-end cmpl-symbol-start)
650 (cmpl-read-time-eval completion-max-length)))
651 (buffer-substring cmpl-symbol-start cmpl-symbol-end)))))
652 (set-syntax-table cmpl-saved-syntax)))
654 ;; tests for symbol-under-point
655 ;; `^' indicates cursor pos. where value is returned
656 ;; simple-word-test
657 ;; ^^^^^^^^^^^^^^^^ --> simple-word-test
658 ;; _harder_word_test_
659 ;; ^^^^^^^^^^^^^^^^^^ --> harder_word_test
660 ;; .___.______.
661 ;; --> nil
662 ;; /foo/bar/quux.hello
663 ;; ^^^^^^^^^^^^^^^^^^^ --> /foo/bar/quux.hello
666 (defun symbol-before-point ()
667 "Returns a string of the symbol immediately before point.
668 Returns nil if there isn't one longer than `completion-min-length'."
669 ;; This is called when a word separator is typed so it must be FAST !
670 (setq cmpl-saved-syntax (syntax-table))
671 (unwind-protect
672 (progn
673 (set-syntax-table cmpl-syntax-table)
674 ;; Cursor is on following-char and after preceding-char
675 (cond ((= (setq cmpl-preceding-syntax (char-syntax (preceding-char))) ?_)
676 ;; Number of chars to ignore at end.
677 (setq cmpl-symbol-end (point)
678 cmpl-symbol-start (scan-sexps cmpl-symbol-end -1)
680 ;; Remove chars to ignore at the start.
681 (cond ((= (char-syntax (char-after cmpl-symbol-start)) ?w)
682 (goto-char cmpl-symbol-start)
683 (forward-word 1)
684 (setq cmpl-symbol-start (point))
685 (goto-char cmpl-symbol-end)
687 ;; Return value if long enough.
688 (if (>= cmpl-symbol-end
689 (+ cmpl-symbol-start
690 (cmpl-read-time-eval completion-min-length)))
691 (buffer-substring cmpl-symbol-start cmpl-symbol-end))
693 ((= cmpl-preceding-syntax ?w)
694 ;; chars to ignore at end
695 (setq cmpl-saved-point (point)
696 cmpl-symbol-start (scan-sexps cmpl-saved-point -1))
697 ;; take off chars. from end
698 (forward-word -1)
699 (setq cmpl-symbol-end (point))
700 ;; remove chars to ignore at the start
701 (cond ((= (char-syntax (char-after cmpl-symbol-start)) ?w)
702 (goto-char cmpl-symbol-start)
703 (forward-word 1)
704 (setq cmpl-symbol-start (point))
706 ;; Restore state.
707 (goto-char cmpl-saved-point)
708 ;; Return completion if the length is reasonable
709 (if (and (<= (cmpl-read-time-eval completion-min-length)
710 (- cmpl-symbol-end cmpl-symbol-start))
711 (<= (- cmpl-symbol-end cmpl-symbol-start)
712 (cmpl-read-time-eval completion-max-length)))
713 (buffer-substring cmpl-symbol-start cmpl-symbol-end)))))
714 (set-syntax-table cmpl-saved-syntax)))
716 ;; tests for symbol-before-point
717 ;; `^' indicates cursor pos. where value is returned
718 ;; simple-word-test
719 ;; ^ --> nil
720 ;; ^ --> nil
721 ;; ^ --> simple-w
722 ;; ^ --> simple-word-test
723 ;; _harder_word_test_
724 ;; ^ --> harder_word_test
725 ;; ^ --> harder_word_test
726 ;; ^ --> harder
727 ;; .___....
728 ;; --> nil
730 (defun symbol-under-or-before-point ()
731 ;; This could be made slightly faster but it is better to avoid
732 ;; copying all the code.
733 ;; However, it is only used by the completion string prompter.
734 ;; If it comes into common use, it could be rewritten.
735 (cond ((memq (progn
736 (setq cmpl-saved-syntax (syntax-table))
737 (unwind-protect
738 (progn
739 (set-syntax-table cmpl-syntax-table)
740 (char-syntax (following-char)))
741 (set-syntax-table cmpl-saved-syntax)))
742 '(?w ?_))
743 (symbol-under-point))
745 (symbol-before-point))))
748 (defun symbol-before-point-for-complete ()
749 ;; "Returns a string of the symbol immediately before point
750 ;; or nil if there isn't one. Like symbol-before-point but doesn't trim the
751 ;; end chars."
752 ;; Cursor is on following-char and after preceding-char
753 (setq cmpl-saved-syntax (syntax-table))
754 (unwind-protect
755 (progn
756 (set-syntax-table cmpl-syntax-table)
757 (cond ((memq (setq cmpl-preceding-syntax (char-syntax (preceding-char)))
758 '(?_ ?w))
759 (setq cmpl-symbol-end (point)
760 cmpl-symbol-start (scan-sexps cmpl-symbol-end -1)
762 ;; Remove chars to ignore at the start.
763 (cond ((= (char-syntax (char-after cmpl-symbol-start)) ?w)
764 (goto-char cmpl-symbol-start)
765 (forward-word 1)
766 (setq cmpl-symbol-start (point))
767 (goto-char cmpl-symbol-end)
769 ;; Return completion if the length is reasonable.
770 (if (and (<= (cmpl-read-time-eval
771 completion-prefix-min-length)
772 (- cmpl-symbol-end cmpl-symbol-start))
773 (<= (- cmpl-symbol-end cmpl-symbol-start)
774 (cmpl-read-time-eval completion-max-length)))
775 (buffer-substring cmpl-symbol-start cmpl-symbol-end)))))
776 ;; Restore syntax table.
777 (set-syntax-table cmpl-saved-syntax)))
779 ;; tests for symbol-before-point-for-complete
780 ;; `^' indicates cursor pos. where value is returned
781 ;; simple-word-test
782 ;; ^ --> nil
783 ;; ^ --> nil
784 ;; ^ --> simple-w
785 ;; ^ --> simple-word-test
786 ;; _harder_word_test_
787 ;; ^ --> harder_word_test
788 ;; ^ --> harder_word_test_
789 ;; ^ --> harder_
790 ;; .___....
791 ;; --> nil
795 ;;---------------------------------------------------------------------------
796 ;; Statistics Recording
797 ;;---------------------------------------------------------------------------
799 ;; Note that the guts of this has been turned off. The guts
800 ;; are in completion-stats.el.
802 ;;-----------------------------------------------
803 ;; Conditionalizing code on *record-cmpl-statistics-p*
804 ;;-----------------------------------------------
805 ;; All statistics code outside this block should use this
806 (defmacro cmpl-statistics-block (&rest body))
807 ;; "Only executes body if we are recording statistics."
808 ;; (list 'cond
809 ;; (list* '*record-cmpl-statistics-p* body)
810 ;; ))
812 ;;-----------------------------------------------
813 ;; Completion Sources
814 ;;-----------------------------------------------
816 ;; ID numbers
817 (defconst cmpl-source-unknown 0)
818 (defconst cmpl-source-init-file 1)
819 (defconst cmpl-source-file-parsing 2)
820 (defconst cmpl-source-separator 3)
821 (defconst cmpl-source-cursor-moves 4)
822 (defconst cmpl-source-interactive 5)
823 (defconst cmpl-source-cdabbrev 6)
824 (defconst num-cmpl-sources 7)
825 (defvar current-completion-source cmpl-source-unknown)
829 ;;---------------------------------------------------------------------------
830 ;; Completion Method #2: dabbrev-expand style
831 ;;---------------------------------------------------------------------------
833 ;; This method is used if there are no useful stored completions. It is
834 ;; based on dabbrev-expand with these differences :
835 ;; 1) Faster (we don't use regexps)
836 ;; 2) case coercion handled correctly
837 ;; This is called cdabbrev to differentiate it.
838 ;; We simply search backwards through the file looking for words which
839 ;; start with the same letters we are trying to complete.
842 (defvar cdabbrev-completions-tried nil)
843 ;; "A list of all the cdabbrev completions since the last reset.")
845 (defvar cdabbrev-current-point 0)
846 ;; "The current point position the cdabbrev search is at.")
848 (defvar cdabbrev-current-window nil)
849 ;; "The current window we are looking for cdabbrevs in. T if looking in
850 ;; (other-buffer), NIL if no more cdabbrevs.")
852 (defvar cdabbrev-wrapped-p nil)
853 ;; "T if the cdabbrev search has wrapped around the file.")
855 (defvar cdabbrev-abbrev-string "")
856 (defvar cdabbrev-start-point 0)
857 (defvar cdabbrev-stop-point)
859 ;; Test strings for cdabbrev
860 ;; cdat-upcase ;;same namestring
861 ;; CDAT-UPCASE ;;ok
862 ;; cdat2 ;;too short
863 ;; cdat-1-2-3-4 ;;ok
864 ;; a-cdat-1 ;;doesn't start correctly
865 ;; cdat-simple ;;ok
868 (defun reset-cdabbrev (abbrev-string &optional initial-completions-tried)
869 "Resets the cdabbrev search to search for abbrev-string.
870 INITIAL-COMPLETIONS-TRIED is a list of downcased strings to ignore
871 during the search."
872 (setq cdabbrev-abbrev-string abbrev-string
873 cdabbrev-completions-tried
874 (cons (downcase abbrev-string) initial-completions-tried)
876 (reset-cdabbrev-window t)
879 (defun set-cdabbrev-buffer ()
880 ;; cdabbrev-current-window must not be NIL
881 (set-buffer (if (eq cdabbrev-current-window t)
882 (other-buffer)
883 (window-buffer cdabbrev-current-window)))
887 (defun reset-cdabbrev-window (&optional initializep)
888 "Resets the cdabbrev search to search for abbrev-string."
889 ;; Set the window
890 (cond (initializep
891 (setq cdabbrev-current-window (selected-window))
893 ((eq cdabbrev-current-window t)
894 ;; Everything has failed
895 (setq cdabbrev-current-window nil))
896 (cdabbrev-current-window
897 (setq cdabbrev-current-window (next-window cdabbrev-current-window))
898 (if (eq cdabbrev-current-window (selected-window))
899 ;; No more windows, try other buffer.
900 (setq cdabbrev-current-window t)))
902 (if cdabbrev-current-window
903 (save-excursion
904 (set-cdabbrev-buffer)
905 (setq cdabbrev-current-point (point)
906 cdabbrev-start-point cdabbrev-current-point
907 cdabbrev-stop-point
908 (if completion-search-distance
909 (max (point-min)
910 (- cdabbrev-start-point completion-search-distance))
911 (point-min))
912 cdabbrev-wrapped-p nil)
915 (defun next-cdabbrev ()
916 "Return the next possible cdabbrev expansion or nil if there isn't one.
917 `reset-cdabbrev' must've been called already.
918 This is sensitive to `case-fold-search'."
919 ;; note that case-fold-search affects the behavior of this function
920 ;; Bug: won't pick up an expansion that starts at the top of buffer
921 (if cdabbrev-current-window
922 (let (saved-point
923 saved-syntax
924 (expansion nil)
925 downcase-expansion tried-list syntax saved-point-2)
926 (save-excursion
927 (unwind-protect
928 (progn
929 ;; Switch to current completion buffer
930 (set-cdabbrev-buffer)
931 ;; Save current buffer state
932 (setq saved-point (point)
933 saved-syntax (syntax-table))
934 ;; Restore completion state
935 (set-syntax-table cmpl-syntax-table)
936 (goto-char cdabbrev-current-point)
937 ;; Loop looking for completions
938 (while
939 ;; This code returns t if it should loop again
940 (cond
941 (;; search for the string
942 (search-backward cdabbrev-abbrev-string cdabbrev-stop-point t)
943 ;; return nil if the completion is valid
944 (not
945 (and
946 ;; does it start with a separator char ?
947 (or (= (setq syntax (char-syntax (preceding-char))) ? )
948 (and (= syntax ?w)
949 ;; symbol char to ignore at end. Are we at end ?
950 (progn
951 (setq saved-point-2 (point))
952 (forward-word -1)
953 (prog1
954 (= (char-syntax (preceding-char)) ? )
955 (goto-char saved-point-2)
956 ))))
957 ;; is the symbol long enough ?
958 (setq expansion (symbol-under-point))
959 ;; have we not tried this one before
960 (progn
961 ;; See if we've already used it
962 (setq tried-list cdabbrev-completions-tried
963 downcase-expansion (downcase expansion))
964 (while (and tried-list
965 (not (string-equal downcase-expansion
966 (car tried-list))))
967 ;; Already tried, don't choose this one
968 (setq tried-list (cdr tried-list))
970 ;; at this point tried-list will be nil if this
971 ;; expansion has not yet been tried
972 (if tried-list
973 (setq expansion nil)
975 ))))
976 ;; search failed
977 (cdabbrev-wrapped-p
978 ;; If already wrapped, then we've failed completely
979 nil)
981 ;; need to wrap
982 (goto-char (setq cdabbrev-current-point
983 (if completion-search-distance
984 (min (point-max) (+ cdabbrev-start-point completion-search-distance))
985 (point-max))))
987 (setq cdabbrev-wrapped-p t))
989 ;; end of while loop
990 (cond (expansion
991 ;; successful
992 (setq cdabbrev-completions-tried
993 (cons downcase-expansion cdabbrev-completions-tried)
994 cdabbrev-current-point (point))))
996 (set-syntax-table saved-syntax)
997 (goto-char saved-point)
999 ;; If no expansion, go to next window
1000 (cond (expansion)
1001 (t (reset-cdabbrev-window)
1002 (next-cdabbrev))))))
1004 ;; The following must be eval'd in the minibuffer ::
1005 ;; (reset-cdabbrev "cdat")
1006 ;; (next-cdabbrev) --> "cdat-simple"
1007 ;; (next-cdabbrev) --> "cdat-1-2-3-4"
1008 ;; (next-cdabbrev) --> "CDAT-UPCASE"
1009 ;; (next-cdabbrev) --> "cdat-wrapping"
1010 ;; (next-cdabbrev) --> "cdat_start_sym"
1011 ;; (next-cdabbrev) --> nil
1012 ;; (next-cdabbrev) --> nil
1013 ;; (next-cdabbrev) --> nil
1015 ;; _cdat_start_sym
1016 ;; cdat-wrapping
1019 ;;---------------------------------------------------------------------------
1020 ;; Completion Database
1021 ;;---------------------------------------------------------------------------
1023 ;; We use two storage modes for the two search types ::
1024 ;; 1) Prefix {cmpl-prefix-obarray} for looking up possible completions
1025 ;; Used by search-completion-next
1026 ;; the value of the symbol is nil or a cons of head and tail pointers
1027 ;; 2) Interning {cmpl-obarray} to see if it's in the database
1028 ;; Used by find-exact-completion, completion-in-database-p
1029 ;; The value of the symbol is the completion entry
1031 ;; bad things may happen if this length is changed due to the way
1032 ;; GNU implements obarrays
1033 (defconst cmpl-obarray-length 511)
1035 (defvar cmpl-prefix-obarray (make-vector cmpl-obarray-length 0)
1036 "An obarray used to store the downcased completion prefixes.
1037 Each symbol is bound to a list of completion entries.")
1039 (defvar cmpl-obarray (make-vector cmpl-obarray-length 0)
1040 "An obarray used to store the downcased completions.
1041 Each symbol is bound to a single completion entry.")
1043 ;;-----------------------------------------------
1044 ;; Completion Entry Structure Definition
1045 ;;-----------------------------------------------
1047 ;; A completion entry is a LIST of string, prefix-symbol num-uses, and
1048 ;; last-use-time (the time the completion was last used)
1049 ;; last-use-time is T if the string should be kept permanently
1050 ;; num-uses is incremented every time the completion is used.
1052 ;; We chose lists because (car foo) is faster than (aref foo 0) and the
1053 ;; creation time is about the same.
1055 ;; READER MACROS
1057 (defmacro completion-string (completion-entry)
1058 (list 'car completion-entry))
1060 (defmacro completion-num-uses (completion-entry)
1061 ;; "The number of times it has used. Used to decide whether to save
1062 ;; it."
1063 (list 'car (list 'cdr completion-entry)))
1065 (defmacro completion-last-use-time (completion-entry)
1066 ;; "The time it was last used. In hours since origin. Used to decide
1067 ;; whether to save it. T if one should always save it."
1068 (list 'nth 2 completion-entry))
1070 (defmacro completion-source (completion-entry)
1071 (list 'nth 3 completion-entry))
1073 ;; WRITER MACROS
1074 (defmacro set-completion-string (completion-entry string)
1075 (list 'setcar completion-entry string))
1077 (defmacro set-completion-num-uses (completion-entry num-uses)
1078 (list 'setcar (list 'cdr completion-entry) num-uses))
1080 (defmacro set-completion-last-use-time (completion-entry last-use-time)
1081 (list 'setcar (list 'cdr (list 'cdr completion-entry)) last-use-time))
1083 ;; CONSTRUCTOR
1084 (defun make-completion (string)
1085 "Returns a list of a completion entry."
1086 (list (list string 0 nil current-completion-source)))
1088 ;; Obsolete
1089 ;;(defmacro cmpl-prefix-entry-symbol (completion-entry)
1090 ;; (list 'car (list 'cdr completion-entry)))
1094 ;;-----------------------------------------------
1095 ;; Prefix symbol entry definition
1096 ;;-----------------------------------------------
1097 ;; A cons of (head . tail)
1099 ;; READER Macros
1101 (defmacro cmpl-prefix-entry-head (prefix-entry)
1102 (list 'car prefix-entry))
1104 (defmacro cmpl-prefix-entry-tail (prefix-entry)
1105 (list 'cdr prefix-entry))
1107 ;; WRITER Macros
1109 (defmacro set-cmpl-prefix-entry-head (prefix-entry new-head)
1110 (list 'setcar prefix-entry new-head))
1112 (defmacro set-cmpl-prefix-entry-tail (prefix-entry new-tail)
1113 (list 'setcdr prefix-entry new-tail))
1115 ;; Constructor
1117 (defun make-cmpl-prefix-entry (completion-entry-list)
1118 "Makes a new prefix entry containing only completion-entry."
1119 (cons completion-entry-list completion-entry-list))
1121 ;;-----------------------------------------------
1122 ;; Completion Database - Utilities
1123 ;;-----------------------------------------------
1125 (defun clear-all-completions ()
1126 "Initializes the completion storage. All existing completions are lost."
1127 (interactive)
1128 (setq cmpl-prefix-obarray (make-vector cmpl-obarray-length 0))
1129 (setq cmpl-obarray (make-vector cmpl-obarray-length 0))
1130 (cmpl-statistics-block
1131 (record-clear-all-completions))
1134 (defvar completions-list-return-value)
1136 (defun list-all-completions ()
1137 "Returns a list of all the known completion entries."
1138 (let ((completions-list-return-value nil))
1139 (mapatoms 'list-all-completions-1 cmpl-prefix-obarray)
1140 completions-list-return-value))
1142 (defun list-all-completions-1 (prefix-symbol)
1143 (if (boundp prefix-symbol)
1144 (setq completions-list-return-value
1145 (append (cmpl-prefix-entry-head (symbol-value prefix-symbol))
1146 completions-list-return-value))))
1148 (defun list-all-completions-by-hash-bucket ()
1149 "Return list of lists of known completion entries, organized by hash bucket."
1150 (let ((completions-list-return-value nil))
1151 (mapatoms 'list-all-completions-by-hash-bucket-1 cmpl-prefix-obarray)
1152 completions-list-return-value))
1154 (defun list-all-completions-by-hash-bucket-1 (prefix-symbol)
1155 (if (boundp prefix-symbol)
1156 (setq completions-list-return-value
1157 (cons (cmpl-prefix-entry-head (symbol-value prefix-symbol))
1158 completions-list-return-value))))
1161 ;;-----------------------------------------------
1162 ;; Updating the database
1163 ;;-----------------------------------------------
1165 ;; These are the internal functions used to update the datebase
1168 (defvar completion-to-accept nil)
1169 ;;"Set to a string that is pending its acceptance."
1170 ;; this checked by the top level reading functions
1172 (defvar cmpl-db-downcase-string nil)
1173 ;; "Setup by find-exact-completion, etc. The given string, downcased."
1174 (defvar cmpl-db-symbol nil)
1175 ;; "The interned symbol corresponding to cmpl-db-downcase-string.
1176 ;; Set up by cmpl-db-symbol."
1177 (defvar cmpl-db-prefix-symbol nil)
1178 ;; "The interned prefix symbol corresponding to cmpl-db-downcase-string."
1179 (defvar cmpl-db-entry nil)
1180 (defvar cmpl-db-debug-p nil
1181 "Set to T if you want to debug the database.")
1183 ;; READS
1184 (defun find-exact-completion (string)
1185 "Returns the completion entry for string or nil.
1186 Sets up `cmpl-db-downcase-string' and `cmpl-db-symbol'."
1187 (and (boundp (setq cmpl-db-symbol
1188 (intern (setq cmpl-db-downcase-string (downcase string))
1189 cmpl-obarray)))
1190 (symbol-value cmpl-db-symbol)
1193 (defun find-cmpl-prefix-entry (prefix-string)
1194 "Returns the prefix entry for string.
1195 Sets `cmpl-db-prefix-symbol'.
1196 Prefix-string must be exactly `completion-prefix-min-length' long
1197 and downcased. Sets up `cmpl-db-prefix-symbol'."
1198 (and (boundp (setq cmpl-db-prefix-symbol
1199 (intern prefix-string cmpl-prefix-obarray)))
1200 (symbol-value cmpl-db-prefix-symbol)))
1202 (defvar inside-locate-completion-entry nil)
1203 ;; used to trap lossage in silent error correction
1205 (defun locate-completion-entry (completion-entry prefix-entry)
1206 "Locates the completion entry.
1207 Returns a pointer to the element before the completion entry or nil if
1208 the completion entry is at the head.
1209 Must be called after `find-exact-completion'."
1210 (let ((prefix-list (cmpl-prefix-entry-head prefix-entry))
1211 next-prefix-list
1213 (cond
1214 ((not (eq (car prefix-list) completion-entry))
1215 ;; not already at head
1216 (while (and prefix-list
1217 (not (eq completion-entry
1218 (car (setq next-prefix-list (cdr prefix-list)))
1220 (setq prefix-list next-prefix-list))
1221 (cond (;; found
1222 prefix-list)
1223 ;; Didn't find it. Database is messed up.
1224 (cmpl-db-debug-p
1225 ;; not found, error if debug mode
1226 (error "Completion entry exists but not on prefix list - %s"
1227 completion-string))
1228 (inside-locate-completion-entry
1229 ;; recursive error: really scrod
1230 (locate-completion-db-error))
1232 ;; Patch out
1233 (set cmpl-db-symbol nil)
1234 ;; Retry
1235 (locate-completion-entry-retry completion-entry)
1236 ))))))
1238 (defun locate-completion-entry-retry (old-entry)
1239 (let ((inside-locate-completion-entry t))
1240 (add-completion (completion-string old-entry)
1241 (completion-num-uses old-entry)
1242 (completion-last-use-time old-entry))
1243 (let* ((cmpl-entry (find-exact-completion (completion-string old-entry)))
1244 (pref-entry
1245 (if cmpl-entry
1246 (find-cmpl-prefix-entry
1247 (substring cmpl-db-downcase-string
1248 0 completion-prefix-min-length))))
1250 (if (and cmpl-entry pref-entry)
1251 ;; try again
1252 (locate-completion-entry cmpl-entry pref-entry)
1253 ;; still losing
1254 (locate-completion-db-error))
1257 (defun locate-completion-db-error ()
1258 ;; recursive error: really scrod
1259 (error "Completion database corrupted. Try M-x clear-all-completions. Send bug report.")
1262 ;; WRITES
1263 (defun add-completion-to-tail-if-new (string)
1264 "If STRING is not in the database add it to appropriate prefix list.
1265 STRING is added to the end of the appropriate prefix list with
1266 num-uses = 0. The database is unchanged if it is there. STRING must be
1267 longer than `completion-prefix-min-length'.
1268 This must be very fast.
1269 Returns the completion entry."
1270 (or (find-exact-completion string)
1271 ;; not there
1272 (let (;; create an entry
1273 (entry (make-completion string))
1274 ;; setup the prefix
1275 (prefix-entry (find-cmpl-prefix-entry
1276 (substring cmpl-db-downcase-string 0
1277 (cmpl-read-time-eval
1278 completion-prefix-min-length))))
1280 ;; The next two forms should happen as a unit (atomically) but
1281 ;; no fatal errors should result if that is not the case.
1282 (cond (prefix-entry
1283 ;; These two should be atomic, but nothing fatal will happen
1284 ;; if they're not.
1285 (setcdr (cmpl-prefix-entry-tail prefix-entry) entry)
1286 (set-cmpl-prefix-entry-tail prefix-entry entry))
1288 (set cmpl-db-prefix-symbol (make-cmpl-prefix-entry entry))
1290 ;; statistics
1291 (cmpl-statistics-block
1292 (note-added-completion))
1293 ;; set symbol
1294 (set cmpl-db-symbol (car entry))
1297 (defun add-completion-to-head (completion-string)
1298 "If COMPLETION-STRING is not in the database, add it to prefix list.
1299 We add COMPLETION-STRING to the head of the appropriate prefix list,
1300 or it to the head of the list.
1301 COMPLETION-STRING must be longer than `completion-prefix-min-length'.
1302 Updates the saved string with the supplied string.
1303 This must be very fast.
1304 Returns the completion entry."
1305 ;; Handle pending acceptance
1306 (if completion-to-accept (accept-completion))
1307 ;; test if already in database
1308 (if (setq cmpl-db-entry (find-exact-completion completion-string))
1309 ;; found
1310 (let* ((prefix-entry (find-cmpl-prefix-entry
1311 (substring cmpl-db-downcase-string 0
1312 (cmpl-read-time-eval
1313 completion-prefix-min-length))))
1314 (splice-ptr (locate-completion-entry cmpl-db-entry prefix-entry))
1315 (cmpl-ptr (cdr splice-ptr))
1317 ;; update entry
1318 (set-completion-string cmpl-db-entry completion-string)
1319 ;; move to head (if necessary)
1320 (cond (splice-ptr
1321 ;; These should all execute atomically but it is not fatal if
1322 ;; they don't.
1323 ;; splice it out
1324 (or (setcdr splice-ptr (cdr cmpl-ptr))
1325 ;; fix up tail if necessary
1326 (set-cmpl-prefix-entry-tail prefix-entry splice-ptr))
1327 ;; splice in at head
1328 (setcdr cmpl-ptr (cmpl-prefix-entry-head prefix-entry))
1329 (set-cmpl-prefix-entry-head prefix-entry cmpl-ptr)
1331 cmpl-db-entry)
1332 ;; not there
1333 (let (;; create an entry
1334 (entry (make-completion completion-string))
1335 ;; setup the prefix
1336 (prefix-entry (find-cmpl-prefix-entry
1337 (substring cmpl-db-downcase-string 0
1338 (cmpl-read-time-eval
1339 completion-prefix-min-length))))
1341 (cond (prefix-entry
1342 ;; Splice in at head
1343 (setcdr entry (cmpl-prefix-entry-head prefix-entry))
1344 (set-cmpl-prefix-entry-head prefix-entry entry))
1346 ;; Start new prefix entry
1347 (set cmpl-db-prefix-symbol (make-cmpl-prefix-entry entry))
1349 ;; statistics
1350 (cmpl-statistics-block
1351 (note-added-completion))
1352 ;; Add it to the symbol
1353 (set cmpl-db-symbol (car entry))
1356 (defun delete-completion (completion-string)
1357 "Deletes the completion from the database.
1358 String must be longer than `completion-prefix-min-length'."
1359 ;; Handle pending acceptance
1360 (if completion-to-accept (accept-completion))
1361 (if (setq cmpl-db-entry (find-exact-completion completion-string))
1362 ;; found
1363 (let* ((prefix-entry (find-cmpl-prefix-entry
1364 (substring cmpl-db-downcase-string 0
1365 (cmpl-read-time-eval
1366 completion-prefix-min-length))))
1367 (splice-ptr (locate-completion-entry cmpl-db-entry prefix-entry))
1369 ;; delete symbol reference
1370 (set cmpl-db-symbol nil)
1371 ;; remove from prefix list
1372 (cond (splice-ptr
1373 ;; not at head
1374 (or (setcdr splice-ptr (cdr (cdr splice-ptr)))
1375 ;; fix up tail if necessary
1376 (set-cmpl-prefix-entry-tail prefix-entry splice-ptr))
1379 ;; at head
1380 (or (set-cmpl-prefix-entry-head
1381 prefix-entry (cdr (cmpl-prefix-entry-head prefix-entry)))
1382 ;; List is now empty
1383 (set cmpl-db-prefix-symbol nil))
1385 (cmpl-statistics-block
1386 (note-completion-deleted))
1388 (error "Unknown completion `%s'" completion-string)
1391 ;; Tests --
1392 ;; - Add and Find -
1393 ;; (add-completion-to-head "banana") --> ("banana" 0 nil 0)
1394 ;; (find-exact-completion "banana") --> ("banana" 0 nil 0)
1395 ;; (find-exact-completion "bana") --> nil
1396 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1397 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1398 ;; (add-completion-to-head "banish") --> ("banish" 0 nil 0)
1399 ;; (find-exact-completion "banish") --> ("banish" 0 nil 0)
1400 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banish" ...) ("banana" ...))
1401 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1402 ;; (add-completion-to-head "banana") --> ("banana" 0 nil 0)
1403 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...) ("banish" ...))
1404 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banish" ...))
1406 ;; - Deleting -
1407 ;; (add-completion-to-head "banner") --> ("banner" 0 nil 0)
1408 ;; (delete-completion "banner")
1409 ;; (find-exact-completion "banner") --> nil
1410 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...) ("banish" ...))
1411 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banish" ...))
1412 ;; (add-completion-to-head "banner") --> ("banner" 0 nil 0)
1413 ;; (delete-completion "banana")
1414 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banner" ...) ("banish" ...))
1415 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banish" ...))
1416 ;; (delete-completion "banner")
1417 ;; (delete-completion "banish")
1418 ;; (find-cmpl-prefix-entry "ban") --> nil
1419 ;; (delete-completion "banner") --> error
1421 ;; - Tail -
1422 ;; (add-completion-to-tail-if-new "banana") --> ("banana" 0 nil 0)
1423 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1424 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1425 ;; (add-completion-to-tail-if-new "banish") --> ("banish" 0 nil 0)
1426 ;; (car (find-cmpl-prefix-entry "ban")) -->(("banana" ...) ("banish" ...))
1427 ;; (cdr (find-cmpl-prefix-entry "ban")) -->(("banish" ...))
1431 ;;---------------------------------------------------------------------------
1432 ;; Database Update :: Interface level routines
1433 ;;---------------------------------------------------------------------------
1435 ;; These lie on top of the database ref. functions but below the standard
1436 ;; user interface level
1439 (defun interactive-completion-string-reader (prompt)
1440 (let* ((default (symbol-under-or-before-point))
1441 (new-prompt
1442 (if default
1443 (format "%s: (default: %s) " prompt default)
1444 (format "%s: " prompt))
1446 (read (completing-read new-prompt cmpl-obarray))
1448 (if (zerop (length read)) (setq read (or default "")))
1449 (list read)
1452 (defun check-completion-length (string)
1453 (if (< (length string) completion-min-length)
1454 (error "The string `%s' is too short to be saved as a completion"
1455 string)
1456 (list string)))
1458 (defun add-completion (string &optional num-uses last-use-time)
1459 "Add STRING to completion list, or move it to head of list.
1460 The completion is altered appropriately if num-uses and/or last-use-time is
1461 specified."
1462 (interactive (interactive-completion-string-reader "Completion to add"))
1463 (check-completion-length string)
1464 (let* ((current-completion-source (if (interactive-p)
1465 cmpl-source-interactive
1466 current-completion-source))
1467 (entry (add-completion-to-head string)))
1469 (if num-uses (set-completion-num-uses entry num-uses))
1470 (if last-use-time
1471 (set-completion-last-use-time entry last-use-time))
1474 (defun add-permanent-completion (string)
1475 "Add STRING if it isn't already listed, and mark it permanent."
1476 (interactive
1477 (interactive-completion-string-reader "Completion to add permanently"))
1478 (let ((current-completion-source (if (interactive-p)
1479 cmpl-source-interactive
1480 current-completion-source))
1482 (add-completion string nil t)
1485 (defun kill-completion (string)
1486 (interactive (interactive-completion-string-reader "Completion to kill"))
1487 (check-completion-length string)
1488 (delete-completion string)
1491 (defun accept-completion ()
1492 "Accepts the pending completion in `completion-to-accept'.
1493 This bumps num-uses. Called by `add-completion-to-head' and
1494 `completion-search-reset'."
1495 (let ((string completion-to-accept)
1496 ;; if this is added afresh here, then it must be a cdabbrev
1497 (current-completion-source cmpl-source-cdabbrev)
1498 entry
1500 (setq completion-to-accept nil)
1501 (setq entry (add-completion-to-head string))
1502 (set-completion-num-uses entry (1+ (completion-num-uses entry)))
1503 (setq cmpl-completions-accepted-p t)
1506 (defun use-completion-under-point ()
1507 "Add the completion symbol underneath the point into the completion buffer."
1508 (let ((string (and enable-completion (symbol-under-point)))
1509 (current-completion-source cmpl-source-cursor-moves))
1510 (if string (add-completion-to-head string))))
1512 (defun use-completion-before-point ()
1513 "Add the completion symbol before point into the completion buffer."
1514 (let ((string (and enable-completion (symbol-before-point)))
1515 (current-completion-source cmpl-source-cursor-moves))
1516 (if string (add-completion-to-head string))))
1518 (defun use-completion-under-or-before-point ()
1519 "Add the completion symbol before point into the completion buffer."
1520 (let ((string (and enable-completion (symbol-under-or-before-point)))
1521 (current-completion-source cmpl-source-cursor-moves))
1522 (if string (add-completion-to-head string))))
1524 (defun use-completion-before-separator ()
1525 "Add the completion symbol before point into the completion buffer.
1526 Completions added this way will automatically be saved if
1527 `completion-on-separator-character' is non-nil."
1528 (let ((string (and enable-completion (symbol-before-point)))
1529 (current-completion-source cmpl-source-separator)
1530 entry)
1531 (cmpl-statistics-block
1532 (note-separator-character string)
1534 (cond (string
1535 (setq entry (add-completion-to-head string))
1536 (if (and completion-on-separator-character
1537 (zerop (completion-num-uses entry)))
1538 (progn
1539 (set-completion-num-uses entry 1)
1540 (setq cmpl-completions-accepted-p t)))))
1543 ;; Tests --
1544 ;; - Add and Find -
1545 ;; (add-completion "banana" 5 10)
1546 ;; (find-exact-completion "banana") --> ("banana" 5 10 0)
1547 ;; (add-completion "banana" 6)
1548 ;; (find-exact-completion "banana") --> ("banana" 6 10 0)
1549 ;; (add-completion "banish")
1550 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banish" ...) ("banana" ...))
1552 ;; - Accepting -
1553 ;; (setq completion-to-accept "banana")
1554 ;; (accept-completion)
1555 ;; (find-exact-completion "banana") --> ("banana" 7 10)
1556 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...) ("banish" ...))
1557 ;; (setq completion-to-accept "banish")
1558 ;; (add-completion "banner")
1559 ;; (car (find-cmpl-prefix-entry "ban"))
1560 ;; --> (("banner" ...) ("banish" 1 ...) ("banana" 7 ...))
1562 ;; - Deleting -
1563 ;; (kill-completion "banish")
1564 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banner" ...) ("banana" ...))
1567 ;;---------------------------------------------------------------------------
1568 ;; Searching the database
1569 ;;---------------------------------------------------------------------------
1570 ;; Functions outside this block must call completion-search-reset followed
1571 ;; by calls to completion-search-next or completion-search-peek
1574 ;; Status variables
1575 ;; Commented out to improve loading speed
1576 (defvar cmpl-test-string "")
1577 ;; "The current string used by completion-search-next."
1578 (defvar cmpl-test-regexp "")
1579 ;; "The current regexp used by completion-search-next.
1580 ;; (derived from cmpl-test-string)"
1581 (defvar cmpl-last-index 0)
1582 ;; "The last index that completion-search-next was called with."
1583 (defvar cmpl-cdabbrev-reset-p nil)
1584 ;; "Set to t when cdabbrevs have been reset."
1585 (defvar cmpl-next-possibilities nil)
1586 ;; "A pointer to the element BEFORE the next set of possible completions.
1587 ;; cadr of this is the cmpl-next-possibility"
1588 (defvar cmpl-starting-possibilities nil)
1589 ;; "The initial list of starting possibilities."
1590 (defvar cmpl-next-possibility nil)
1591 ;; "The cached next possibility."
1592 (defvar cmpl-tried-list nil)
1593 ;; "A downcased list of all the completions we have tried."
1596 (defun completion-search-reset (string)
1597 "Set up the for completion searching for STRING.
1598 STRING must be longer than `completion-prefix-min-length'."
1599 (if completion-to-accept (accept-completion))
1600 (setq cmpl-starting-possibilities
1601 (cmpl-prefix-entry-head
1602 (find-cmpl-prefix-entry
1603 (downcase (substring string 0 completion-prefix-min-length))))
1604 cmpl-test-string string
1605 cmpl-test-regexp (concat (regexp-quote string) "."))
1606 (completion-search-reset-1)
1609 (defun completion-search-reset-1 ()
1610 (setq cmpl-next-possibilities cmpl-starting-possibilities
1611 cmpl-next-possibility nil
1612 cmpl-cdabbrev-reset-p nil
1613 cmpl-last-index -1
1614 cmpl-tried-list nil
1617 (defun completion-search-next (index)
1618 "Return the next completion entry.
1619 If INDEX is out of sequence, reset and start from the top.
1620 If there are no more entries, try cdabbrev and returns only a string."
1621 (cond
1622 ((= index (setq cmpl-last-index (1+ cmpl-last-index)))
1623 (completion-search-peek t))
1624 ((< index 0)
1625 (completion-search-reset-1)
1626 (setq cmpl-last-index index)
1627 ;; reverse the possibilities list
1628 (setq cmpl-next-possibilities (reverse cmpl-starting-possibilities))
1629 ;; do a "normal" search
1630 (while (and (completion-search-peek nil)
1631 (< (setq index (1+ index)) 0))
1632 (setq cmpl-next-possibility nil)
1634 (cond ((not cmpl-next-possibilities))
1635 ;; If no more possibilities, leave it that way
1636 ((= -1 cmpl-last-index)
1637 ;; next completion is at index 0. reset next-possibility list
1638 ;; to start at beginning
1639 (setq cmpl-next-possibilities cmpl-starting-possibilities))
1641 ;; otherwise point to one before current
1642 (setq cmpl-next-possibilities
1643 (nthcdr (- (length cmpl-starting-possibilities)
1644 (length cmpl-next-possibilities))
1645 cmpl-starting-possibilities))
1648 ;; non-negative index, reset and search
1649 ;;(prin1 'reset)
1650 (completion-search-reset-1)
1651 (setq cmpl-last-index index)
1652 (while (and (completion-search-peek t)
1653 (not (< (setq index (1- index)) 0)))
1654 (setq cmpl-next-possibility nil)
1657 (prog1
1658 cmpl-next-possibility
1659 (setq cmpl-next-possibility nil)
1663 (defun completion-search-peek (use-cdabbrev)
1664 "Returns the next completion entry without actually moving the pointers.
1665 Calling this again or calling `completion-search-next' results in the same
1666 string being returned. Depends on `case-fold-search'.
1667 If there are no more entries, try cdabbrev and then return only a string."
1668 (cond
1669 ;; return the cached value if we have it
1670 (cmpl-next-possibility)
1671 ((and cmpl-next-possibilities
1672 ;; still a few possibilities left
1673 (progn
1674 (while
1675 (and (not (eq 0 (string-match cmpl-test-regexp
1676 (completion-string (car cmpl-next-possibilities)))))
1677 (setq cmpl-next-possibilities (cdr cmpl-next-possibilities))
1679 cmpl-next-possibilities
1681 ;; successful match
1682 (setq cmpl-next-possibility (car cmpl-next-possibilities)
1683 cmpl-tried-list (cons (downcase (completion-string cmpl-next-possibility))
1684 cmpl-tried-list)
1685 cmpl-next-possibilities (cdr cmpl-next-possibilities)
1687 cmpl-next-possibility)
1688 (use-cdabbrev
1689 ;; unsuccessful, use cdabbrev
1690 (cond ((not cmpl-cdabbrev-reset-p)
1691 (reset-cdabbrev cmpl-test-string cmpl-tried-list)
1692 (setq cmpl-cdabbrev-reset-p t)
1694 (setq cmpl-next-possibility (next-cdabbrev))
1696 ;; Completely unsuccessful, return nil
1699 ;; Tests --
1700 ;; - Add and Find -
1701 ;; (add-completion "banana")
1702 ;; (completion-search-reset "ban")
1703 ;; (completion-search-next 0) --> "banana"
1705 ;; - Discrimination -
1706 ;; (add-completion "cumberland")
1707 ;; (add-completion "cumberbund")
1708 ;; cumbering
1709 ;; (completion-search-reset "cumb")
1710 ;; (completion-search-peek t) --> "cumberbund"
1711 ;; (completion-search-next 0) --> "cumberbund"
1712 ;; (completion-search-peek t) --> "cumberland"
1713 ;; (completion-search-next 1) --> "cumberland"
1714 ;; (completion-search-peek nil) --> nil
1715 ;; (completion-search-next 2) --> "cumbering" {cdabbrev}
1716 ;; (completion-search-next 3) --> nil or "cumming"{depends on context}
1717 ;; (completion-search-next 1) --> "cumberland"
1718 ;; (completion-search-peek t) --> "cumbering" {cdabbrev}
1720 ;; - Accepting -
1721 ;; (completion-search-next 1) --> "cumberland"
1722 ;; (setq completion-to-accept "cumberland")
1723 ;; (completion-search-reset "foo")
1724 ;; (completion-search-reset "cum")
1725 ;; (completion-search-next 0) --> "cumberland"
1727 ;; - Deleting -
1728 ;; (kill-completion "cumberland")
1729 ;; cummings
1730 ;; (completion-search-reset "cum")
1731 ;; (completion-search-next 0) --> "cumberbund"
1732 ;; (completion-search-next 1) --> "cummings"
1734 ;; - Ignoring Capitalization -
1735 ;; (completion-search-reset "CuMb")
1736 ;; (completion-search-next 0) --> "cumberbund"
1740 ;;-----------------------------------------------
1741 ;; COMPLETE
1742 ;;-----------------------------------------------
1744 (defun completion-mode ()
1745 "Toggles whether or not to add new words to the completion database."
1746 (interactive)
1747 (setq enable-completion (not enable-completion))
1748 (message "Completion mode is now %s." (if enable-completion "ON" "OFF"))
1751 (defvar cmpl-current-index 0)
1752 (defvar cmpl-original-string nil)
1753 (defvar cmpl-last-insert-location -1)
1754 (defvar cmpl-leave-point-at-start nil)
1756 (defun complete (&optional arg)
1757 "Fill out a completion of the word before point.
1758 Point is left at end. Consecutive calls rotate through all possibilities.
1759 Prefix args ::
1760 control-u :: leave the point at the beginning of the completion rather
1761 than at the end.
1762 a number :: rotate through the possible completions by that amount
1763 `-' :: same as -1 (insert previous completion)
1764 {See the comments at the top of `completion.el' for more info.}"
1765 (interactive "*p")
1766 ;;; Set up variables
1767 (cond ((eq last-command this-command)
1768 ;; Undo last one
1769 (delete-region cmpl-last-insert-location (point))
1770 ;; get next completion
1771 (setq cmpl-current-index (+ cmpl-current-index (or arg 1)))
1774 (if (not cmpl-initialized-p)
1775 (initialize-completions)) ;; make sure everything's loaded
1776 (cond ((consp current-prefix-arg) ;; control-u
1777 (setq arg 0)
1778 (setq cmpl-leave-point-at-start t)
1781 (setq cmpl-leave-point-at-start nil)
1783 ;; get string
1784 (setq cmpl-original-string (symbol-before-point-for-complete))
1785 (cond ((not cmpl-original-string)
1786 (setq this-command 'failed-complete)
1787 (error "To complete, point must be after a symbol at least %d character long"
1788 completion-prefix-min-length)))
1789 ;; get index
1790 (setq cmpl-current-index (if current-prefix-arg arg 0))
1791 ;; statistics
1792 (cmpl-statistics-block
1793 (note-complete-entered-afresh cmpl-original-string))
1794 ;; reset database
1795 (completion-search-reset cmpl-original-string)
1796 ;; erase what we've got
1797 (delete-region cmpl-symbol-start cmpl-symbol-end)
1800 ;; point is at the point to insert the new symbol
1801 ;; Get the next completion
1802 (let* ((print-status-p
1803 (and (>= baud-rate completion-prompt-speed-threshold)
1804 (not (minibuffer-window-selected-p))))
1805 (insert-point (point))
1806 (entry (completion-search-next cmpl-current-index))
1807 string
1809 ;; entry is either a completion entry or a string (if cdabbrev)
1811 ;; If found, insert
1812 (cond (entry
1813 ;; Setup for proper case
1814 (setq string (if (stringp entry)
1815 entry (completion-string entry)))
1816 (setq string (cmpl-merge-string-cases
1817 string cmpl-original-string))
1818 ;; insert
1819 (insert string)
1820 ;; accept it
1821 (setq completion-to-accept string)
1822 ;; fixup and cache point
1823 (cond (cmpl-leave-point-at-start
1824 (setq cmpl-last-insert-location (point))
1825 (goto-char insert-point))
1826 (t;; point at end,
1827 (setq cmpl-last-insert-location insert-point))
1829 ;; statistics
1830 (cmpl-statistics-block
1831 (note-complete-inserted entry cmpl-current-index))
1832 ;; Done ! cmpl-stat-complete-successful
1833 ;;display the next completion
1834 (cond
1835 ((and print-status-p
1836 ;; This updates the display and only prints if there
1837 ;; is no typeahead
1838 (sit-for 0)
1839 (setq entry
1840 (completion-search-peek
1841 completion-cdabbrev-prompt-flag)))
1842 (setq string (if (stringp entry)
1843 entry (completion-string entry)))
1844 (setq string (cmpl-merge-string-cases
1845 string cmpl-original-string))
1846 (message "Next completion: %s" string)
1849 (t;; none found, insert old
1850 (insert cmpl-original-string)
1851 ;; Don't accept completions
1852 (setq completion-to-accept nil)
1853 ;; print message
1854 ;; This used to call cmpl19-sit-for, an undefined function.
1855 ;; I hope that sit-for does the right thing; I don't know -- rms.
1856 (if (and print-status-p (sit-for 0))
1857 (message "No %scompletions."
1858 (if (eq this-command last-command) "more " "")))
1859 ;; statistics
1860 (cmpl-statistics-block
1861 (record-complete-failed cmpl-current-index))
1862 ;; Pretend that we were never here
1863 (setq this-command 'failed-complete)
1864 ))))
1866 ;;-----------------------------------------------
1867 ;; "Complete" Key Keybindings
1868 ;;-----------------------------------------------
1870 (global-set-key "\M-\r" 'complete)
1871 (global-set-key [?\C-\r] 'complete)
1872 (define-key function-key-map [C-return] [?\C-\r])
1874 ;; Tests -
1875 ;; (add-completion "cumberland")
1876 ;; (add-completion "cumberbund")
1877 ;; cum
1878 ;; Cumber
1879 ;; cumbering
1880 ;; cumb
1883 ;;---------------------------------------------------------------------------
1884 ;; Parsing definitions from files into the database
1885 ;;---------------------------------------------------------------------------
1887 ;;-----------------------------------------------
1888 ;; Top Level functions ::
1889 ;;-----------------------------------------------
1891 ;; User interface
1892 (defun add-completions-from-file (file)
1893 "Parse possible completions from a file and add them to data base."
1894 (interactive "fFile: ")
1895 (setq file (expand-file-name file))
1896 (let* ((buffer (get-file-buffer file))
1897 (buffer-already-there-p buffer)
1899 (if (not buffer-already-there-p)
1900 (let ((completions-merging-modes nil))
1901 (setq buffer (find-file-noselect file))))
1902 (unwind-protect
1903 (save-excursion
1904 (set-buffer buffer)
1905 (add-completions-from-buffer)
1907 (if (not buffer-already-there-p)
1908 (kill-buffer buffer)))))
1910 (defun add-completions-from-buffer ()
1911 (interactive)
1912 (let ((current-completion-source cmpl-source-file-parsing)
1913 (start-num
1914 (cmpl-statistics-block
1915 (aref completion-add-count-vector cmpl-source-file-parsing)))
1916 mode
1918 (cond ((memq major-mode '(emacs-lisp-mode lisp-mode))
1919 (add-completions-from-lisp-buffer)
1920 (setq mode 'lisp)
1922 ((memq major-mode '(c-mode))
1923 (add-completions-from-c-buffer)
1924 (setq mode 'c)
1927 (error "Cannot parse completions in %s buffers"
1928 major-mode)
1930 (cmpl-statistics-block
1931 (record-cmpl-parse-file
1932 mode (point-max)
1933 (- (aref completion-add-count-vector cmpl-source-file-parsing)
1934 start-num)))
1937 ;; Find file hook
1938 (defun cmpl-find-file-hook ()
1939 (cond (enable-completion
1940 (cond ((and (memq major-mode '(emacs-lisp-mode lisp-mode))
1941 (memq 'lisp completions-merging-modes)
1943 (add-completions-from-buffer))
1944 ((and (memq major-mode '(c-mode))
1945 (memq 'c completions-merging-modes)
1947 (add-completions-from-buffer)
1951 (add-hook 'find-file-hooks 'cmpl-find-file-hook)
1953 ;;-----------------------------------------------
1954 ;; Tags Table Completions
1955 ;;-----------------------------------------------
1957 (defun add-completions-from-tags-table ()
1958 ;; Inspired by eero@media-lab.media.mit.edu
1959 "Add completions from the current tags table."
1960 (interactive)
1961 (visit-tags-table-buffer) ;this will prompt if no tags-table
1962 (save-excursion
1963 (goto-char (point-min))
1964 (let (string)
1965 (condition-case e
1966 (while t
1967 (search-forward "\177")
1968 (backward-char 3)
1969 (and (setq string (symbol-under-point))
1970 (add-completion-to-tail-if-new string))
1971 (forward-char 3)
1973 (search-failed)
1974 ))))
1977 ;;-----------------------------------------------
1978 ;; Lisp File completion parsing
1979 ;;-----------------------------------------------
1980 ;; This merely looks for phrases beginning with (def.... or
1981 ;; (package:def ... and takes the next word.
1983 ;; We tried using forward-lines and explicit searches but the regexp technique
1984 ;; was faster. (About 100K characters per second)
1986 (defconst *lisp-def-regexp*
1987 "\n(\\(\\w*:\\)?def\\(\\w\\|\\s_\\)*\\s +(*"
1988 "A regexp that searches for lisp definition form."
1991 ;; Tests -
1992 ;; (and (string-match *lisp-def-regexp* "\n(defun foo") (match-end 0)) -> 8
1993 ;; (and (string-match *lisp-def-regexp* "\n(si:def foo") (match-end 0)) -> 9
1994 ;; (and (string-match *lisp-def-regexp* "\n(def-bar foo")(match-end 0)) -> 10
1995 ;; (and (string-match *lisp-def-regexp* "\n(defun (foo") (match-end 0)) -> 9
1997 ;; Parses all the definition names from a Lisp mode buffer and adds them to
1998 ;; the completion database.
1999 (defun add-completions-from-lisp-buffer ()
2000 ;;; Benchmarks
2001 ;;; Sun-3/280 - 1500 to 3000 lines of lisp code per second
2002 (let (string)
2003 (save-excursion
2004 (goto-char (point-min))
2005 (condition-case e
2006 (while t
2007 (re-search-forward *lisp-def-regexp*)
2008 (and (setq string (symbol-under-point))
2009 (add-completion-to-tail-if-new string))
2011 (search-failed)
2012 ))))
2015 ;;-----------------------------------------------
2016 ;; C file completion parsing
2017 ;;-----------------------------------------------
2018 ;; C :
2019 ;; Looks for #define or [<storage class>] [<type>] <name>{,<name>}
2020 ;; or structure, array or pointer defs.
2021 ;; It gets most of the definition names.
2023 ;; As you might suspect by now, we use some symbol table hackery
2025 ;; Symbol separator chars (have whitespace syntax) --> , ; * = (
2026 ;; Opening char --> [ {
2027 ;; Closing char --> ] }
2028 ;; opening and closing must be skipped over
2029 ;; Whitespace chars (have symbol syntax)
2030 ;; Everything else has word syntax
2032 (defun cmpl-make-c-def-completion-syntax-table ()
2033 (let ((table (make-syntax-table))
2034 (whitespace-chars '(? ?\n ?\t ?\f ?\v ?\r))
2035 ;; unfortunately the ?( causes the parens to appear unbalanced
2036 (separator-chars '(?, ?* ?= ?\( ?\;
2039 ;; default syntax is whitespace
2040 (setq i 0)
2041 (while (< i 256)
2042 (modify-syntax-entry i "w" table)
2043 (setq i (1+ i)))
2044 (completion-dolist (char whitespace-chars)
2045 (modify-syntax-entry char "_" table))
2046 (completion-dolist (char separator-chars)
2047 (modify-syntax-entry char " " table))
2048 (modify-syntax-entry ?\[ "(]" table)
2049 (modify-syntax-entry ?\{ "(}" table)
2050 (modify-syntax-entry ?\] ")[" table)
2051 (modify-syntax-entry ?\} "){" table)
2052 table))
2054 (defconst cmpl-c-def-syntax-table (cmpl-make-c-def-completion-syntax-table))
2056 ;; Regexps
2057 (defconst *c-def-regexp*
2058 ;; This stops on lines with possible definitions
2059 "\n[_a-zA-Z#]"
2060 ;; This stops after the symbol to add.
2061 ;;"\n\\(#define\\s +.\\|\\(\\(\\w\\|\\s_\\)+\\b\\s *\\)+[(;,[*{=]\\)"
2062 ;; This stops before the symbol to add. {Test cases in parens. below}
2063 ;;"\n\\(\\(\\w\\|\\s_\\)+\\s *(\\|\\(\\(#define\\|auto\\|extern\\|register\\|static\\|int\\|long\\|short\\|unsigned\\|char\\|void\\|float\\|double\\|enum\\|struct\\|union\\|typedef\\)\\s +\\)+\\)"
2064 ;; this simple version picks up too much extraneous stuff
2065 ;; "\n\\(\\w\\|\\s_\\|#\\)\\B"
2066 "A regexp that searches for a definition form."
2069 ;(defconst *c-cont-regexp*
2070 ; "\\(\\w\\|\\s_\\)+\\b\\s *\\({\\|\\(\\[[0-9\t ]*\\]\\s *\\)*,\\(*\\|\\s \\)*\\b\\)"
2071 ; "This regexp should be used in a looking-at to parse for lists of variables.")
2073 ;(defconst *c-struct-regexp*
2074 ; "\\(*\\|\\s \\)*\\b"
2075 ; "This regexp should be used to test whether a symbol follows a structure definition.")
2077 ;(defun test-c-def-regexp (regexp string)
2078 ; (and (eq 0 (string-match regexp string)) (match-end 0))
2081 ;; Tests -
2082 ;; (test-c-def-regexp *c-def-regexp* "\n#define foo") -> 10 (9)
2083 ;; (test-c-def-regexp *c-def-regexp* "\nfoo (x, y) {") -> 6 (6)
2084 ;; (test-c-def-regexp *c-def-regexp* "\nint foo (x, y)") -> 10 (5)
2085 ;; (test-c-def-regexp *c-def-regexp* "\n int foo (x, y)") -> nil
2086 ;; (test-c-def-regexp *c-cont-regexp* "oo, bar") -> 4
2087 ;; (test-c-def-regexp *c-cont-regexp* "oo, *bar") -> 5
2088 ;; (test-c-def-regexp *c-cont-regexp* "a [5][6], bar") -> 10
2089 ;; (test-c-def-regexp *c-cont-regexp* "oo(x,y)") -> nil
2090 ;; (test-c-def-regexp *c-cont-regexp* "a [6] ,\t bar") -> 9
2091 ;; (test-c-def-regexp *c-cont-regexp* "oo {trout =1} my_carp;") -> 14
2092 ;; (test-c-def-regexp *c-cont-regexp* "truct_p complex foon") -> nil
2094 ;; Parses all the definition names from a C mode buffer and adds them to the
2095 ;; completion database.
2096 (defun add-completions-from-c-buffer ()
2097 ;; Benchmark --
2098 ;; Sun 3/280-- 1250 lines/sec.
2100 (let (string next-point char
2101 (saved-syntax (syntax-table))
2103 (save-excursion
2104 (goto-char (point-min))
2105 (catch 'finish-add-completions
2106 (unwind-protect
2107 (while t
2108 ;; we loop here only when scan-sexps fails
2109 ;; (i.e. unbalance exps.)
2110 (set-syntax-table cmpl-c-def-syntax-table)
2111 (condition-case e
2112 (while t
2113 (re-search-forward *c-def-regexp*)
2114 (cond
2115 ((= (preceding-char) ?#)
2116 ;; preprocessor macro, see if it's one we handle
2117 (setq string (buffer-substring (point) (+ (point) 6)))
2118 (cond ((or (string-equal string "define")
2119 (string-equal string "ifdef ")
2121 ;; skip forward over definition symbol
2122 ;; and add it to database
2123 (and (forward-word 2)
2124 (setq string (symbol-before-point))
2125 ;;(push string foo)
2126 (add-completion-to-tail-if-new string)
2127 ))))
2129 ;; C definition
2130 (setq next-point (point))
2131 (while (and
2132 next-point
2133 ;; scan to next separator char.
2134 (setq next-point (scan-sexps next-point 1))
2136 ;; position the point on the word we want to add
2137 (goto-char next-point)
2138 (while (= (setq char (following-char)) ?*)
2139 ;; handle pointer ref
2140 ;; move to next separator char.
2141 (goto-char
2142 (setq next-point (scan-sexps (point) 1)))
2144 (forward-word -1)
2145 ;; add to database
2146 (if (setq string (symbol-under-point))
2147 ;; (push string foo)
2148 (add-completion-to-tail-if-new string)
2149 ;; Local TMC hack (useful for parsing paris.h)
2150 (if (and (looking-at "_AP") ;; "ansi prototype"
2151 (progn
2152 (forward-word -1)
2153 (setq string
2154 (symbol-under-point))
2156 (add-completion-to-tail-if-new string)
2159 ;; go to next
2160 (goto-char next-point)
2161 ;; (push (format "%c" (following-char)) foo)
2162 (if (= (char-syntax char) ?\()
2163 ;; if on an opening delimiter, go to end
2164 (while (= (char-syntax char) ?\()
2165 (setq next-point (scan-sexps next-point 1)
2166 char (char-after next-point))
2168 (or (= char ?,)
2169 ;; Current char is an end char.
2170 (setq next-point nil)
2172 ))))
2173 (search-failed ;;done
2174 (throw 'finish-add-completions t)
2176 (error
2177 ;; Check for failure in scan-sexps
2178 (if (or (string-equal (nth 1 e)
2179 "Containing expression ends prematurely")
2180 (string-equal (nth 1 e) "Unbalanced parentheses"))
2181 ;; unbalanced paren., keep going
2182 ;;(ding)
2183 (forward-line 1)
2184 (message "Error parsing C buffer for completions--please send bug report")
2185 (throw 'finish-add-completions t)
2188 (set-syntax-table saved-syntax)
2189 )))))
2192 ;;---------------------------------------------------------------------------
2193 ;; Init files
2194 ;;---------------------------------------------------------------------------
2196 ;; The version of save-completions-to-file called at kill-emacs time.
2197 (defun kill-emacs-save-completions ()
2198 (if (and save-completions-flag enable-completion cmpl-initialized-p)
2199 (cond
2200 ((not cmpl-completions-accepted-p)
2201 (message "Completions database has not changed - not writing."))
2203 (save-completions-to-file)))))
2205 ;; There is no point bothering to change this again
2206 ;; unless the package changes so much that it matters
2207 ;; for people that have saved completions.
2208 (defconst completion-version "11")
2210 (defconst saved-cmpl-file-header
2211 ";;; Completion Initialization file.
2212 ;; Version = %s
2213 ;; Format is (<string> . <last-use-time>)
2214 ;; <string> is the completion
2215 ;; <last-use-time> is the time the completion was last used
2216 ;; If it is t, the completion will never be pruned from the file.
2217 ;; Otherwise it is in hours since origin.
2218 \n")
2220 (defun completion-backup-filename (filename)
2221 (concat filename ".BAK"))
2223 (defun save-completions-to-file (&optional filename)
2224 "Save completions in init file FILENAME.
2225 If file name is not specified, use `save-completions-file-name'."
2226 (interactive)
2227 (setq filename (expand-file-name (or filename save-completions-file-name)))
2228 (if (file-writable-p filename)
2229 (progn
2230 (if (not cmpl-initialized-p)
2231 (initialize-completions));; make sure everything's loaded
2232 (message "Saving completions to file %s" filename)
2234 (let* ((delete-old-versions t)
2235 (kept-old-versions 0)
2236 (kept-new-versions completions-file-versions-kept)
2237 last-use-time
2238 (current-time (cmpl-hours-since-origin))
2239 (total-in-db 0)
2240 (total-perm 0)
2241 (total-saved 0)
2242 (backup-filename (completion-backup-filename filename))
2245 (save-excursion
2246 (get-buffer-create " *completion-save-buffer*")
2247 (set-buffer " *completion-save-buffer*")
2248 (setq buffer-file-name filename)
2250 (if (not (verify-visited-file-modtime (current-buffer)))
2251 (progn
2252 ;; file has changed on disk. Bring us up-to-date
2253 (message "Completion file has changed. Merging. . .")
2254 (load-completions-from-file filename t)
2255 (message "Merging finished. Saving completions to file %s" filename)))
2257 ;; prepare the buffer to be modified
2258 (clear-visited-file-modtime)
2259 (erase-buffer)
2260 ;; (/ 1 0)
2261 (insert (format saved-cmpl-file-header completion-version))
2262 (completion-dolist (completion (list-all-completions))
2263 (setq total-in-db (1+ total-in-db))
2264 (setq last-use-time (completion-last-use-time completion))
2265 ;; Update num uses and maybe write completion to a file
2266 (cond ((or;; Write to file if
2267 ;; permanent
2268 (and (eq last-use-time t)
2269 (setq total-perm (1+ total-perm)))
2270 ;; or if
2271 (if (> (completion-num-uses completion) 0)
2272 ;; it's been used
2273 (setq last-use-time current-time)
2274 ;; or it was saved before and
2275 (and last-use-time
2276 ;; save-completions-retention-time is nil
2277 (or (not save-completions-retention-time)
2278 ;; or time since last use is < ...retention-time*
2279 (< (- current-time last-use-time)
2280 save-completions-retention-time))
2282 ;; write to file
2283 (setq total-saved (1+ total-saved))
2284 (insert (prin1-to-string (cons (completion-string completion)
2285 last-use-time)) "\n")
2288 ;; write the buffer
2289 (condition-case e
2290 (let ((file-exists-p (file-exists-p filename)))
2291 (if file-exists-p
2292 (progn
2293 ;; If file exists . . .
2294 ;; Save a backup(so GNU doesn't screw us when we're out of disk)
2295 ;; (GNU leaves a 0 length file if it gets a disk full error!)
2297 ;; If backup doesn't exit, Rename current to backup
2298 ;; {If backup exists the primary file is probably messed up}
2299 (or (file-exists-p backup-filename)
2300 (rename-file filename backup-filename))
2301 ;; Copy the backup back to the current name
2302 ;; (so versioning works)
2303 (copy-file backup-filename filename t)))
2304 ;; Save it
2305 (save-buffer)
2306 (if file-exists-p
2307 ;; If successful, remove backup
2308 (delete-file backup-filename)))
2309 (error
2310 (set-buffer-modified-p nil)
2311 (message "Couldn't save completion file `%s'" filename)
2313 ;; Reset accepted-p flag
2314 (setq cmpl-completions-accepted-p nil)
2316 (cmpl-statistics-block
2317 (record-save-completions total-in-db total-perm total-saved))
2318 ))))
2320 ;;(defun autosave-completions ()
2321 ;; (if (and save-completions-flag enable-completion cmpl-initialized-p
2322 ;; *completion-auto-save-period*
2323 ;; (> cmpl-emacs-idle-time *completion-auto-save-period*)
2324 ;; cmpl-completions-accepted-p)
2325 ;; (save-completions-to-file)))
2327 ;;(add-hook 'cmpl-emacs-idle-time-hooks 'autosave-completions)
2329 (defun load-completions-from-file (&optional filename no-message-p)
2330 "Loads a completion init file FILENAME.
2331 If file is not specified, then use `save-completions-file-name'."
2332 (interactive)
2333 (setq filename (expand-file-name (or filename save-completions-file-name)))
2334 (let* ((backup-filename (completion-backup-filename filename))
2335 (backup-readable-p (file-readable-p backup-filename))
2337 (if backup-readable-p (setq filename backup-filename))
2338 (if (file-readable-p filename)
2339 (progn
2340 (if (not no-message-p)
2341 (message "Loading completions from %sfile %s . . ."
2342 (if backup-readable-p "backup " "") filename))
2343 (save-excursion
2344 (get-buffer-create " *completion-save-buffer*")
2345 (set-buffer " *completion-save-buffer*")
2346 (setq buffer-file-name filename)
2347 ;; prepare the buffer to be modified
2348 (clear-visited-file-modtime)
2349 (erase-buffer)
2351 (let ((insert-okay-p nil)
2352 (buffer (current-buffer))
2353 (current-time (cmpl-hours-since-origin))
2354 string num-uses entry last-use-time
2355 cmpl-entry cmpl-last-use-time
2356 (current-completion-source cmpl-source-init-file)
2357 (start-num
2358 (cmpl-statistics-block
2359 (aref completion-add-count-vector cmpl-source-file-parsing)))
2360 (total-in-file 0) (total-perm 0)
2362 ;; insert the file into a buffer
2363 (condition-case e
2364 (progn (insert-file-contents filename t)
2365 (setq insert-okay-p t))
2367 (file-error
2368 (message "File error trying to load completion file %s."
2369 filename)))
2370 ;; parse it
2371 (if insert-okay-p
2372 (progn
2373 (goto-char (point-min))
2375 (condition-case e
2376 (while t
2377 (setq entry (read buffer))
2378 (setq total-in-file (1+ total-in-file))
2379 (cond
2380 ((and (consp entry)
2381 (stringp (setq string (car entry)))
2382 (cond
2383 ((eq (setq last-use-time (cdr entry)) 'T)
2384 ;; handle case sensitivity
2385 (setq total-perm (1+ total-perm))
2386 (setq last-use-time t))
2387 ((eq last-use-time t)
2388 (setq total-perm (1+ total-perm)))
2389 ((integerp last-use-time))
2391 ;; Valid entry
2392 ;; add it in
2393 (setq cmpl-last-use-time
2394 (completion-last-use-time
2395 (setq cmpl-entry
2396 (add-completion-to-tail-if-new string))
2398 (if (or (eq last-use-time t)
2399 (and (> last-use-time 1000);;backcompatibility
2400 (not (eq cmpl-last-use-time t))
2401 (or (not cmpl-last-use-time)
2402 ;; more recent
2403 (> last-use-time cmpl-last-use-time))
2405 ;; update last-use-time
2406 (set-completion-last-use-time cmpl-entry last-use-time)
2409 ;; Bad format
2410 (message "Error: invalid saved completion - %s"
2411 (prin1-to-string entry))
2412 ;; try to get back in sync
2413 (search-forward "\n(")
2415 (search-failed
2416 (message "End of file while reading completions.")
2418 (end-of-file
2419 (if (= (point) (point-max))
2420 (if (not no-message-p)
2421 (message "Loading completions from file %s . . . Done."
2422 filename))
2423 (message "End of file while reading completions.")
2427 (cmpl-statistics-block
2428 (record-load-completions
2429 total-in-file total-perm
2430 (- (aref completion-add-count-vector cmpl-source-init-file)
2431 start-num)))
2433 ))))))
2435 (defun initialize-completions ()
2436 "Load the default completions file.
2437 Also sets up so that exiting emacs will automatically save the file."
2438 (interactive)
2439 (cond ((not cmpl-initialized-p)
2440 (load-completions-from-file)
2442 (setq cmpl-initialized-p t)
2446 ;;-----------------------------------------------
2447 ;; Kill EMACS patch
2448 ;;-----------------------------------------------
2450 (add-hook 'kill-emacs-hook
2451 '(lambda ()
2452 (kill-emacs-save-completions)
2453 (cmpl-statistics-block
2454 (record-cmpl-kill-emacs))))
2456 ;;-----------------------------------------------
2457 ;; Kill region patch
2458 ;;-----------------------------------------------
2460 (defun completion-kill-region (&optional beg end)
2461 "Kill between point and mark.
2462 The text is deleted but saved in the kill ring.
2463 The command \\[yank] can retrieve it from there.
2464 /(If you want to kill and then yank immediately, use \\[copy-region-as-kill].)
2466 This is the primitive for programs to kill text (as opposed to deleting it).
2467 Supply two arguments, character numbers indicating the stretch of text
2468 to be killed.
2469 Any command that calls this function is a \"kill command\".
2470 If the previous command was also a kill command,
2471 the text killed this time appends to the text killed last time
2472 to make one entry in the kill ring.
2473 Patched to remove the most recent completion."
2474 (interactive "r")
2475 (cond ((eq last-command 'complete)
2476 (delete-region (point) cmpl-last-insert-location)
2477 (insert cmpl-original-string)
2478 (setq completion-to-accept nil)
2479 (cmpl-statistics-block
2480 (record-complete-failed)))
2482 (kill-region beg end))))
2484 (global-set-key "\C-w" 'completion-kill-region)
2486 ;;-----------------------------------------------
2487 ;; Patches to self-insert-command.
2488 ;;-----------------------------------------------
2490 ;; Need 2 versions: generic separator chars. and space (to get auto fill
2491 ;; to work)
2493 ;; All common separators (eg. space "(" ")" """) characters go through a
2494 ;; function to add new words to the list of words to complete from:
2495 ;; COMPLETION-SEPARATOR-SELF-INSERT-COMMAND (arg).
2496 ;; If the character before this was an alpha-numeric then this adds the
2497 ;; symbol before point to the completion list (using ADD-COMPLETION).
2499 (defun completion-separator-self-insert-command (arg)
2500 (interactive "p")
2501 (use-completion-before-separator)
2502 (self-insert-command arg)
2505 (defun completion-separator-self-insert-autofilling (arg)
2506 (interactive "p")
2507 (use-completion-before-separator)
2508 (self-insert-command arg)
2509 (and auto-fill-function
2510 (funcall auto-fill-function))
2513 ;;-----------------------------------------------
2514 ;; Wrapping Macro
2515 ;;-----------------------------------------------
2517 ;; Note that because of the way byte compiling works, none of
2518 ;; the functions defined with this macro get byte compiled.
2520 (defmacro def-completion-wrapper (function-name type &optional new-name)
2521 "Add a call to update the completion database before function execution.
2522 TYPE is the type of the wrapper to be added. Can be :before or :under."
2523 (cond ((eq type ':separator)
2524 (list 'put (list 'quote function-name) ''completion-function
2525 ''use-completion-before-separator))
2526 ((eq type ':before)
2527 (list 'put (list 'quote function-name) ''completion-function
2528 ''use-completion-before-point))
2529 ((eq type ':backward-under)
2530 (list 'put (list 'quote function-name) ''completion-function
2531 ''use-completion-backward-under))
2532 ((eq type ':backward)
2533 (list 'put (list 'quote function-name) ''completion-function
2534 ''use-completion-backward))
2535 ((eq type ':under)
2536 (list 'put (list 'quote function-name) ''completion-function
2537 ''use-completion-under-point))
2538 ((eq type ':under-or-before)
2539 (list 'put (list 'quote function-name) ''completion-function
2540 ''use-completion-under-or-before-point))
2541 ((eq type ':minibuffer-separator)
2542 (list 'put (list 'quote function-name) ''completion-function
2543 ''use-completion-minibuffer-separator))))
2545 (defun use-completion-minibuffer-separator ()
2546 (let ((cmpl-syntax-table cmpl-standard-syntax-table))
2547 (use-completion-before-separator)))
2549 (defun use-completion-backward-under ()
2550 (use-completion-under-point)
2551 (if (eq last-command 'complete)
2552 ;; probably a failed completion if you have to back up
2553 (cmpl-statistics-block (record-complete-failed))))
2555 (defun use-completion-backward ()
2556 (if (eq last-command 'complete)
2557 ;; probably a failed completion if you have to back up
2558 (cmpl-statistics-block (record-complete-failed))))
2560 (defun completion-before-command ()
2561 (funcall (or (and (symbolp this-command)
2562 (get this-command 'completion-function))
2563 'use-completion-under-or-before-point)))
2564 (add-hook 'pre-command-hook 'completion-before-command)
2567 ;;---------------------------------------------------------------------------
2568 ;; Patches to standard keymaps insert completions
2569 ;;---------------------------------------------------------------------------
2571 ;;-----------------------------------------------
2572 ;; Separators
2573 ;;-----------------------------------------------
2574 ;; We've used the completion syntax table given as a guide.
2576 ;; Global separator chars.
2577 ;; We left out <tab> because there are too many special cases for it. Also,
2578 ;; in normal coding it's rarely typed after a word.
2579 (global-set-key " " 'completion-separator-self-insert-autofilling)
2580 (global-set-key "!" 'completion-separator-self-insert-command)
2581 (global-set-key "%" 'completion-separator-self-insert-command)
2582 (global-set-key "^" 'completion-separator-self-insert-command)
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)
2600 ;; We include period and colon even though they are symbol chars because :
2601 ;; - in text we want to pick up the last word in a sentence.
2602 ;; - in C pointer refs. we want to pick up the first symbol
2603 ;; - it won't make a difference for lisp mode (package names are short)
2604 (global-set-key "." 'completion-separator-self-insert-command)
2605 (global-set-key ":" 'completion-separator-self-insert-command)
2607 ;; Lisp Mode diffs
2608 (define-key lisp-mode-map "!" 'self-insert-command)
2609 (define-key lisp-mode-map "&" 'self-insert-command)
2610 (define-key lisp-mode-map "%" 'self-insert-command)
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)
2615 ;; C mode diffs.
2616 (defun completion-c-mode-hook ()
2617 (def-completion-wrapper electric-c-semi :separator)
2618 (define-key c-mode-map "+" 'completion-separator-self-insert-command)
2619 (define-key c-mode-map "*" 'completion-separator-self-insert-command)
2620 (define-key c-mode-map "/" 'completion-separator-self-insert-command))
2621 ;; Do this either now or whenever C mode is loaded.
2622 (if (featurep 'cc-mode)
2623 (completion-c-mode-hook)
2624 (add-hook 'c-mode-hook 'completion-c-mode-hook))
2626 ;; FORTRAN mode diffs. (these are defined when fortran is called)
2627 (defun completion-setup-fortran-mode ()
2628 (define-key fortran-mode-map "+" 'completion-separator-self-insert-command)
2629 (define-key fortran-mode-map "-" 'completion-separator-self-insert-command)
2630 (define-key fortran-mode-map "*" 'completion-separator-self-insert-command)
2631 (define-key fortran-mode-map "/" 'completion-separator-self-insert-command)
2634 ;;-----------------------------------------------
2635 ;; End of line chars.
2636 ;;-----------------------------------------------
2637 (def-completion-wrapper newline :separator)
2638 (def-completion-wrapper newline-and-indent :separator)
2639 (def-completion-wrapper comint-send-input :separator)
2640 (def-completion-wrapper exit-minibuffer :minibuffer-separator)
2641 (def-completion-wrapper eval-print-last-sexp :separator)
2642 (def-completion-wrapper eval-last-sexp :separator)
2643 ;;(def-completion-wrapper minibuffer-complete-and-exit :minibuffer)
2645 ;;-----------------------------------------------
2646 ;; Cursor movement
2647 ;;-----------------------------------------------
2649 (def-completion-wrapper next-line :under-or-before)
2650 (def-completion-wrapper previous-line :under-or-before)
2651 (def-completion-wrapper beginning-of-buffer :under-or-before)
2652 (def-completion-wrapper end-of-buffer :under-or-before)
2653 (def-completion-wrapper beginning-of-line :under-or-before)
2654 (def-completion-wrapper end-of-line :under-or-before)
2655 (def-completion-wrapper forward-char :under-or-before)
2656 (def-completion-wrapper forward-word :under-or-before)
2657 (def-completion-wrapper forward-sexp :under-or-before)
2658 (def-completion-wrapper backward-char :backward-under)
2659 (def-completion-wrapper backward-word :backward-under)
2660 (def-completion-wrapper backward-sexp :backward-under)
2662 (def-completion-wrapper delete-backward-char :backward)
2663 (def-completion-wrapper delete-backward-char-untabify :backward)
2665 ;; Tests --
2666 ;; foobarbiz
2667 ;; foobar
2668 ;; fooquux
2669 ;; fooper
2671 (cmpl-statistics-block
2672 (record-completion-file-loaded))
2674 ;;; completion.el ends here