1 ;;; completion.el --- dynamic word-completion code
3 ;; Copyright (C) 1990, 1993, 1995, 1997, 2004 Free Software Foundation, Inc.
6 ;; Keywords: abbrev convenience
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)
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.
29 ;; What to put in .emacs
30 ;;-----------------------
31 ;; (dynamic-completion-mode)
33 ;;---------------------------------------------------------------------------
34 ;; Documentation [Slightly out of date]
35 ;;---------------------------------------------------------------------------
36 ;; (also check the documentation string of the functions)
41 ;; After you type a few characters, pressing the "complete" key inserts
42 ;; the rest of the word you are likely to type.
44 ;; This watches all the words that you type and remembers them. When
45 ;; typing a new word, pressing "complete" (meta-return) "completes" the
46 ;; word by inserting the most recently used word that begins with the
47 ;; same characters. If you press meta-return repeatedly, it cycles
48 ;; through all the words it knows about.
50 ;; If you like the completion then just continue typing, it is as if you
51 ;; entered the text by hand. If you want the inserted extra characters
52 ;; to go away, type control-w or delete. More options are described below.
54 ;; The guesses are made in the order of the most recently "used". Typing
55 ;; in a word and then typing a separator character (such as a space) "uses"
56 ;; the word. So does moving a cursor over the word. If no words are found,
57 ;; it uses an extended version of the dabbrev style completion.
59 ;; You automatically save the completions you use to a file between
62 ;; Completion enables programmers to enter longer, more descriptive
63 ;; variable names while typing fewer keystrokes than they normally would.
67 ;;---------------------
69 ;; A "word" is any string containing characters with either word or symbol
70 ;; syntax. [E.G. Any alphanumeric string with hyphens, underscores, etc.]
71 ;; Unless you change the constants, you must type at least three characters
72 ;; for the word to be recognized. Only words longer than 6 characters are
75 ;; When you load this file, completion will be on. I suggest you use the
76 ;; compiled version (because it is noticeably faster).
78 ;; M-x completion-mode toggles whether or not new words are added to the
79 ;; database by changing the value of enable-completion.
81 ;; SAVING/LOADING COMPLETIONS
82 ;; Completions are automatically saved from one session to another
83 ;; (unless save-completions-flag or enable-completion is nil).
84 ;; Loading this file (or calling initialize-completions) causes EMACS
85 ;; to load a completions database for a saved completions file
86 ;; (default: ~/.completions). When you exit, EMACS saves a copy of the
87 ;; completions that you
88 ;; often use. When you next start, EMACS loads in the saved completion file.
90 ;; The number of completions saved depends loosely on
91 ;; *saved-completions-decay-factor*. Completions that have never been
92 ;; inserted via "complete" are not saved. You are encouraged to experiment
93 ;; with different functions (see compute-completion-min-num-uses).
95 ;; Some completions are permanent and are always saved out. These
96 ;; completions have their num-uses slot set to T. Use
97 ;; add-permanent-completion to do this
99 ;; Completions are saved only if enable-completion is T. The number of old
100 ;; versions kept of the saved completions file is controlled by
101 ;; completions-file-versions-kept.
103 ;; COMPLETE KEY OPTIONS
104 ;; The complete function takes a numeric arguments.
105 ;; control-u :: leave the point at the beginning of the completion rather
107 ;; a number :: rotate through the possible completions by that amount
108 ;; `-' :: same as -1 (insert previous completion)
110 ;; HOW THE DATABASE IS MAINTAINED
113 ;; UPDATING THE DATABASE MANUALLY
114 ;; m-x kill-completion
115 ;; kills the completion at point.
116 ;; m-x add-completion
117 ;; m-x add-permanent-completion
119 ;; UPDATING THE DATABASE FROM A SOURCE CODE FILE
120 ;; m-x add-completions-from-buffer
121 ;; Parses all the definition names from a C or LISP mode buffer and
122 ;; adds them to the completion database.
124 ;; m-x add-completions-from-lisp-file
125 ;; Parses all the definition names from a C or Lisp mode file and
126 ;; adds them to the completion database.
128 ;; UPDATING THE DATABASE FROM A TAGS TABLE
129 ;; m-x add-completions-from-tags-table
130 ;; Adds completions from the current tags-table-buffer.
132 ;; HOW A COMPLETION IS FOUND
136 ;; Completion is string case independent if case-fold-search has its
137 ;; normal default of T. Also when the completion is inserted the case of the
138 ;; entry is coerced appropriately.
139 ;; [E.G. APP --> APPROPRIATELY app --> appropriately
140 ;; App --> Appropriately]
143 ;; The form `(initialize-completions)' initializes the completion system by
144 ;; trying to load in the user's completions. After the first cal, further
145 ;; calls have no effect so one should be careful not to put the form in a
146 ;; site's standard site-init file.
148 ;;---------------------------------------------------------------------------
152 ;;---------------------------------------------------------------------------
153 ;; Functions you might like to call
154 ;;---------------------------------------------------------------------------
156 ;; add-completion string &optional num-uses
157 ;; Adds a new string to the database
159 ;; add-permanent-completion string
160 ;; Adds a new string to the database with num-uses = T
163 ;; kill-completion string
164 ;; Kills the completion from the database.
166 ;; clear-all-completions
167 ;; Clears the database
169 ;; list-all-completions
170 ;; Returns a list of all completions.
173 ;; next-completion string &optional index
174 ;; Returns a completion entry that starts with string.
176 ;; find-exact-completion string
177 ;; Returns a completion entry that exactly matches string.
180 ;; Inserts a completion at point
182 ;; initialize-completions
183 ;; Loads the completions file and sets up so that exiting emacs will
186 ;; save-completions-to-file &optional filename
187 ;; load-completions-from-file &optional filename
189 ;;-----------------------------------------------
191 ;;-----------------------------------------------
193 ;; get-completion-list string
195 ;; These things are for manipulating the structure
196 ;; make-completion string num-uses
197 ;; completion-num-uses completion
198 ;; completion-string completion
199 ;; set-completion-num-uses completion num-uses
200 ;; set-completion-string completion string
204 ;;-----------------------------------------------
205 ;; To Do :: (anybody ?)
206 ;;-----------------------------------------------
208 ;; Implement Lookup and keyboard interface in C
209 ;; Add package prefix smarts (for Common Lisp)
210 ;; Add autoprompting of possible completions after every keystroke (fast
212 ;; Add doc. to texinfo
215 ;;-----------------------------------------------
217 ;;-----------------------------------------------
218 ;; Sometime in '84 Brewster implemented a somewhat buggy version for
220 ;; Jan. '85 Jim became enamored of the idea and implemented a faster,
221 ;; more robust version.
222 ;; With input from many users at TMC, (rose, craig, and gls come to mind),
223 ;; the current style of interface was developed.
224 ;; 9/87, Jim and Brewster took terminals home. Yuck. After
225 ;; complaining for a while Brewster implemented a subset of the current
226 ;; LISPM version for GNU Emacs.
227 ;; 8/88 After complaining for a while (and with sufficient
228 ;; promised rewards), Jim reimplemented a version of GNU completion
229 ;; superior to that of the LISPM version.
231 ;;-----------------------------------------------
233 ;;-----------------------------------------------
234 ;; Cliff Lasser (cal@think.com), Kevin Herbert (kph@cisco.com),
235 ;; eero@media-lab, kgk@cs.brown.edu, jla@ai.mit.edu,
237 ;;-----------------------------------------------
239 ;;-----------------------------------------------
240 ;; From version 9 to 10
241 ;; - Allowance for non-integral *completion-version* nos.
242 ;; - Fix cmpl-apply-as-top-level for keyboard macros
243 ;; - Fix broken completion merging (in save-completions-to-file)
244 ;; - More misc. fixes for version 19.0 of emacs
246 ;; From Version 8 to 9
247 ;; - Ported to version 19.0 of emacs (backcompatible with version 18)
248 ;; - Added add-completions-from-tags-table (with thanks to eero@media-lab)
250 ;; From Version 7 to 8
251 ;; - Misc. changes to comments
252 ;; - new completion key bindings: c-x o, M->, M-<, c-a, c-e
253 ;; - cdabbrev now checks all the visible window buffers and the "other buffer"
254 ;; - `%' is now a symbol character rather than a separator (except in C mode)
256 ;; From Version 6 to 7
257 ;; - Fixed bug with saving out .completion file the first time
259 ;; From Version 5 to 6
260 ;; - removed statistics recording
261 ;; - reworked advise to handle autoloads
262 ;; - Fixed fortran mode support
263 ;; - Added new cursor motion triggers
265 ;; From Version 4 to 5
266 ;; - doesn't bother saving if nothing has changed
267 ;; - auto-save if haven't used for a 1/2 hour
268 ;; - save period extended to two weeks
269 ;; - minor fix to capitalization code
270 ;; - added *completion-auto-save-period* to variables recorded.
271 ;; - added reenter protection to cmpl-record-statistics-filter
272 ;; - added backup protection to save-completions-to-file (prevents
273 ;; problems with disk full errors)
277 ;;---------------------------------------------------------------------------
278 ;; User changeable parameters
279 ;;---------------------------------------------------------------------------
281 (defgroup completion nil
282 "Dynamic word-completion code."
287 (defcustom enable-completion t
288 "*Non-nil means enable recording and saving of completions.
289 If nil, no new words are added to the database or saved to the init file."
293 (defcustom save-completions-flag t
294 "*Non-nil means save most-used completions when exiting Emacs.
295 See also `save-completions-retention-time'."
299 (defcustom save-completions-file-name
(convert-standard-filename "~/.completions")
300 "*The filename to save completions to."
304 (defcustom save-completions-retention-time
336
305 "*Discard a completion if unused for this many hours.
306 \(1 day = 24, 1 week = 168). If this is 0, non-permanent completions
307 will not be saved unless these are used. Default is two weeks."
311 (defcustom completion-on-separator-character nil
312 "*Non-nil means separator characters mark previous word as used.
313 This means the word will be saved as a completion."
317 (defcustom completions-file-versions-kept kept-new-versions
318 "*Number of versions to keep for the saved completions file."
322 (defcustom completion-prompt-speed-threshold
4800
323 "*Minimum output speed at which to display next potential completion."
327 (defcustom completion-cdabbrev-prompt-flag nil
328 "*If non-nil, the next completion prompt does a cdabbrev search.
329 This can be time consuming."
333 (defcustom completion-search-distance
15000
334 "*How far to search in the buffer when looking for completions.
335 In number of characters. If nil, search the whole buffer."
339 (defcustom completions-merging-modes
'(lisp c
)
340 "*List of modes {`c' or `lisp'} for automatic completions merging.
341 Definitions from visited files which have these modes
342 are automatically added to the completion database."
343 :type
'(set (const lisp
) (const c
))
346 ;;(defvar *record-cmpl-statistics-p* nil
347 ;; "*If non-nil, record completion statistics.")
349 ;;(defvar *completion-auto-save-period* 1800
350 ;; "*The period in seconds to wait for emacs to be idle before autosaving
351 ;;the completions. Default is a 1/2 hour.")
353 (defvar completion-min-length
6
354 "*The minimum length of a stored completion.
355 DON'T CHANGE WITHOUT RECOMPILING ! This is used by macros.")
357 (defvar completion-max-length
200
358 "*The maximum length of a stored completion.
359 DON'T CHANGE WITHOUT RECOMPILING ! This is used by macros.")
361 (defvar completion-prefix-min-length
3
362 "The minimum length of a completion search string.
363 DON'T CHANGE WITHOUT RECOMPILING ! This is used by macros.")
365 ;;---------------------------------------------------------------------------
366 ;; Internal Variables
367 ;;---------------------------------------------------------------------------
369 (defvar cmpl-initialized-p nil
370 "Set to t when the completion system is initialized.
371 Indicates that the old completion file has been read in.")
373 (defvar cmpl-completions-accepted-p nil
374 "Set to t as soon as the first completion has been accepted.
375 Used to decide whether to save completions.")
377 (defvar cmpl-preceding-syntax
)
379 (defvar completion-string
)
381 ;;---------------------------------------------------------------------------
383 ;;---------------------------------------------------------------------------
385 ;;-----------------------------------------------
386 ;; String case coercion
387 ;;-----------------------------------------------
389 (defun cmpl-string-case-type (string)
390 "Return :capitalized, :up, :down, :mixed, or :neither for case of STRING."
391 (let ((case-fold-search nil
))
392 (cond ((string-match "[[:lower:]]" string
)
393 (cond ((string-match "[[:upper:]]" string
)
394 (cond ((and (> (length string
) 1)
395 (null (string-match "[[:upper:]]" string
1)))
401 (cond ((string-match "[[:upper:]]" string
)
406 ;; (cmpl-string-case-type "123ABCDEF456") --> :up
407 ;; (cmpl-string-case-type "123abcdef456") --> :down
408 ;; (cmpl-string-case-type "123aBcDeF456") --> :mixed
409 ;; (cmpl-string-case-type "123456") --> :neither
410 ;; (cmpl-string-case-type "Abcde123") --> :capitalized
412 (defun cmpl-coerce-string-case (string case-type
)
413 (cond ((eq case-type
:down
) (downcase string
))
414 ((eq case-type
:up
) (upcase string
))
415 ((eq case-type
:capitalized
)
416 (setq string
(downcase string
))
417 (aset string
0 (logand ?
\337 (aref string
0)))
421 (defun cmpl-merge-string-cases (string-to-coerce given-string
)
422 (let ((string-case-type (cmpl-string-case-type string-to-coerce
)))
423 (cond ((memq string-case-type
'(:down
:up
:capitalized
))
424 ;; Found string is in a standard case. Coerce to a type based on
426 (cmpl-coerce-string-case string-to-coerce
427 (cmpl-string-case-type given-string
)))
429 ;; If the found string is in some unusual case, just insert it
434 ;; (cmpl-merge-string-cases "AbCdEf456" "abc") --> AbCdEf456
435 ;; (cmpl-merge-string-cases "abcdef456" "ABC") --> ABCDEF456
436 ;; (cmpl-merge-string-cases "ABCDEF456" "Abc") --> Abcdef456
437 ;; (cmpl-merge-string-cases "ABCDEF456" "abc") --> abcdef456
440 (defun cmpl-hours-since-origin ()
441 (let ((time (current-time)))
442 (floor (+ (* 65536.0 (nth 0 time
)) (nth 1 time
)) 3600)))
444 ;;---------------------------------------------------------------------------
445 ;; "Symbol" parsing functions
446 ;;---------------------------------------------------------------------------
447 ;; The functions symbol-before-point, symbol-under-point, etc. quickly return
448 ;; an appropriate symbol string. The strategy is to temporarily change
449 ;; the syntax table to enable fast symbol searching. There are three classes
450 ;; of syntax in these "symbol" syntax tables ::
452 ;; syntax (?_) - "symbol" chars (e.g. alphanumerics)
453 ;; syntax (?w) - symbol chars to ignore at end of words (e.g. period).
454 ;; syntax (? ) - everything else
456 ;; Thus by judicious use of scan-sexps and forward-word, we can get
457 ;; the word we want relatively fast and without consing.
459 ;; Why do we need a separate category for "symbol chars to ignore at ends" ?
460 ;; For example, in LISP we want starting :'s trimmed
461 ;; so keyword argument specifiers also define the keyword completion. And,
462 ;; for example, in C we want `.' appearing in a structure ref. to
463 ;; be kept intact in order to store the whole structure ref.; however, if
464 ;; it appears at the end of a symbol it should be discarded because it is
465 ;; probably used as a period.
467 ;; Here is the default completion syntax ::
468 ;; Symbol chars :: A-Z a-z 0-9 @ / \ * + ~ $ < > %
469 ;; Symbol chars to ignore at ends :: _ : . -
470 ;; Separator chars. :: <tab> <space> ! ^ & ( ) = ` | { } [ ] ; " ' #
471 ;; , ? <Everything else>
473 ;; Mode specific differences and notes ::
475 ;; Symbol chars :: ! & ? = ^
478 ;; Separator chars :: + * / : %
479 ;; A note on the hyphen (`-'). Perhaps the hyphen should also be a separator
480 ;; char., however, we wanted to have completion symbols include pointer
481 ;; references. For example, "foo->bar" is a symbol as far as completion is
485 ;; Separator chars :: + - * / :
489 ;; Of course there is no pathname "mode" and in fact we have not implemented
490 ;; this table. However, if there was such a mode, this is what it would look
493 ;;-----------------------------------------------
495 ;;-----------------------------------------------
497 (defun cmpl-make-standard-completion-syntax-table ()
498 (let ((table (make-syntax-table))
500 ;; Default syntax is whitespace.
503 (modify-syntax-entry i
" " table
)
508 (modify-syntax-entry (+ ?a i
) "_" table
)
509 (modify-syntax-entry (+ ?A i
) "_" table
)
514 (modify-syntax-entry (+ ?
0 i
) "_" table
)
517 (let ((symbol-chars '(?
@ ?
/ ?
\\ ?
* ?
+ ?~ ?$ ?
< ?
> ?%
))
518 (symbol-chars-ignore '(?_ ?- ?
: ?.
)))
519 (dolist (char symbol-chars
)
520 (modify-syntax-entry char
"_" table
))
521 (dolist (char symbol-chars-ignore
)
522 (modify-syntax-entry char
"w" table
)))
525 (defconst cmpl-standard-syntax-table
(cmpl-make-standard-completion-syntax-table))
527 (defun cmpl-make-lisp-completion-syntax-table ()
528 (let ((table (copy-syntax-table cmpl-standard-syntax-table
))
529 (symbol-chars '(?
! ?
& ?? ?
= ?^
)))
530 (dolist (char symbol-chars
)
531 (modify-syntax-entry char
"_" table
))
534 (defun cmpl-make-c-completion-syntax-table ()
535 (let ((table (copy-syntax-table cmpl-standard-syntax-table
))
536 (separator-chars '(?
+ ?
* ?
/ ?
: ?%
)))
537 (dolist (char separator-chars
)
538 (modify-syntax-entry char
" " table
))
541 (defun cmpl-make-fortran-completion-syntax-table ()
542 (let ((table (copy-syntax-table cmpl-standard-syntax-table
))
543 (separator-chars '(?
+ ?- ?
* ?
/ ?
:)))
544 (dolist (char separator-chars
)
545 (modify-syntax-entry char
" " table
))
548 (defconst cmpl-lisp-syntax-table
(cmpl-make-lisp-completion-syntax-table))
549 (defconst cmpl-c-syntax-table
(cmpl-make-c-completion-syntax-table))
550 (defconst cmpl-fortran-syntax-table
(cmpl-make-fortran-completion-syntax-table))
552 (defvar cmpl-syntax-table cmpl-standard-syntax-table
553 "This variable holds the current completion syntax table.")
554 (make-variable-buffer-local 'cmpl-syntax-table
)
556 ;;-----------------------------------------------
558 ;;-----------------------------------------------
559 (defvar cmpl-symbol-start nil
560 "Holds first character of symbol, after any completion symbol function.")
561 (defvar cmpl-symbol-end nil
562 "Holds last character of symbol, after any completion symbol function.")
563 ;; These are temp. vars. we use to avoid using let.
564 ;; Why ? Small speed improvement.
565 (defvar cmpl-saved-syntax nil
)
566 (defvar cmpl-saved-point nil
)
568 (defun symbol-under-point ()
569 "Return the symbol that the point is currently on.
570 But only if it is longer than `completion-min-length'."
571 (setq cmpl-saved-syntax
(syntax-table))
574 (set-syntax-table cmpl-syntax-table
)
576 ;; Cursor is on following-char and after preceding-char
577 ((memq (char-syntax (following-char)) '(?w ?_
))
578 (setq cmpl-saved-point
(point)
579 cmpl-symbol-start
(scan-sexps (1+ cmpl-saved-point
) -
1)
580 cmpl-symbol-end
(scan-sexps cmpl-saved-point
1))
581 ;; Remove chars to ignore at the start.
582 (cond ((= (char-syntax (char-after cmpl-symbol-start
)) ?w
)
583 (goto-char cmpl-symbol-start
)
585 (setq cmpl-symbol-start
(point))
586 (goto-char cmpl-saved-point
)))
587 ;; Remove chars to ignore at the end.
588 (cond ((= (char-syntax (char-after (1- cmpl-symbol-end
))) ?w
)
589 (goto-char cmpl-symbol-end
)
591 (setq cmpl-symbol-end
(point))
592 (goto-char cmpl-saved-point
)))
593 ;; Return completion if the length is reasonable.
594 (if (and (<= completion-min-length
595 (- cmpl-symbol-end cmpl-symbol-start
))
596 (<= (- cmpl-symbol-end cmpl-symbol-start
)
597 completion-max-length
))
598 (buffer-substring cmpl-symbol-start cmpl-symbol-end
)))))
599 (set-syntax-table cmpl-saved-syntax
)))
601 ;; tests for symbol-under-point
602 ;; `^' indicates cursor pos. where value is returned
604 ;; ^^^^^^^^^^^^^^^^ --> simple-word-test
605 ;; _harder_word_test_
606 ;; ^^^^^^^^^^^^^^^^^^ --> harder_word_test
609 ;; /foo/bar/quux.hello
610 ;; ^^^^^^^^^^^^^^^^^^^ --> /foo/bar/quux.hello
613 (defun symbol-before-point ()
614 "Return a string of the symbol immediately before point.
615 Returns nil if there isn't one longer than `completion-min-length'."
616 ;; This is called when a word separator is typed so it must be FAST !
617 (setq cmpl-saved-syntax
(syntax-table))
620 (set-syntax-table cmpl-syntax-table
)
621 ;; Cursor is on following-char and after preceding-char
622 (cond ((= (setq cmpl-preceding-syntax
(char-syntax (preceding-char))) ?_
)
623 ;; Number of chars to ignore at end.
624 (setq cmpl-symbol-end
(point)
625 cmpl-symbol-start
(scan-sexps cmpl-symbol-end -
1))
626 ;; Remove chars to ignore at the start.
627 (cond ((= (char-syntax (char-after cmpl-symbol-start
)) ?w
)
628 (goto-char cmpl-symbol-start
)
630 (setq cmpl-symbol-start
(point))
631 (goto-char cmpl-symbol-end
)))
632 ;; Return value if long enough.
633 (if (>= cmpl-symbol-end
634 (+ cmpl-symbol-start completion-min-length
))
635 (buffer-substring cmpl-symbol-start cmpl-symbol-end
)))
636 ((= cmpl-preceding-syntax ?w
)
637 ;; chars to ignore at end
638 (setq cmpl-saved-point
(point)
639 cmpl-symbol-start
(scan-sexps cmpl-saved-point -
1))
640 ;; take off chars. from end
642 (setq cmpl-symbol-end
(point))
643 ;; remove chars to ignore at the start
644 (cond ((= (char-syntax (char-after cmpl-symbol-start
)) ?w
)
645 (goto-char cmpl-symbol-start
)
647 (setq cmpl-symbol-start
(point))))
649 (goto-char cmpl-saved-point
)
650 ;; Return completion if the length is reasonable
651 (if (and (<= completion-min-length
652 (- cmpl-symbol-end cmpl-symbol-start
))
653 (<= (- cmpl-symbol-end cmpl-symbol-start
)
654 completion-max-length
))
655 (buffer-substring cmpl-symbol-start cmpl-symbol-end
)))))
656 (set-syntax-table cmpl-saved-syntax
)))
658 ;; tests for symbol-before-point
659 ;; `^' indicates cursor pos. where value is returned
664 ;; ^ --> simple-word-test
665 ;; _harder_word_test_
666 ;; ^ --> harder_word_test
667 ;; ^ --> harder_word_test
672 (defun symbol-under-or-before-point ()
673 ;; This could be made slightly faster but it is better to avoid
674 ;; copying all the code.
675 ;; However, it is only used by the completion string prompter.
676 ;; If it comes into common use, it could be rewritten.
678 (setq cmpl-saved-syntax
(syntax-table))
681 (set-syntax-table cmpl-syntax-table
)
682 (char-syntax (following-char)))
683 (set-syntax-table cmpl-saved-syntax
)))
685 (symbol-under-point))
687 (symbol-before-point))))
690 (defun symbol-before-point-for-complete ()
691 ;; "Returns a string of the symbol immediately before point
692 ;; or nil if there isn't one. Like symbol-before-point but doesn't trim the
694 ;; Cursor is on following-char and after preceding-char
695 (setq cmpl-saved-syntax
(syntax-table))
698 (set-syntax-table cmpl-syntax-table
)
699 (cond ((memq (setq cmpl-preceding-syntax
(char-syntax (preceding-char)))
701 (setq cmpl-symbol-end
(point)
702 cmpl-symbol-start
(scan-sexps cmpl-symbol-end -
1))
703 ;; Remove chars to ignore at the start.
704 (cond ((= (char-syntax (char-after cmpl-symbol-start
)) ?w
)
705 (goto-char cmpl-symbol-start
)
707 (setq cmpl-symbol-start
(point))
708 (goto-char cmpl-symbol-end
)))
709 ;; Return completion if the length is reasonable.
710 (if (and (<= completion-prefix-min-length
711 (- cmpl-symbol-end cmpl-symbol-start
))
712 (<= (- cmpl-symbol-end cmpl-symbol-start
)
713 completion-max-length
))
714 (buffer-substring cmpl-symbol-start cmpl-symbol-end
)))))
715 ;; Restore syntax table.
716 (set-syntax-table cmpl-saved-syntax
)))
718 ;; tests for symbol-before-point-for-complete
719 ;; `^' indicates cursor pos. where value is returned
724 ;; ^ --> simple-word-test
725 ;; _harder_word_test_
726 ;; ^ --> harder_word_test
727 ;; ^ --> harder_word_test_
734 ;;---------------------------------------------------------------------------
735 ;; Statistics Recording
736 ;;---------------------------------------------------------------------------
738 ;; Note that the guts of this has been turned off. The guts
739 ;; are in completion-stats.el.
741 ;;-----------------------------------------------
742 ;; Conditionalizing code on *record-cmpl-statistics-p*
743 ;;-----------------------------------------------
744 ;; All statistics code outside this block should use this
745 (defmacro cmpl-statistics-block
(&rest body
))
746 ;; "Only executes body if we are recording statistics."
748 ;; (list* '*record-cmpl-statistics-p* body)
751 ;;-----------------------------------------------
752 ;; Completion Sources
753 ;;-----------------------------------------------
756 (defconst cmpl-source-unknown
0)
757 (defconst cmpl-source-init-file
1)
758 (defconst cmpl-source-file-parsing
2)
759 (defconst cmpl-source-separator
3)
760 (defconst cmpl-source-cursor-moves
4)
761 (defconst cmpl-source-interactive
5)
762 (defconst cmpl-source-cdabbrev
6)
763 (defconst num-cmpl-sources
7)
764 (defvar current-completion-source cmpl-source-unknown
)
768 ;;---------------------------------------------------------------------------
769 ;; Completion Method #2: dabbrev-expand style
770 ;;---------------------------------------------------------------------------
772 ;; This method is used if there are no useful stored completions. It is
773 ;; based on dabbrev-expand with these differences :
774 ;; 1) Faster (we don't use regexps)
775 ;; 2) case coercion handled correctly
776 ;; This is called cdabbrev to differentiate it.
777 ;; We simply search backwards through the file looking for words which
778 ;; start with the same letters we are trying to complete.
781 (defvar cdabbrev-completions-tried nil
)
782 ;; "A list of all the cdabbrev completions since the last reset.")
784 (defvar cdabbrev-current-point
0)
785 ;; "The current point position the cdabbrev search is at.")
787 (defvar cdabbrev-current-window nil
)
788 ;; "The current window we are looking for cdabbrevs in.
789 ;; Return t if looking in (other-buffer), nil if no more cdabbrevs.")
791 (defvar cdabbrev-wrapped-p nil
)
792 ;; "Return t if the cdabbrev search has wrapped around the file.")
794 (defvar cdabbrev-abbrev-string
"")
795 (defvar cdabbrev-start-point
0)
796 (defvar cdabbrev-stop-point
)
798 ;; Test strings for cdabbrev
799 ;; cdat-upcase ;;same namestring
803 ;; a-cdat-1 ;;doesn't start correctly
807 (defun reset-cdabbrev (abbrev-string &optional initial-completions-tried
)
808 "Reset the cdabbrev search to search for ABBREV-STRING.
809 INITIAL-COMPLETIONS-TRIED is a list of downcased strings to ignore
811 (setq cdabbrev-abbrev-string abbrev-string
812 cdabbrev-completions-tried
813 (cons (downcase abbrev-string
) initial-completions-tried
))
814 (reset-cdabbrev-window t
))
816 (defun set-cdabbrev-buffer ()
817 ;; cdabbrev-current-window must not be nil
818 (set-buffer (if (eq cdabbrev-current-window t
)
820 (window-buffer cdabbrev-current-window
))))
823 (defun reset-cdabbrev-window (&optional initializep
)
824 "Reset the cdabbrev search to search for abbrev-string."
827 (setq cdabbrev-current-window
(selected-window)))
828 ((eq cdabbrev-current-window t
)
829 ;; Everything has failed
830 (setq cdabbrev-current-window nil
))
831 (cdabbrev-current-window
832 (setq cdabbrev-current-window
(next-window cdabbrev-current-window
))
833 (if (eq cdabbrev-current-window
(selected-window))
834 ;; No more windows, try other buffer.
835 (setq cdabbrev-current-window t
))))
836 (if cdabbrev-current-window
838 (set-cdabbrev-buffer)
839 (setq cdabbrev-current-point
(point)
840 cdabbrev-start-point cdabbrev-current-point
842 (if completion-search-distance
844 (- cdabbrev-start-point completion-search-distance
))
846 cdabbrev-wrapped-p nil
))))
848 (defun next-cdabbrev ()
849 "Return the next possible cdabbrev expansion or nil if there isn't one.
850 `reset-cdabbrev' must've been called already.
851 This is sensitive to `case-fold-search'."
852 ;; note that case-fold-search affects the behavior of this function
853 ;; Bug: won't pick up an expansion that starts at the top of buffer
854 (if cdabbrev-current-window
858 downcase-expansion tried-list syntax saved-point-2
)
862 ;; Switch to current completion buffer
863 (set-cdabbrev-buffer)
864 ;; Save current buffer state
865 (setq saved-point
(point)
866 saved-syntax
(syntax-table))
867 ;; Restore completion state
868 (set-syntax-table cmpl-syntax-table
)
869 (goto-char cdabbrev-current-point
)
870 ;; Loop looking for completions
872 ;; This code returns t if it should loop again
874 (;; search for the string
875 (search-backward cdabbrev-abbrev-string cdabbrev-stop-point t
)
876 ;; return nil if the completion is valid
879 ;; does it start with a separator char ?
880 (or (= (setq syntax
(char-syntax (preceding-char))) ?
)
882 ;; symbol char to ignore at end. Are we at end ?
884 (setq saved-point-2
(point))
887 (= (char-syntax (preceding-char)) ?
)
888 (goto-char saved-point-2
)))))
889 ;; is the symbol long enough ?
890 (setq expansion
(symbol-under-point))
891 ;; have we not tried this one before
893 ;; See if we've already used it
894 (setq tried-list cdabbrev-completions-tried
895 downcase-expansion
(downcase expansion
))
896 (while (and tried-list
897 (not (string-equal downcase-expansion
899 ;; Already tried, don't choose this one
900 (setq tried-list
(cdr tried-list
)))
901 ;; at this point tried-list will be nil if this
902 ;; expansion has not yet been tried
908 ;; If already wrapped, then we've failed completely
912 (goto-char (setq cdabbrev-current-point
913 (if completion-search-distance
914 (min (point-max) (+ cdabbrev-start-point completion-search-distance
))
917 (setq cdabbrev-wrapped-p t
))))
921 (setq cdabbrev-completions-tried
922 (cons downcase-expansion cdabbrev-completions-tried
)
923 cdabbrev-current-point
(point)))))
924 (set-syntax-table saved-syntax
)
925 (goto-char saved-point
)))
926 ;; If no expansion, go to next window
928 (t (reset-cdabbrev-window)
931 ;; The following must be eval'd in the minibuffer ::
932 ;; (reset-cdabbrev "cdat")
933 ;; (next-cdabbrev) --> "cdat-simple"
934 ;; (next-cdabbrev) --> "cdat-1-2-3-4"
935 ;; (next-cdabbrev) --> "CDAT-UPCASE"
936 ;; (next-cdabbrev) --> "cdat-wrapping"
937 ;; (next-cdabbrev) --> "cdat_start_sym"
938 ;; (next-cdabbrev) --> nil
939 ;; (next-cdabbrev) --> nil
940 ;; (next-cdabbrev) --> nil
946 ;;---------------------------------------------------------------------------
947 ;; Completion Database
948 ;;---------------------------------------------------------------------------
950 ;; We use two storage modes for the two search types ::
951 ;; 1) Prefix {cmpl-prefix-obarray} for looking up possible completions
952 ;; Used by search-completion-next
953 ;; the value of the symbol is nil or a cons of head and tail pointers
954 ;; 2) Interning {cmpl-obarray} to see if it's in the database
955 ;; Used by find-exact-completion, completion-in-database-p
956 ;; The value of the symbol is the completion entry
958 ;; bad things may happen if this length is changed due to the way
959 ;; GNU implements obarrays
960 (defconst cmpl-obarray-length
511)
962 (defvar cmpl-prefix-obarray
(make-vector cmpl-obarray-length
0)
963 "An obarray used to store the downcased completion prefixes.
964 Each symbol is bound to a list of completion entries.")
966 (defvar cmpl-obarray
(make-vector cmpl-obarray-length
0)
967 "An obarray used to store the downcased completions.
968 Each symbol is bound to a single completion entry.")
970 ;;-----------------------------------------------
971 ;; Completion Entry Structure Definition
972 ;;-----------------------------------------------
974 ;; A completion entry is a LIST of string, prefix-symbol num-uses, and
975 ;; last-use-time (the time the completion was last used)
976 ;; last-use-time is t if the string should be kept permanently
977 ;; num-uses is incremented every time the completion is used.
979 ;; We chose lists because (car foo) is faster than (aref foo 0) and the
980 ;; creation time is about the same.
984 (defmacro completion-string
(completion-entry)
985 (list 'car completion-entry
))
987 (defmacro completion-num-uses
(completion-entry)
988 ;; "The number of times it has used. Used to decide whether to save
990 (list 'car
(list 'cdr completion-entry
)))
992 (defmacro completion-last-use-time
(completion-entry)
993 ;; "The time it was last used. In hours since origin. Used to decide
994 ;; whether to save it. t if one should always save it."
995 (list 'nth
2 completion-entry
))
997 (defmacro completion-source
(completion-entry)
998 (list 'nth
3 completion-entry
))
1001 (defmacro set-completion-string
(completion-entry string
)
1002 (list 'setcar completion-entry string
))
1004 (defmacro set-completion-num-uses
(completion-entry num-uses
)
1005 (list 'setcar
(list 'cdr completion-entry
) num-uses
))
1007 (defmacro set-completion-last-use-time
(completion-entry last-use-time
)
1008 (list 'setcar
(list 'cdr
(list 'cdr completion-entry
)) last-use-time
))
1011 (defun make-completion (string)
1012 "Return a list of a completion entry."
1013 (list (list string
0 nil current-completion-source
)))
1016 ;;(defmacro cmpl-prefix-entry-symbol (completion-entry)
1017 ;; (list 'car (list 'cdr completion-entry)))
1021 ;;-----------------------------------------------
1022 ;; Prefix symbol entry definition
1023 ;;-----------------------------------------------
1024 ;; A cons of (head . tail)
1028 (defmacro cmpl-prefix-entry-head
(prefix-entry)
1029 (list 'car prefix-entry
))
1031 (defmacro cmpl-prefix-entry-tail
(prefix-entry)
1032 (list 'cdr prefix-entry
))
1036 (defmacro set-cmpl-prefix-entry-head
(prefix-entry new-head
)
1037 (list 'setcar prefix-entry new-head
))
1039 (defmacro set-cmpl-prefix-entry-tail
(prefix-entry new-tail
)
1040 (list 'setcdr prefix-entry new-tail
))
1044 (defun make-cmpl-prefix-entry (completion-entry-list)
1045 "Make a new prefix entry containing only completion-entry."
1046 (cons completion-entry-list completion-entry-list
))
1048 ;;-----------------------------------------------
1049 ;; Completion Database - Utilities
1050 ;;-----------------------------------------------
1052 (defun clear-all-completions ()
1053 "Initialize the completion storage. All existing completions are lost."
1055 (setq cmpl-prefix-obarray
(make-vector cmpl-obarray-length
0))
1056 (setq cmpl-obarray
(make-vector cmpl-obarray-length
0))
1057 (cmpl-statistics-block
1058 (record-clear-all-completions)))
1060 (defvar completions-list-return-value
)
1062 (defun list-all-completions ()
1063 "Return a list of all the known completion entries."
1064 (let ((completions-list-return-value nil
))
1065 (mapatoms 'list-all-completions-1 cmpl-prefix-obarray
)
1066 completions-list-return-value
))
1068 (defun list-all-completions-1 (prefix-symbol)
1069 (if (boundp prefix-symbol
)
1070 (setq completions-list-return-value
1071 (append (cmpl-prefix-entry-head (symbol-value prefix-symbol
))
1072 completions-list-return-value
))))
1074 (defun list-all-completions-by-hash-bucket ()
1075 "Return list of lists of known completion entries, organized by hash bucket."
1076 (let ((completions-list-return-value nil
))
1077 (mapatoms 'list-all-completions-by-hash-bucket-1 cmpl-prefix-obarray
)
1078 completions-list-return-value
))
1080 (defun list-all-completions-by-hash-bucket-1 (prefix-symbol)
1081 (if (boundp prefix-symbol
)
1082 (setq completions-list-return-value
1083 (cons (cmpl-prefix-entry-head (symbol-value prefix-symbol
))
1084 completions-list-return-value
))))
1087 ;;-----------------------------------------------
1088 ;; Updating the database
1089 ;;-----------------------------------------------
1091 ;; These are the internal functions used to update the datebase
1094 (defvar completion-to-accept nil
)
1095 ;;"Set to a string that is pending its acceptance."
1096 ;; this checked by the top level reading functions
1098 (defvar cmpl-db-downcase-string nil
)
1099 ;; "Setup by find-exact-completion, etc. The given string, downcased."
1100 (defvar cmpl-db-symbol nil
)
1101 ;; "The interned symbol corresponding to cmpl-db-downcase-string.
1102 ;; Set up by cmpl-db-symbol."
1103 (defvar cmpl-db-prefix-symbol nil
)
1104 ;; "The interned prefix symbol corresponding to cmpl-db-downcase-string."
1105 (defvar cmpl-db-entry nil
)
1106 (defvar cmpl-db-debug-p nil
1107 "Set to t if you want to debug the database.")
1110 (defun find-exact-completion (string)
1111 "Return the completion entry for STRING or nil.
1112 Sets up `cmpl-db-downcase-string' and `cmpl-db-symbol'."
1113 (and (boundp (setq cmpl-db-symbol
1114 (intern (setq cmpl-db-downcase-string
(downcase string
))
1116 (symbol-value cmpl-db-symbol
)))
1118 (defun find-cmpl-prefix-entry (prefix-string)
1119 "Return the prefix entry for string.
1120 Sets `cmpl-db-prefix-symbol'.
1121 Prefix-string must be exactly `completion-prefix-min-length' long
1122 and downcased. Sets up `cmpl-db-prefix-symbol'."
1123 (and (boundp (setq cmpl-db-prefix-symbol
1124 (intern prefix-string cmpl-prefix-obarray
)))
1125 (symbol-value cmpl-db-prefix-symbol
)))
1127 (defvar inside-locate-completion-entry nil
)
1128 ;; used to trap lossage in silent error correction
1130 (defun locate-completion-entry (completion-entry prefix-entry
)
1131 "Locate the completion entry.
1132 Returns a pointer to the element before the completion entry or nil if
1133 the completion entry is at the head.
1134 Must be called after `find-exact-completion'."
1135 (let ((prefix-list (cmpl-prefix-entry-head prefix-entry
))
1138 ((not (eq (car prefix-list
) completion-entry
))
1139 ;; not already at head
1140 (while (and prefix-list
1141 (not (eq completion-entry
1142 (car (setq next-prefix-list
(cdr prefix-list
))))))
1143 (setq prefix-list next-prefix-list
))
1146 ;; Didn't find it. Database is messed up.
1148 ;; not found, error if debug mode
1149 (error "Completion entry exists but not on prefix list - %s"
1151 (inside-locate-completion-entry
1152 ;; recursive error: really scrod
1153 (locate-completion-db-error))
1156 (set cmpl-db-symbol nil
)
1158 (locate-completion-entry-retry completion-entry
)))))))
1160 (defun locate-completion-entry-retry (old-entry)
1161 (let ((inside-locate-completion-entry t
))
1162 (add-completion (completion-string old-entry
)
1163 (completion-num-uses old-entry
)
1164 (completion-last-use-time old-entry
))
1165 (let* ((cmpl-entry (find-exact-completion (completion-string old-entry
)))
1168 (find-cmpl-prefix-entry
1169 (substring cmpl-db-downcase-string
1170 0 completion-prefix-min-length
)))))
1171 (if (and cmpl-entry pref-entry
)
1173 (locate-completion-entry cmpl-entry pref-entry
)
1175 (locate-completion-db-error)))))
1177 (defun locate-completion-db-error ()
1178 ;; recursive error: really scrod
1179 (error "Completion database corrupted. Try M-x clear-all-completions. Send bug report"))
1182 (defun add-completion-to-tail-if-new (string)
1183 "If STRING is not in the database add it to appropriate prefix list.
1184 STRING is added to the end of the appropriate prefix list with
1185 num-uses = 0. The database is unchanged if it is there. STRING must be
1186 longer than `completion-prefix-min-length'.
1187 This must be very fast.
1188 Returns the completion entry."
1189 (or (find-exact-completion string
)
1191 (let (;; create an entry
1192 (entry (make-completion string
))
1194 (prefix-entry (find-cmpl-prefix-entry
1195 (substring cmpl-db-downcase-string
0
1196 completion-prefix-min-length
))))
1197 ;; The next two forms should happen as a unit (atomically) but
1198 ;; no fatal errors should result if that is not the case.
1200 ;; These two should be atomic, but nothing fatal will happen
1202 (setcdr (cmpl-prefix-entry-tail prefix-entry
) entry
)
1203 (set-cmpl-prefix-entry-tail prefix-entry entry
))
1205 (set cmpl-db-prefix-symbol
(make-cmpl-prefix-entry entry
))))
1207 (cmpl-statistics-block
1208 (note-added-completion))
1210 (set cmpl-db-symbol
(car entry
)))))
1212 (defun add-completion-to-head (completion-string)
1213 "If COMPLETION-STRING is not in the database, add it to prefix list.
1214 We add COMPLETION-STRING to the head of the appropriate prefix list,
1215 or it to the head of the list.
1216 COMPLETION-STRING must be longer than `completion-prefix-min-length'.
1217 Updates the saved string with the supplied string.
1218 This must be very fast.
1219 Returns the completion entry."
1220 ;; Handle pending acceptance
1221 (if completion-to-accept
(accept-completion))
1222 ;; test if already in database
1223 (if (setq cmpl-db-entry
(find-exact-completion completion-string
))
1225 (let* ((prefix-entry (find-cmpl-prefix-entry
1226 (substring cmpl-db-downcase-string
0
1227 completion-prefix-min-length
)))
1228 (splice-ptr (locate-completion-entry cmpl-db-entry prefix-entry
))
1229 (cmpl-ptr (cdr splice-ptr
)))
1231 (set-completion-string cmpl-db-entry completion-string
)
1232 ;; move to head (if necessary)
1234 ;; These should all execute atomically but it is not fatal if
1237 (or (setcdr splice-ptr
(cdr cmpl-ptr
))
1238 ;; fix up tail if necessary
1239 (set-cmpl-prefix-entry-tail prefix-entry splice-ptr
))
1240 ;; splice in at head
1241 (setcdr cmpl-ptr
(cmpl-prefix-entry-head prefix-entry
))
1242 (set-cmpl-prefix-entry-head prefix-entry cmpl-ptr
)))
1245 (let (;; create an entry
1246 (entry (make-completion completion-string
))
1248 (prefix-entry (find-cmpl-prefix-entry
1249 (substring cmpl-db-downcase-string
0
1250 completion-prefix-min-length
))))
1252 ;; Splice in at head
1253 (setcdr entry
(cmpl-prefix-entry-head prefix-entry
))
1254 (set-cmpl-prefix-entry-head prefix-entry entry
))
1256 ;; Start new prefix entry
1257 (set cmpl-db-prefix-symbol
(make-cmpl-prefix-entry entry
))))
1259 (cmpl-statistics-block
1260 (note-added-completion))
1261 ;; Add it to the symbol
1262 (set cmpl-db-symbol
(car entry
)))))
1264 (defun delete-completion (completion-string)
1265 "Delete the completion from the database.
1266 String must be longer than `completion-prefix-min-length'."
1267 ;; Handle pending acceptance
1268 (if completion-to-accept
(accept-completion))
1269 (if (setq cmpl-db-entry
(find-exact-completion completion-string
))
1271 (let* ((prefix-entry (find-cmpl-prefix-entry
1272 (substring cmpl-db-downcase-string
0
1273 completion-prefix-min-length
)))
1274 (splice-ptr (locate-completion-entry cmpl-db-entry prefix-entry
)))
1275 ;; delete symbol reference
1276 (set cmpl-db-symbol nil
)
1277 ;; remove from prefix list
1280 (or (setcdr splice-ptr
(cdr (cdr splice-ptr
)))
1281 ;; fix up tail if necessary
1282 (set-cmpl-prefix-entry-tail prefix-entry splice-ptr
)))
1285 (or (set-cmpl-prefix-entry-head
1286 prefix-entry
(cdr (cmpl-prefix-entry-head prefix-entry
)))
1287 ;; List is now empty
1288 (set cmpl-db-prefix-symbol nil
))))
1289 (cmpl-statistics-block
1290 (note-completion-deleted)))
1291 (error "Unknown completion `%s'" completion-string
)))
1295 ;; (add-completion-to-head "banana") --> ("banana" 0 nil 0)
1296 ;; (find-exact-completion "banana") --> ("banana" 0 nil 0)
1297 ;; (find-exact-completion "bana") --> nil
1298 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1299 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1300 ;; (add-completion-to-head "banish") --> ("banish" 0 nil 0)
1301 ;; (find-exact-completion "banish") --> ("banish" 0 nil 0)
1302 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banish" ...) ("banana" ...))
1303 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1304 ;; (add-completion-to-head "banana") --> ("banana" 0 nil 0)
1305 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...) ("banish" ...))
1306 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banish" ...))
1309 ;; (add-completion-to-head "banner") --> ("banner" 0 nil 0)
1310 ;; (delete-completion "banner")
1311 ;; (find-exact-completion "banner") --> nil
1312 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...) ("banish" ...))
1313 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banish" ...))
1314 ;; (add-completion-to-head "banner") --> ("banner" 0 nil 0)
1315 ;; (delete-completion "banana")
1316 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banner" ...) ("banish" ...))
1317 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banish" ...))
1318 ;; (delete-completion "banner")
1319 ;; (delete-completion "banish")
1320 ;; (find-cmpl-prefix-entry "ban") --> nil
1321 ;; (delete-completion "banner") --> error
1324 ;; (add-completion-to-tail-if-new "banana") --> ("banana" 0 nil 0)
1325 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1326 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1327 ;; (add-completion-to-tail-if-new "banish") --> ("banish" 0 nil 0)
1328 ;; (car (find-cmpl-prefix-entry "ban")) -->(("banana" ...) ("banish" ...))
1329 ;; (cdr (find-cmpl-prefix-entry "ban")) -->(("banish" ...))
1333 ;;---------------------------------------------------------------------------
1334 ;; Database Update :: Interface level routines
1335 ;;---------------------------------------------------------------------------
1337 ;; These lie on top of the database ref. functions but below the standard
1338 ;; user interface level
1341 (defun interactive-completion-string-reader (prompt)
1342 (let* ((default (symbol-under-or-before-point))
1345 (format "%s: (default: %s) " prompt default
)
1346 (format "%s: " prompt
)))
1347 (read (completing-read new-prompt cmpl-obarray
)))
1348 (if (zerop (length read
)) (setq read
(or default
"")))
1351 (defun check-completion-length (string)
1352 (if (< (length string
) completion-min-length
)
1353 (error "The string `%s' is too short to be saved as a completion"
1357 (defun add-completion (string &optional num-uses last-use-time
)
1358 "Add STRING to completion list, or move it to head of list.
1359 The completion is altered appropriately if num-uses and/or last-use-time is
1361 (interactive (interactive-completion-string-reader "Completion to add"))
1362 (check-completion-length string
)
1363 (let* ((current-completion-source (if (interactive-p)
1364 cmpl-source-interactive
1365 current-completion-source
))
1366 (entry (add-completion-to-head string
)))
1368 (if num-uses
(set-completion-num-uses entry num-uses
))
1370 (set-completion-last-use-time entry last-use-time
))))
1372 (defun add-permanent-completion (string)
1373 "Add STRING if it isn't already listed, and mark it permanent."
1375 (interactive-completion-string-reader "Completion to add permanently"))
1376 (let ((current-completion-source (if (interactive-p)
1377 cmpl-source-interactive
1378 current-completion-source
)))
1379 (add-completion string nil t
)))
1381 (defun kill-completion (string)
1382 (interactive (interactive-completion-string-reader "Completion to kill"))
1383 (check-completion-length string
)
1384 (delete-completion string
))
1386 (defun accept-completion ()
1387 "Accepts the pending completion in `completion-to-accept'.
1388 This bumps num-uses. Called by `add-completion-to-head' and
1389 `completion-search-reset'."
1390 (let ((string completion-to-accept
)
1391 ;; if this is added afresh here, then it must be a cdabbrev
1392 (current-completion-source cmpl-source-cdabbrev
)
1394 (setq completion-to-accept nil
)
1395 (setq entry
(add-completion-to-head string
))
1396 (set-completion-num-uses entry
(1+ (completion-num-uses entry
)))
1397 (setq cmpl-completions-accepted-p t
)))
1399 (defun use-completion-under-point ()
1400 "Add the completion symbol underneath the point into the completion buffer."
1401 (let ((string (and enable-completion
(symbol-under-point)))
1402 (current-completion-source cmpl-source-cursor-moves
))
1403 (if string
(add-completion-to-head string
))))
1405 (defun use-completion-before-point ()
1406 "Add the completion symbol before point into the completion buffer."
1407 (let ((string (and enable-completion
(symbol-before-point)))
1408 (current-completion-source cmpl-source-cursor-moves
))
1409 (if string
(add-completion-to-head string
))))
1411 (defun use-completion-under-or-before-point ()
1412 "Add the completion symbol before point into the completion buffer."
1413 (let ((string (and enable-completion
(symbol-under-or-before-point)))
1414 (current-completion-source cmpl-source-cursor-moves
))
1415 (if string
(add-completion-to-head string
))))
1417 (defun use-completion-before-separator ()
1418 "Add the completion symbol before point into the completion buffer.
1419 Completions added this way will automatically be saved if
1420 `completion-on-separator-character' is non-nil."
1421 (let ((string (and enable-completion
(symbol-before-point)))
1422 (current-completion-source cmpl-source-separator
)
1424 (cmpl-statistics-block
1425 (note-separator-character string
))
1427 (setq entry
(add-completion-to-head string
))
1428 (if (and completion-on-separator-character
1429 (zerop (completion-num-uses entry
)))
1431 (set-completion-num-uses entry
1)
1432 (setq cmpl-completions-accepted-p t
)))))))
1436 ;; (add-completion "banana" 5 10)
1437 ;; (find-exact-completion "banana") --> ("banana" 5 10 0)
1438 ;; (add-completion "banana" 6)
1439 ;; (find-exact-completion "banana") --> ("banana" 6 10 0)
1440 ;; (add-completion "banish")
1441 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banish" ...) ("banana" ...))
1444 ;; (setq completion-to-accept "banana")
1445 ;; (accept-completion)
1446 ;; (find-exact-completion "banana") --> ("banana" 7 10)
1447 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...) ("banish" ...))
1448 ;; (setq completion-to-accept "banish")
1449 ;; (add-completion "banner")
1450 ;; (car (find-cmpl-prefix-entry "ban"))
1451 ;; --> (("banner" ...) ("banish" 1 ...) ("banana" 7 ...))
1454 ;; (kill-completion "banish")
1455 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banner" ...) ("banana" ...))
1458 ;;---------------------------------------------------------------------------
1459 ;; Searching the database
1460 ;;---------------------------------------------------------------------------
1461 ;; Functions outside this block must call completion-search-reset followed
1462 ;; by calls to completion-search-next or completion-search-peek
1466 ;; Commented out to improve loading speed
1467 (defvar cmpl-test-string
"")
1468 ;; "The current string used by completion-search-next."
1469 (defvar cmpl-test-regexp
"")
1470 ;; "The current regexp used by completion-search-next.
1471 ;; (derived from cmpl-test-string)"
1472 (defvar cmpl-last-index
0)
1473 ;; "The last index that completion-search-next was called with."
1474 (defvar cmpl-cdabbrev-reset-p nil
)
1475 ;; "Set to t when cdabbrevs have been reset."
1476 (defvar cmpl-next-possibilities nil
)
1477 ;; "A pointer to the element BEFORE the next set of possible completions.
1478 ;; cadr of this is the cmpl-next-possibility"
1479 (defvar cmpl-starting-possibilities nil
)
1480 ;; "The initial list of starting possibilities."
1481 (defvar cmpl-next-possibility nil
)
1482 ;; "The cached next possibility."
1483 (defvar cmpl-tried-list nil
)
1484 ;; "A downcased list of all the completions we have tried."
1487 (defun completion-search-reset (string)
1488 "Set up the for completion searching for STRING.
1489 STRING must be longer than `completion-prefix-min-length'."
1490 (if completion-to-accept
(accept-completion))
1491 (setq cmpl-starting-possibilities
1492 (cmpl-prefix-entry-head
1493 (find-cmpl-prefix-entry
1494 (downcase (substring string
0 completion-prefix-min-length
))))
1495 cmpl-test-string string
1496 cmpl-test-regexp
(concat (regexp-quote string
) "."))
1497 (completion-search-reset-1))
1499 (defun completion-search-reset-1 ()
1500 (setq cmpl-next-possibilities cmpl-starting-possibilities
1501 cmpl-next-possibility nil
1502 cmpl-cdabbrev-reset-p nil
1504 cmpl-tried-list nil
))
1506 (defun completion-search-next (index)
1507 "Return the next completion entry.
1508 If INDEX is out of sequence, reset and start from the top.
1509 If there are no more entries, try cdabbrev and returns only a string."
1511 ((= index
(setq cmpl-last-index
(1+ cmpl-last-index
)))
1512 (completion-search-peek t
))
1514 (completion-search-reset-1)
1515 (setq cmpl-last-index index
)
1516 ;; reverse the possibilities list
1517 (setq cmpl-next-possibilities
(reverse cmpl-starting-possibilities
))
1518 ;; do a "normal" search
1519 (while (and (completion-search-peek nil
)
1520 (< (setq index
(1+ index
)) 0))
1521 (setq cmpl-next-possibility nil
))
1522 (cond ((not cmpl-next-possibilities
))
1523 ;; If no more possibilities, leave it that way
1524 ((= -
1 cmpl-last-index
)
1525 ;; next completion is at index 0. reset next-possibility list
1526 ;; to start at beginning
1527 (setq cmpl-next-possibilities cmpl-starting-possibilities
))
1529 ;; otherwise point to one before current
1530 (setq cmpl-next-possibilities
1531 (nthcdr (- (length cmpl-starting-possibilities
)
1532 (length cmpl-next-possibilities
))
1533 cmpl-starting-possibilities
)))))
1535 ;; non-negative index, reset and search
1537 (completion-search-reset-1)
1538 (setq cmpl-last-index index
)
1539 (while (and (completion-search-peek t
)
1540 (not (< (setq index
(1- index
)) 0)))
1541 (setq cmpl-next-possibility nil
))))
1543 cmpl-next-possibility
1544 (setq cmpl-next-possibility nil
)))
1547 (defun completion-search-peek (use-cdabbrev)
1548 "Return the next completion entry without actually moving the pointers.
1549 Calling this again or calling `completion-search-next' results in the same
1550 string being returned. Depends on `case-fold-search'.
1551 If there are no more entries, try cdabbrev and then return only a string."
1553 ;; return the cached value if we have it
1554 (cmpl-next-possibility)
1555 ((and cmpl-next-possibilities
1556 ;; still a few possibilities left
1559 (and (not (eq 0 (string-match cmpl-test-regexp
1560 (completion-string (car cmpl-next-possibilities
)))))
1561 (setq cmpl-next-possibilities
(cdr cmpl-next-possibilities
))))
1562 cmpl-next-possibilities
))
1564 (setq cmpl-next-possibility
(car cmpl-next-possibilities
)
1565 cmpl-tried-list
(cons (downcase (completion-string cmpl-next-possibility
))
1567 cmpl-next-possibilities
(cdr cmpl-next-possibilities
))
1568 cmpl-next-possibility
)
1570 ;; unsuccessful, use cdabbrev
1571 (cond ((not cmpl-cdabbrev-reset-p
)
1572 (reset-cdabbrev cmpl-test-string cmpl-tried-list
)
1573 (setq cmpl-cdabbrev-reset-p t
)))
1574 (setq cmpl-next-possibility
(next-cdabbrev)))
1575 ;; Completely unsuccessful, return nil
1580 ;; (add-completion "banana")
1581 ;; (completion-search-reset "ban")
1582 ;; (completion-search-next 0) --> "banana"
1584 ;; - Discrimination -
1585 ;; (add-completion "cumberland")
1586 ;; (add-completion "cumberbund")
1588 ;; (completion-search-reset "cumb")
1589 ;; (completion-search-peek t) --> "cumberbund"
1590 ;; (completion-search-next 0) --> "cumberbund"
1591 ;; (completion-search-peek t) --> "cumberland"
1592 ;; (completion-search-next 1) --> "cumberland"
1593 ;; (completion-search-peek nil) --> nil
1594 ;; (completion-search-next 2) --> "cumbering" {cdabbrev}
1595 ;; (completion-search-next 3) --> nil or "cumming"{depends on context}
1596 ;; (completion-search-next 1) --> "cumberland"
1597 ;; (completion-search-peek t) --> "cumbering" {cdabbrev}
1600 ;; (completion-search-next 1) --> "cumberland"
1601 ;; (setq completion-to-accept "cumberland")
1602 ;; (completion-search-reset "foo")
1603 ;; (completion-search-reset "cum")
1604 ;; (completion-search-next 0) --> "cumberland"
1607 ;; (kill-completion "cumberland")
1609 ;; (completion-search-reset "cum")
1610 ;; (completion-search-next 0) --> "cumberbund"
1611 ;; (completion-search-next 1) --> "cummings"
1613 ;; - Ignoring Capitalization -
1614 ;; (completion-search-reset "CuMb")
1615 ;; (completion-search-next 0) --> "cumberbund"
1619 ;;-----------------------------------------------
1621 ;;-----------------------------------------------
1623 (defun completion-mode ()
1624 "Toggle whether or not to add new words to the completion database."
1626 (setq enable-completion
(not enable-completion
))
1627 (message "Completion mode is now %s." (if enable-completion
"ON" "OFF")))
1629 (defvar cmpl-current-index
0)
1630 (defvar cmpl-original-string nil
)
1631 (defvar cmpl-last-insert-location -
1)
1632 (defvar cmpl-leave-point-at-start nil
)
1634 (defun complete (&optional arg
)
1635 "Fill out a completion of the word before point.
1636 Point is left at end. Consecutive calls rotate through all possibilities.
1638 control-u :: leave the point at the beginning of the completion rather
1640 a number :: rotate through the possible completions by that amount
1641 `-' :: same as -1 (insert previous completion)
1642 {See the comments at the top of `completion.el' for more info.}"
1644 ;;; Set up variables
1645 (cond ((eq last-command this-command
)
1647 (delete-region cmpl-last-insert-location
(point))
1648 ;; get next completion
1649 (setq cmpl-current-index
(+ cmpl-current-index
(or arg
1))))
1651 (if (not cmpl-initialized-p
)
1652 (initialize-completions)) ;; make sure everything's loaded
1653 (cond ((consp current-prefix-arg
) ;; control-u
1655 (setq cmpl-leave-point-at-start t
))
1657 (setq cmpl-leave-point-at-start nil
)))
1659 (setq cmpl-original-string
(symbol-before-point-for-complete))
1660 (cond ((not cmpl-original-string
)
1661 (setq this-command
'failed-complete
)
1662 (error "To complete, point must be after a symbol at least %d character long"
1663 completion-prefix-min-length
)))
1665 (setq cmpl-current-index
(if current-prefix-arg arg
0))
1667 (cmpl-statistics-block
1668 (note-complete-entered-afresh cmpl-original-string
))
1670 (completion-search-reset cmpl-original-string
)
1671 ;; erase what we've got
1672 (delete-region cmpl-symbol-start cmpl-symbol-end
)))
1674 ;; point is at the point to insert the new symbol
1675 ;; Get the next completion
1676 (let* ((print-status-p
1677 (and (>= baud-rate completion-prompt-speed-threshold
)
1678 (not (window-minibuffer-p (selected-window)))))
1679 (insert-point (point))
1680 (entry (completion-search-next cmpl-current-index
))
1682 ;; entry is either a completion entry or a string (if cdabbrev)
1686 ;; Setup for proper case
1687 (setq string
(if (stringp entry
)
1688 entry
(completion-string entry
)))
1689 (setq string
(cmpl-merge-string-cases
1690 string cmpl-original-string
))
1694 (setq completion-to-accept string
)
1695 ;; fixup and cache point
1696 (cond (cmpl-leave-point-at-start
1697 (setq cmpl-last-insert-location
(point))
1698 (goto-char insert-point
))
1700 (setq cmpl-last-insert-location insert-point
)))
1702 (cmpl-statistics-block
1703 (note-complete-inserted entry cmpl-current-index
))
1704 ;; Done ! cmpl-stat-complete-successful
1705 ;;display the next completion
1707 ((and print-status-p
1708 ;; This updates the display and only prints if there
1712 (completion-search-peek
1713 completion-cdabbrev-prompt-flag
)))
1714 (setq string
(if (stringp entry
)
1715 entry
(completion-string entry
)))
1716 (setq string
(cmpl-merge-string-cases
1717 string cmpl-original-string
))
1718 (message "Next completion: %s" string
))))
1719 (t;; none found, insert old
1720 (insert cmpl-original-string
)
1721 ;; Don't accept completions
1722 (setq completion-to-accept nil
)
1724 ;; This used to call cmpl19-sit-for, an undefined function.
1725 ;; I hope that sit-for does the right thing; I don't know -- rms.
1726 (if (and print-status-p
(sit-for 0))
1727 (message "No %scompletions."
1728 (if (eq this-command last-command
) "more " "")))
1730 (cmpl-statistics-block
1731 (record-complete-failed cmpl-current-index
))
1732 ;; Pretend that we were never here
1733 (setq this-command
'failed-complete
)))))
1735 ;;---------------------------------------------------------------------------
1736 ;; Parsing definitions from files into the database
1737 ;;---------------------------------------------------------------------------
1739 ;;-----------------------------------------------
1740 ;; Top Level functions ::
1741 ;;-----------------------------------------------
1744 (defun add-completions-from-file (file)
1745 "Parse possible completions from a FILE and add them to data base."
1746 (interactive "fFile: ")
1747 (setq file
(expand-file-name file
))
1748 (let* ((buffer (get-file-buffer file
))
1749 (buffer-already-there-p buffer
))
1750 (if (not buffer-already-there-p
)
1751 (let ((completions-merging-modes nil
))
1752 (setq buffer
(find-file-noselect file
))))
1756 (add-completions-from-buffer))
1757 (if (not buffer-already-there-p
)
1758 (kill-buffer buffer
)))))
1760 (defun add-completions-from-buffer ()
1762 (let ((current-completion-source cmpl-source-file-parsing
)
1764 (cmpl-statistics-block
1765 (aref completion-add-count-vector cmpl-source-file-parsing
)))
1767 (cond ((memq major-mode
'(emacs-lisp-mode lisp-mode
))
1768 (add-completions-from-lisp-buffer)
1770 ((memq major-mode
'(c-mode))
1771 (add-completions-from-c-buffer)
1774 (error "Cannot parse completions in %s buffers"
1776 (cmpl-statistics-block
1777 (record-cmpl-parse-file
1779 (- (aref completion-add-count-vector cmpl-source-file-parsing
)
1783 (defun cmpl-find-file-hook ()
1784 (cond (enable-completion
1785 (cond ((and (memq major-mode
'(emacs-lisp-mode lisp-mode
))
1786 (memq 'lisp completions-merging-modes
))
1787 (add-completions-from-buffer))
1788 ((and (memq major-mode
'(c-mode))
1789 (memq 'c completions-merging-modes
))
1790 (add-completions-from-buffer))))))
1792 ;;-----------------------------------------------
1793 ;; Tags Table Completions
1794 ;;-----------------------------------------------
1796 (defun add-completions-from-tags-table ()
1797 ;; Inspired by eero@media-lab.media.mit.edu
1798 "Add completions from the current tags table."
1800 (visit-tags-table-buffer) ;this will prompt if no tags-table
1802 (goto-char (point-min))
1806 (search-forward "\177")
1808 (and (setq string
(symbol-under-point))
1809 (add-completion-to-tail-if-new string
))
1814 ;;-----------------------------------------------
1815 ;; Lisp File completion parsing
1816 ;;-----------------------------------------------
1817 ;; This merely looks for phrases beginning with (def.... or
1818 ;; (package:def ... and takes the next word.
1820 ;; We tried using forward-lines and explicit searches but the regexp technique
1821 ;; was faster. (About 100K characters per second)
1823 (defconst *lisp-def-regexp
*
1824 "\n(\\(\\w*:\\)?def\\(\\w\\|\\s_\\)*\\s +(*"
1825 "A regexp that searches for Lisp definition form.")
1828 ;; (and (string-match *lisp-def-regexp* "\n(defun foo") (match-end 0)) -> 8
1829 ;; (and (string-match *lisp-def-regexp* "\n(si:def foo") (match-end 0)) -> 9
1830 ;; (and (string-match *lisp-def-regexp* "\n(def-bar foo")(match-end 0)) -> 10
1831 ;; (and (string-match *lisp-def-regexp* "\n(defun (foo") (match-end 0)) -> 9
1833 ;; Parses all the definition names from a Lisp mode buffer and adds them to
1834 ;; the completion database.
1835 (defun add-completions-from-lisp-buffer ()
1837 ;;; Sun-3/280 - 1500 to 3000 lines of lisp code per second
1840 (goto-char (point-min))
1843 (re-search-forward *lisp-def-regexp
*)
1844 (and (setq string
(symbol-under-point))
1845 (add-completion-to-tail-if-new string
)))
1849 ;;-----------------------------------------------
1850 ;; C file completion parsing
1851 ;;-----------------------------------------------
1853 ;; Looks for #define or [<storage class>] [<type>] <name>{,<name>}
1854 ;; or structure, array or pointer defs.
1855 ;; It gets most of the definition names.
1857 ;; As you might suspect by now, we use some symbol table hackery
1859 ;; Symbol separator chars (have whitespace syntax) --> , ; * = (
1860 ;; Opening char --> [ {
1861 ;; Closing char --> ] }
1862 ;; opening and closing must be skipped over
1863 ;; Whitespace chars (have symbol syntax)
1864 ;; Everything else has word syntax
1866 (defun cmpl-make-c-def-completion-syntax-table ()
1867 (let ((table (make-syntax-table))
1868 (whitespace-chars '(? ?
\n ?
\t ?
\f ?
\v ?
\r))
1869 ;; unfortunately the ?( causes the parens to appear unbalanced
1870 (separator-chars '(?
, ?
* ?
= ?\
( ?\
;))
1872 ;; default syntax is whitespace
1875 (modify-syntax-entry i
"w" table
)
1877 (dolist (char whitespace-chars
)
1878 (modify-syntax-entry char
"_" table
))
1879 (dolist (char separator-chars
)
1880 (modify-syntax-entry char
" " table
))
1881 (modify-syntax-entry ?\
[ "(]" table
)
1882 (modify-syntax-entry ?\
{ "(}" table
)
1883 (modify-syntax-entry ?\
] ")[" table
)
1884 (modify-syntax-entry ?\
} "){" table
)
1887 (defconst cmpl-c-def-syntax-table
(cmpl-make-c-def-completion-syntax-table))
1890 (defconst *c-def-regexp
*
1891 ;; This stops on lines with possible definitions
1893 ;; This stops after the symbol to add.
1894 ;;"\n\\(#define\\s +.\\|\\(\\(\\w\\|\\s_\\)+\\b\\s *\\)+[(;,[*{=]\\)"
1895 ;; This stops before the symbol to add. {Test cases in parens. below}
1896 ;;"\n\\(\\(\\w\\|\\s_\\)+\\s *(\\|\\(\\(#define\\|auto\\|extern\\|register\\|static\\|int\\|long\\|short\\|unsigned\\|char\\|void\\|float\\|double\\|enum\\|struct\\|union\\|typedef\\)\\s +\\)+\\)"
1897 ;; this simple version picks up too much extraneous stuff
1898 ;; "\n\\(\\w\\|\\s_\\|#\\)\\B"
1899 "A regexp that searches for a definition form.")
1901 ;(defconst *c-cont-regexp*
1902 ; "\\(\\w\\|\\s_\\)+\\b\\s *\\({\\|\\(\\[[0-9\t ]*\\]\\s *\\)*,\\(*\\|\\s \\)*\\b\\)"
1903 ; "This regexp should be used in a looking-at to parse for lists of variables.")
1905 ;(defconst *c-struct-regexp*
1906 ; "\\(*\\|\\s \\)*\\b"
1907 ; "This regexp should be used to test whether a symbol follows a structure definition.")
1909 ;(defun test-c-def-regexp (regexp string)
1910 ; (and (eq 0 (string-match regexp string)) (match-end 0))
1914 ;; (test-c-def-regexp *c-def-regexp* "\n#define foo") -> 10 (9)
1915 ;; (test-c-def-regexp *c-def-regexp* "\nfoo (x, y) {") -> 6 (6)
1916 ;; (test-c-def-regexp *c-def-regexp* "\nint foo (x, y)") -> 10 (5)
1917 ;; (test-c-def-regexp *c-def-regexp* "\n int foo (x, y)") -> nil
1918 ;; (test-c-def-regexp *c-cont-regexp* "oo, bar") -> 4
1919 ;; (test-c-def-regexp *c-cont-regexp* "oo, *bar") -> 5
1920 ;; (test-c-def-regexp *c-cont-regexp* "a [5][6], bar") -> 10
1921 ;; (test-c-def-regexp *c-cont-regexp* "oo(x,y)") -> nil
1922 ;; (test-c-def-regexp *c-cont-regexp* "a [6] ,\t bar") -> 9
1923 ;; (test-c-def-regexp *c-cont-regexp* "oo {trout =1} my_carp;") -> 14
1924 ;; (test-c-def-regexp *c-cont-regexp* "truct_p complex foon") -> nil
1926 ;; Parses all the definition names from a C mode buffer and adds them to the
1927 ;; completion database.
1928 (defun add-completions-from-c-buffer ()
1930 ;; Sun 3/280-- 1250 lines/sec.
1932 (let (string next-point char
1933 (saved-syntax (syntax-table)))
1935 (goto-char (point-min))
1936 (catch 'finish-add-completions
1939 ;; we loop here only when scan-sexps fails
1940 ;; (i.e. unbalance exps.)
1941 (set-syntax-table cmpl-c-def-syntax-table
)
1944 (re-search-forward *c-def-regexp
*)
1946 ((= (preceding-char) ?
#)
1947 ;; preprocessor macro, see if it's one we handle
1948 (setq string
(buffer-substring (point) (+ (point) 6)))
1949 (cond ((or (string-equal string
"define")
1950 (string-equal string
"ifdef "))
1951 ;; skip forward over definition symbol
1952 ;; and add it to database
1953 (and (forward-word 2)
1954 (setq string
(symbol-before-point))
1956 (add-completion-to-tail-if-new string
)))))
1959 (setq next-point
(point))
1962 ;; scan to next separator char.
1963 (setq next-point
(scan-sexps next-point
1)))
1964 ;; position the point on the word we want to add
1965 (goto-char next-point
)
1966 (while (= (setq char
(following-char)) ?
*)
1967 ;; handle pointer ref
1968 ;; move to next separator char.
1970 (setq next-point
(scan-sexps (point) 1))))
1973 (if (setq string
(symbol-under-point))
1974 ;; (push string foo)
1975 (add-completion-to-tail-if-new string
)
1976 ;; Local TMC hack (useful for parsing paris.h)
1977 (if (and (looking-at "_AP") ;; "ansi prototype"
1981 (symbol-under-point))))
1982 (add-completion-to-tail-if-new string
)))
1984 (goto-char next-point
)
1985 ;; (push (format "%c" (following-char)) foo)
1986 (if (= (char-syntax char
) ?\
()
1987 ;; if on an opening delimiter, go to end
1988 (while (= (char-syntax char
) ?\
()
1989 (setq next-point
(scan-sexps next-point
1)
1990 char
(char-after next-point
)))
1992 ;; Current char is an end char.
1993 (setq next-point nil
)))))))
1994 (search-failed ;;done
1995 (throw 'finish-add-completions t
))
1997 ;; Check for failure in scan-sexps
1998 (if (or (string-equal (nth 1 e
)
1999 "Containing expression ends prematurely")
2000 (string-equal (nth 1 e
) "Unbalanced parentheses"))
2001 ;; unbalanced paren., keep going
2004 (message "Error parsing C buffer for completions--please send bug report")
2005 (throw 'finish-add-completions t
)))))
2006 (set-syntax-table saved-syntax
))))))
2009 ;;---------------------------------------------------------------------------
2011 ;;---------------------------------------------------------------------------
2013 ;; The version of save-completions-to-file called at kill-emacs time.
2014 (defun kill-emacs-save-completions ()
2015 (if (and save-completions-flag enable-completion cmpl-initialized-p
)
2017 ((not cmpl-completions-accepted-p
)
2018 (message "Completions database has not changed - not writing."))
2020 (save-completions-to-file)))))
2022 ;; There is no point bothering to change this again
2023 ;; unless the package changes so much that it matters
2024 ;; for people that have saved completions.
2025 (defconst completion-version
"11")
2027 (defconst saved-cmpl-file-header
2028 ";;; Completion Initialization file.
2030 ;; Format is (<string> . <last-use-time>)
2031 ;; <string> is the completion
2032 ;; <last-use-time> is the time the completion was last used
2033 ;; If it is t, the completion will never be pruned from the file.
2034 ;; Otherwise it is in hours since origin.
2037 (defun completion-backup-filename (filename)
2038 (concat filename
".BAK"))
2040 (defun save-completions-to-file (&optional filename
)
2041 "Save completions in init file FILENAME.
2042 If file name is not specified, use `save-completions-file-name'."
2044 (setq filename
(expand-file-name (or filename save-completions-file-name
)))
2045 (if (file-writable-p filename
)
2047 (if (not cmpl-initialized-p
)
2048 (initialize-completions));; make sure everything's loaded
2049 (message "Saving completions to file %s" filename
)
2051 (let* ((delete-old-versions t
)
2052 (kept-old-versions 0)
2053 (kept-new-versions completions-file-versions-kept
)
2055 (current-time (cmpl-hours-since-origin))
2059 (backup-filename (completion-backup-filename filename
)))
2062 (get-buffer-create " *completion-save-buffer*")
2063 (set-buffer " *completion-save-buffer*")
2064 (setq buffer-file-name filename
)
2066 (if (not (verify-visited-file-modtime (current-buffer)))
2068 ;; file has changed on disk. Bring us up-to-date
2069 (message "Completion file has changed. Merging. . .")
2070 (load-completions-from-file filename t
)
2071 (message "Merging finished. Saving completions to file %s" filename
)))
2073 ;; prepare the buffer to be modified
2074 (clear-visited-file-modtime)
2077 (insert (format saved-cmpl-file-header completion-version
))
2078 (dolist (completion (list-all-completions))
2079 (setq total-in-db
(1+ total-in-db
))
2080 (setq last-use-time
(completion-last-use-time completion
))
2081 ;; Update num uses and maybe write completion to a file
2082 (cond ((or;; Write to file if
2084 (and (eq last-use-time t
)
2085 (setq total-perm
(1+ total-perm
)))
2087 (if (> (completion-num-uses completion
) 0)
2089 (setq last-use-time current-time
)
2090 ;; or it was saved before and
2092 ;; save-completions-retention-time is nil
2093 (or (not save-completions-retention-time
)
2094 ;; or time since last use is < ...retention-time*
2095 (< (- current-time last-use-time
)
2096 save-completions-retention-time
)))))
2098 (setq total-saved
(1+ total-saved
))
2099 (insert (prin1-to-string (cons (completion-string completion
)
2100 last-use-time
)) "\n"))))
2104 (let ((file-exists-p (file-exists-p filename
)))
2107 ;; If file exists . . .
2108 ;; Save a backup(so GNU doesn't screw us when we're out of disk)
2109 ;; (GNU leaves a 0 length file if it gets a disk full error!)
2111 ;; If backup doesn't exit, Rename current to backup
2112 ;; {If backup exists the primary file is probably messed up}
2113 (or (file-exists-p backup-filename
)
2114 (rename-file filename backup-filename
))
2115 ;; Copy the backup back to the current name
2116 ;; (so versioning works)
2117 (copy-file backup-filename filename t
)))
2121 ;; If successful, remove backup
2122 (delete-file backup-filename
)))
2124 (set-buffer-modified-p nil
)
2125 (message "Couldn't save completion file `%s'" filename
)))
2126 ;; Reset accepted-p flag
2127 (setq cmpl-completions-accepted-p nil
) )
2128 (cmpl-statistics-block
2129 (record-save-completions total-in-db total-perm total-saved
))))))
2131 ;;(defun auto-save-completions ()
2132 ;; (if (and save-completions-flag enable-completion cmpl-initialized-p
2133 ;; *completion-auto-save-period*
2134 ;; (> cmpl-emacs-idle-time *completion-auto-save-period*)
2135 ;; cmpl-completions-accepted-p)
2136 ;; (save-completions-to-file)))
2138 ;;(add-hook 'cmpl-emacs-idle-time-hooks 'auto-save-completions)
2140 (defun load-completions-from-file (&optional filename no-message-p
)
2141 "Load a completion init file FILENAME.
2142 If file is not specified, then use `save-completions-file-name'."
2144 (setq filename
(expand-file-name (or filename save-completions-file-name
)))
2145 (let* ((backup-filename (completion-backup-filename filename
))
2146 (backup-readable-p (file-readable-p backup-filename
)))
2147 (if backup-readable-p
(setq filename backup-filename
))
2148 (if (file-readable-p filename
)
2150 (if (not no-message-p
)
2151 (message "Loading completions from %sfile %s . . ."
2152 (if backup-readable-p
"backup " "") filename
))
2154 (get-buffer-create " *completion-save-buffer*")
2155 (set-buffer " *completion-save-buffer*")
2156 (setq buffer-file-name filename
)
2157 ;; prepare the buffer to be modified
2158 (clear-visited-file-modtime)
2161 (let ((insert-okay-p nil
)
2162 (buffer (current-buffer))
2163 (current-time (cmpl-hours-since-origin))
2164 string num-uses entry last-use-time
2165 cmpl-entry cmpl-last-use-time
2166 (current-completion-source cmpl-source-init-file
)
2168 (cmpl-statistics-block
2169 (aref completion-add-count-vector cmpl-source-file-parsing
)))
2170 (total-in-file 0) (total-perm 0))
2171 ;; insert the file into a buffer
2173 (progn (insert-file-contents filename t
)
2174 (setq insert-okay-p t
))
2177 (message "File error trying to load completion file %s."
2182 (goto-char (point-min))
2186 (setq entry
(read buffer
))
2187 (setq total-in-file
(1+ total-in-file
))
2190 (stringp (setq string
(car entry
)))
2192 ((eq (setq last-use-time
(cdr entry
)) 'T
)
2193 ;; handle case sensitivity
2194 (setq total-perm
(1+ total-perm
))
2195 (setq last-use-time t
))
2196 ((eq last-use-time t
)
2197 (setq total-perm
(1+ total-perm
)))
2198 ((integerp last-use-time
))))
2201 (setq cmpl-last-use-time
2202 (completion-last-use-time
2204 (add-completion-to-tail-if-new string
))))
2205 (if (or (eq last-use-time t
)
2206 (and (> last-use-time
1000);;backcompatibility
2207 (not (eq cmpl-last-use-time t
))
2208 (or (not cmpl-last-use-time
)
2210 (> last-use-time cmpl-last-use-time
))))
2211 ;; update last-use-time
2212 (set-completion-last-use-time cmpl-entry last-use-time
)))
2215 (message "Error: invalid saved completion - %s"
2216 (prin1-to-string entry
))
2217 ;; try to get back in sync
2218 (search-forward "\n("))))
2220 (message "End of file while reading completions."))
2222 (if (= (point) (point-max))
2223 (if (not no-message-p
)
2224 (message "Loading completions from file %s . . . Done."
2226 (message "End of file while reading completions."))))))
2228 (cmpl-statistics-block
2229 (record-load-completions
2230 total-in-file total-perm
2231 (- (aref completion-add-count-vector cmpl-source-init-file
)
2235 (defun initialize-completions ()
2236 "Load the default completions file.
2237 Also sets up so that exiting Emacs will automatically save the file."
2239 (cond ((not cmpl-initialized-p
)
2240 (load-completions-from-file)))
2241 (setq cmpl-initialized-p t
))
2243 ;;-----------------------------------------------
2244 ;; Kill region patch
2245 ;;-----------------------------------------------
2247 (defun completion-kill-region (&optional beg end
)
2248 "Kill between point and mark.
2249 The text is deleted but saved in the kill ring.
2250 The command \\[yank] can retrieve it from there.
2251 /(If you want to kill and then yank immediately, use \\[copy-region-as-kill].)
2253 This is the primitive for programs to kill text (as opposed to deleting it).
2254 Supply two arguments, character positions indicating the stretch of text
2256 Any command that calls this function is a \"kill command\".
2257 If the previous command was also a kill command,
2258 the text killed this time appends to the text killed last time
2259 to make one entry in the kill ring.
2260 Patched to remove the most recent completion."
2262 (cond ((eq last-command
'complete
)
2263 (delete-region (point) cmpl-last-insert-location
)
2264 (insert cmpl-original-string
)
2265 (setq completion-to-accept nil
)
2266 (cmpl-statistics-block
2267 (record-complete-failed)))
2269 (kill-region beg end
))))
2272 ;;-----------------------------------------------
2273 ;; Patches to self-insert-command.
2274 ;;-----------------------------------------------
2276 ;; Need 2 versions: generic separator chars. and space (to get auto fill
2279 ;; All common separators (eg. space "(" ")" """) characters go through a
2280 ;; function to add new words to the list of words to complete from:
2281 ;; COMPLETION-SEPARATOR-SELF-INSERT-COMMAND (arg).
2282 ;; If the character before this was an alpha-numeric then this adds the
2283 ;; symbol before point to the completion list (using ADD-COMPLETION).
2285 (defun completion-separator-self-insert-command (arg)
2287 (use-completion-before-separator)
2288 (self-insert-command arg
))
2290 (defun completion-separator-self-insert-autofilling (arg)
2292 (use-completion-before-separator)
2293 (self-insert-command arg
)
2294 (and auto-fill-function
2295 (funcall auto-fill-function
)))
2297 ;;-----------------------------------------------
2299 ;;-----------------------------------------------
2301 ;; Note that because of the way byte compiling works, none of
2302 ;; the functions defined with this macro get byte compiled.
2304 (defmacro def-completion-wrapper
(function-name type
&optional new-name
)
2305 "Add a call to update the completion database before function execution.
2306 TYPE is the type of the wrapper to be added. Can be :before or :under."
2307 (cond ((eq type
:separator
)
2308 (list 'put
(list 'quote function-name
) ''completion-function
2309 ''use-completion-before-separator
))
2311 (list 'put
(list 'quote function-name
) ''completion-function
2312 ''use-completion-before-point
))
2313 ((eq type
:backward-under
)
2314 (list 'put
(list 'quote function-name
) ''completion-function
2315 ''use-completion-backward-under
))
2316 ((eq type
:backward
)
2317 (list 'put
(list 'quote function-name
) ''completion-function
2318 ''use-completion-backward
))
2320 (list 'put
(list 'quote function-name
) ''completion-function
2321 ''use-completion-under-point
))
2322 ((eq type
:under-or-before
)
2323 (list 'put
(list 'quote function-name
) ''completion-function
2324 ''use-completion-under-or-before-point
))
2325 ((eq type
:minibuffer-separator
)
2326 (list 'put
(list 'quote function-name
) ''completion-function
2327 ''use-completion-minibuffer-separator
))))
2329 (defun use-completion-minibuffer-separator ()
2330 (let ((cmpl-syntax-table cmpl-standard-syntax-table
))
2331 (use-completion-before-separator)))
2333 (defun use-completion-backward-under ()
2334 (use-completion-under-point)
2335 (if (eq last-command
'complete
)
2336 ;; probably a failed completion if you have to back up
2337 (cmpl-statistics-block (record-complete-failed))))
2339 (defun use-completion-backward ()
2340 (if (eq last-command
'complete
)
2341 ;; probably a failed completion if you have to back up
2342 (cmpl-statistics-block (record-complete-failed))))
2344 (defun completion-before-command ()
2345 (funcall (or (and (symbolp this-command
)
2346 (get this-command
'completion-function
))
2347 'use-completion-under-or-before-point
)))
2350 (defun completion-c-mode-hook ()
2351 (def-completion-wrapper electric-c-semi
:separator
)
2352 (define-key c-mode-map
"+" 'completion-separator-self-insert-command
)
2353 (define-key c-mode-map
"*" 'completion-separator-self-insert-command
)
2354 (define-key c-mode-map
"/" 'completion-separator-self-insert-command
))
2355 ;; Do this either now or whenever C mode is loaded.
2356 (if (featurep 'cc-mode
)
2357 (completion-c-mode-hook)
2358 (add-hook 'c-mode-hook
'completion-c-mode-hook
))
2360 ;; FORTRAN mode diffs. (these are defined when fortran is called)
2361 (defun completion-setup-fortran-mode ()
2362 (define-key fortran-mode-map
"+" 'completion-separator-self-insert-command
)
2363 (define-key fortran-mode-map
"-" 'completion-separator-self-insert-command
)
2364 (define-key fortran-mode-map
"*" 'completion-separator-self-insert-command
)
2365 (define-key fortran-mode-map
"/" 'completion-separator-self-insert-command
))
2367 ;;; Enable completion mode.
2370 (defun dynamic-completion-mode ()
2371 "Enable dynamic word-completion."
2373 (add-hook 'find-file-hook
'cmpl-find-file-hook
)
2374 (add-hook 'pre-command-hook
'completion-before-command
)
2376 ;; Install the appropriate mode tables.
2377 (add-hook 'lisp-mode-hook
2379 (setq cmpl-syntax-table cmpl-lisp-syntax-table
)))
2380 (add-hook 'c-mode-hook
2382 (setq cmpl-syntax-table cmpl-c-syntax-table
)))
2383 (add-hook 'fortran-mode-hook
2385 (setq cmpl-syntax-table cmpl-fortran-syntax-table
)
2386 (completion-setup-fortran-mode)))
2388 ;; "Complete" Key Keybindings.
2390 (global-set-key "\M-\r" 'complete
)
2391 (global-set-key [?\C-
\r] 'complete
)
2392 (define-key function-key-map
[C-return
] [?\C-
\r])
2395 ;; (add-completion "cumberland")
2396 ;; (add-completion "cumberbund")
2402 ;; Save completions when killing Emacs.
2404 (add-hook 'kill-emacs-hook
2406 (kill-emacs-save-completions)
2407 (cmpl-statistics-block
2408 (record-cmpl-kill-emacs))))
2410 ;; Patches to standard keymaps insert completions
2411 (substitute-key-definition 'kill-region
'completion-kill-region
2415 ;; We've used the completion syntax table given as a guide.
2417 ;; Global separator chars.
2418 ;; We left out <tab> because there are too many special cases for it. Also,
2419 ;; in normal coding it's rarely typed after a word.
2420 (global-set-key " " 'completion-separator-self-insert-autofilling
)
2421 (global-set-key "!" 'completion-separator-self-insert-command
)
2422 (global-set-key "%" 'completion-separator-self-insert-command
)
2423 (global-set-key "^" 'completion-separator-self-insert-command
)
2424 (global-set-key "&" 'completion-separator-self-insert-command
)
2425 (global-set-key "(" 'completion-separator-self-insert-command
)
2426 (global-set-key ")" 'completion-separator-self-insert-command
)
2427 (global-set-key "=" 'completion-separator-self-insert-command
)
2428 (global-set-key "`" 'completion-separator-self-insert-command
)
2429 (global-set-key "|" 'completion-separator-self-insert-command
)
2430 (global-set-key "{" 'completion-separator-self-insert-command
)
2431 (global-set-key "}" 'completion-separator-self-insert-command
)
2432 (global-set-key "[" 'completion-separator-self-insert-command
)
2433 (global-set-key "]" 'completion-separator-self-insert-command
)
2434 (global-set-key ";" 'completion-separator-self-insert-command
)
2435 (global-set-key "\"" 'completion-separator-self-insert-command
)
2436 (global-set-key "'" 'completion-separator-self-insert-command
)
2437 (global-set-key "#" 'completion-separator-self-insert-command
)
2438 (global-set-key "," 'completion-separator-self-insert-command
)
2439 (global-set-key "?" 'completion-separator-self-insert-command
)
2441 ;; We include period and colon even though they are symbol chars because :
2442 ;; - in text we want to pick up the last word in a sentence.
2443 ;; - in C pointer refs. we want to pick up the first symbol
2444 ;; - it won't make a difference for lisp mode (package names are short)
2445 (global-set-key "." 'completion-separator-self-insert-command
)
2446 (global-set-key ":" 'completion-separator-self-insert-command
)
2449 (define-key lisp-mode-map
"!" 'self-insert-command
)
2450 (define-key lisp-mode-map
"&" 'self-insert-command
)
2451 (define-key lisp-mode-map
"%" 'self-insert-command
)
2452 (define-key lisp-mode-map
"?" 'self-insert-command
)
2453 (define-key lisp-mode-map
"=" 'self-insert-command
)
2454 (define-key lisp-mode-map
"^" 'self-insert-command
)
2458 (defvar fortran-mode-map
)
2460 ;;-----------------------------------------------
2461 ;; End of line chars.
2462 ;;-----------------------------------------------
2463 (def-completion-wrapper newline
:separator
)
2464 (def-completion-wrapper newline-and-indent
:separator
)
2465 (def-completion-wrapper comint-send-input
:separator
)
2466 (def-completion-wrapper exit-minibuffer
:minibuffer-separator
)
2467 (def-completion-wrapper eval-print-last-sexp
:separator
)
2468 (def-completion-wrapper eval-last-sexp
:separator
)
2469 ;;(def-completion-wrapper minibuffer-complete-and-exit :minibuffer)
2471 ;;-----------------------------------------------
2473 ;;-----------------------------------------------
2475 (def-completion-wrapper next-line
:under-or-before
)
2476 (def-completion-wrapper previous-line
:under-or-before
)
2477 (def-completion-wrapper beginning-of-buffer
:under-or-before
)
2478 (def-completion-wrapper end-of-buffer
:under-or-before
)
2479 (def-completion-wrapper beginning-of-line
:under-or-before
)
2480 (def-completion-wrapper end-of-line
:under-or-before
)
2481 (def-completion-wrapper forward-char
:under-or-before
)
2482 (def-completion-wrapper forward-word
:under-or-before
)
2483 (def-completion-wrapper forward-sexp
:under-or-before
)
2484 (def-completion-wrapper backward-char
:backward-under
)
2485 (def-completion-wrapper backward-word
:backward-under
)
2486 (def-completion-wrapper backward-sexp
:backward-under
)
2488 (def-completion-wrapper delete-backward-char
:backward
)
2489 (def-completion-wrapper delete-backward-char-untabify
:backward
)
2497 (cmpl-statistics-block
2498 (record-completion-file-loaded))
2500 (initialize-completions))
2502 (mapc (lambda (x) (add-to-list 'debug-ignored-errors x
))
2503 '("^To complete, the point must be after a symbol at least [0-9]* character long\\.$"
2504 "^The string \".*\" is too short to be saved as a completion\\.$"))
2506 (provide 'completion
)
2508 ;;; arch-tag: 6990dafe-4abd-4a1f-8c42-ffb25e120f5e
2509 ;;; completion.el ends here