1 ;;; completion.el --- dynamic word-completion code
3 ;; Copyright (C) 1990, 1993, 1995, 1997 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 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 (defconst completion-min-length nil
;; defined below in eval-when
354 "*The minimum length of a stored completion.
355 DON'T CHANGE WITHOUT RECOMPILING ! This is used by macros.")
357 (defconst completion-max-length nil
;; defined below in eval-when
358 "*The maximum length of a stored completion.
359 DON'T CHANGE WITHOUT RECOMPILING ! This is used by macros.")
361 (defconst completion-prefix-min-length nil
;; defined below in eval-when
362 "The minimum length of a completion search string.
363 DON'T CHANGE WITHOUT RECOMPILING ! This is used by macros.")
365 (defmacro eval-when-compile-load-eval
(&rest body
)
366 ;; eval everything before expanding
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 ;;---------------------------------------------------------------------------
397 ;;---------------------------------------------------------------------------
399 ;;-----------------------------------------------
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)
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)))
427 (cond ((string-match "[A-Z]" string
)
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)))
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
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
465 ;; (cmpl-merge-string-cases "AbCdEf456" "abc") --> AbCdEf456
466 ;; (cmpl-merge-string-cases "abcdef456" "ABC") --> ABCDEF456
467 ;; (cmpl-merge-string-cases "ABCDEF456" "Abc") --> Abcdef456
468 ;; (cmpl-merge-string-cases "ABCDEF456" "abc") --> abcdef456
471 (defun cmpl-hours-since-origin ()
472 (let ((time (current-time)))
473 (floor (+ (* 65536.0 (nth 0 time
)) (nth 1 time
)) 3600)))
475 ;;---------------------------------------------------------------------------
476 ;; "Symbol" parsing functions
477 ;;---------------------------------------------------------------------------
478 ;; The functions symbol-before-point, symbol-under-point, etc. quickly return
479 ;; an appropriate symbol string. The strategy is to temporarily change
480 ;; the syntax table to enable fast symbol searching. There are three classes
481 ;; of syntax in these "symbol" syntax tables ::
483 ;; syntax (?_) - "symbol" chars (e.g. alphanumerics)
484 ;; syntax (?w) - symbol chars to ignore at end of words (e.g. period).
485 ;; syntax (? ) - everything else
487 ;; Thus by judicious use of scan-sexps and forward-word, we can get
488 ;; the word we want relatively fast and without consing.
490 ;; Why do we need a separate category for "symbol chars to ignore at ends" ?
491 ;; For example, in LISP we want starting :'s trimmed
492 ;; so keyword argument specifiers also define the keyword completion. And,
493 ;; for example, in C we want `.' appearing in a structure ref. to
494 ;; be kept intact in order to store the whole structure ref.; however, if
495 ;; it appears at the end of a symbol it should be discarded because it is
496 ;; probably used as a period.
498 ;; Here is the default completion syntax ::
499 ;; Symbol chars :: A-Z a-z 0-9 @ / \ * + ~ $ < > %
500 ;; Symbol chars to ignore at ends :: _ : . -
501 ;; Separator chars. :: <tab> <space> ! ^ & ( ) = ` | { } [ ] ; " ' #
502 ;; , ? <Everything else>
504 ;; Mode specific differences and notes ::
506 ;; Symbol chars :: ! & ? = ^
509 ;; Separator chars :: + * / : %
510 ;; A note on the hyphen (`-'). Perhaps the hyphen should also be a separator
511 ;; char., however, we wanted to have completion symbols include pointer
512 ;; references. For example, "foo->bar" is a symbol as far as completion is
516 ;; Separator chars :: + - * / :
520 ;; Of course there is no pathname "mode" and in fact we have not implemented
521 ;; this table. However, if there was such a mode, this is what it would look
524 ;;-----------------------------------------------
526 ;;-----------------------------------------------
528 (defun cmpl-make-standard-completion-syntax-table ()
529 (let ((table (make-syntax-table))
531 ;; Default syntax is whitespace.
534 (modify-syntax-entry i
" " table
)
539 (modify-syntax-entry (+ ?a i
) "_" table
)
540 (modify-syntax-entry (+ ?A i
) "_" table
)
545 (modify-syntax-entry (+ ?
0 i
) "_" table
)
548 (let ((symbol-chars '(?
@ ?
/ ?
\\ ?
* ?
+ ?~ ?$ ?
< ?
> ?%
))
549 (symbol-chars-ignore '(?_ ?- ?
: ?.
))
551 (dolist (char symbol-chars
)
552 (modify-syntax-entry char
"_" table
))
553 (dolist (char symbol-chars-ignore
)
554 (modify-syntax-entry char
"w" table
)
559 (defconst cmpl-standard-syntax-table
(cmpl-make-standard-completion-syntax-table))
561 (defun cmpl-make-lisp-completion-syntax-table ()
562 (let ((table (copy-syntax-table cmpl-standard-syntax-table
))
563 (symbol-chars '(?
! ?
& ?? ?
= ?^
))
565 (dolist (char symbol-chars
)
566 (modify-syntax-entry char
"_" table
))
569 (defun cmpl-make-c-completion-syntax-table ()
570 (let ((table (copy-syntax-table cmpl-standard-syntax-table
))
571 (separator-chars '(?
+ ?
* ?
/ ?
: ?%
))
573 (dolist (char separator-chars
)
574 (modify-syntax-entry char
" " table
))
577 (defun cmpl-make-fortran-completion-syntax-table ()
578 (let ((table (copy-syntax-table cmpl-standard-syntax-table
))
579 (separator-chars '(?
+ ?- ?
* ?
/ ?
:))
581 (dolist (char separator-chars
)
582 (modify-syntax-entry char
" " table
))
585 (defconst cmpl-lisp-syntax-table
(cmpl-make-lisp-completion-syntax-table))
586 (defconst cmpl-c-syntax-table
(cmpl-make-c-completion-syntax-table))
587 (defconst cmpl-fortran-syntax-table
(cmpl-make-fortran-completion-syntax-table))
589 (defvar cmpl-syntax-table cmpl-standard-syntax-table
590 "This variable holds the current completion syntax table.")
591 (make-variable-buffer-local 'cmpl-syntax-table
)
593 ;;-----------------------------------------------
595 ;;-----------------------------------------------
596 (defvar cmpl-symbol-start nil
597 "Holds first character of symbol, after any completion symbol function.")
598 (defvar cmpl-symbol-end nil
599 "Holds last character of symbol, after any completion symbol function.")
600 ;; These are temp. vars. we use to avoid using let.
601 ;; Why ? Small speed improvement.
602 (defvar cmpl-saved-syntax nil
)
603 (defvar cmpl-saved-point nil
)
605 (defun symbol-under-point ()
606 "Returns the symbol that the point is currently on.
607 But only if it is longer than `completion-min-length'."
608 (setq cmpl-saved-syntax
(syntax-table))
611 (set-syntax-table cmpl-syntax-table
)
613 ;; Cursor is on following-char and after preceding-char
614 ((memq (char-syntax (following-char)) '(?w ?_
))
615 (setq cmpl-saved-point
(point)
616 cmpl-symbol-start
(scan-sexps (1+ cmpl-saved-point
) -
1)
617 cmpl-symbol-end
(scan-sexps cmpl-saved-point
1))
618 ;; Remove chars to ignore at the start.
619 (cond ((= (char-syntax (char-after cmpl-symbol-start
)) ?w
)
620 (goto-char cmpl-symbol-start
)
622 (setq cmpl-symbol-start
(point))
623 (goto-char cmpl-saved-point
)
625 ;; Remove chars to ignore at the end.
626 (cond ((= (char-syntax (char-after (1- cmpl-symbol-end
))) ?w
)
627 (goto-char cmpl-symbol-end
)
629 (setq cmpl-symbol-end
(point))
630 (goto-char cmpl-saved-point
)
632 ;; Return completion if the length is reasonable.
633 (if (and (<= (cmpl-read-time-eval completion-min-length
)
634 (- cmpl-symbol-end cmpl-symbol-start
))
635 (<= (- cmpl-symbol-end cmpl-symbol-start
)
636 (cmpl-read-time-eval completion-max-length
)))
637 (buffer-substring cmpl-symbol-start cmpl-symbol-end
)))))
638 (set-syntax-table cmpl-saved-syntax
)))
640 ;; tests for symbol-under-point
641 ;; `^' indicates cursor pos. where value is returned
643 ;; ^^^^^^^^^^^^^^^^ --> simple-word-test
644 ;; _harder_word_test_
645 ;; ^^^^^^^^^^^^^^^^^^ --> harder_word_test
648 ;; /foo/bar/quux.hello
649 ;; ^^^^^^^^^^^^^^^^^^^ --> /foo/bar/quux.hello
652 (defun symbol-before-point ()
653 "Returns a string of the symbol immediately before point.
654 Returns nil if there isn't one longer than `completion-min-length'."
655 ;; This is called when a word separator is typed so it must be FAST !
656 (setq cmpl-saved-syntax
(syntax-table))
659 (set-syntax-table cmpl-syntax-table
)
660 ;; Cursor is on following-char and after preceding-char
661 (cond ((= (setq cmpl-preceding-syntax
(char-syntax (preceding-char))) ?_
)
662 ;; Number of chars to ignore at end.
663 (setq cmpl-symbol-end
(point)
664 cmpl-symbol-start
(scan-sexps cmpl-symbol-end -
1)
666 ;; Remove chars to ignore at the start.
667 (cond ((= (char-syntax (char-after cmpl-symbol-start
)) ?w
)
668 (goto-char cmpl-symbol-start
)
670 (setq cmpl-symbol-start
(point))
671 (goto-char cmpl-symbol-end
)
673 ;; Return value if long enough.
674 (if (>= cmpl-symbol-end
676 (cmpl-read-time-eval completion-min-length
)))
677 (buffer-substring cmpl-symbol-start cmpl-symbol-end
))
679 ((= cmpl-preceding-syntax ?w
)
680 ;; chars to ignore at end
681 (setq cmpl-saved-point
(point)
682 cmpl-symbol-start
(scan-sexps cmpl-saved-point -
1))
683 ;; take off chars. from end
685 (setq cmpl-symbol-end
(point))
686 ;; remove chars to ignore at the start
687 (cond ((= (char-syntax (char-after cmpl-symbol-start
)) ?w
)
688 (goto-char cmpl-symbol-start
)
690 (setq cmpl-symbol-start
(point))
693 (goto-char cmpl-saved-point
)
694 ;; Return completion if the length is reasonable
695 (if (and (<= (cmpl-read-time-eval completion-min-length
)
696 (- cmpl-symbol-end cmpl-symbol-start
))
697 (<= (- cmpl-symbol-end cmpl-symbol-start
)
698 (cmpl-read-time-eval completion-max-length
)))
699 (buffer-substring cmpl-symbol-start cmpl-symbol-end
)))))
700 (set-syntax-table cmpl-saved-syntax
)))
702 ;; tests for symbol-before-point
703 ;; `^' indicates cursor pos. where value is returned
708 ;; ^ --> simple-word-test
709 ;; _harder_word_test_
710 ;; ^ --> harder_word_test
711 ;; ^ --> harder_word_test
716 (defun symbol-under-or-before-point ()
717 ;; This could be made slightly faster but it is better to avoid
718 ;; copying all the code.
719 ;; However, it is only used by the completion string prompter.
720 ;; If it comes into common use, it could be rewritten.
722 (setq cmpl-saved-syntax
(syntax-table))
725 (set-syntax-table cmpl-syntax-table
)
726 (char-syntax (following-char)))
727 (set-syntax-table cmpl-saved-syntax
)))
729 (symbol-under-point))
731 (symbol-before-point))))
734 (defun symbol-before-point-for-complete ()
735 ;; "Returns a string of the symbol immediately before point
736 ;; or nil if there isn't one. Like symbol-before-point but doesn't trim the
738 ;; Cursor is on following-char and after preceding-char
739 (setq cmpl-saved-syntax
(syntax-table))
742 (set-syntax-table cmpl-syntax-table
)
743 (cond ((memq (setq cmpl-preceding-syntax
(char-syntax (preceding-char)))
745 (setq cmpl-symbol-end
(point)
746 cmpl-symbol-start
(scan-sexps cmpl-symbol-end -
1)
748 ;; Remove chars to ignore at the start.
749 (cond ((= (char-syntax (char-after cmpl-symbol-start
)) ?w
)
750 (goto-char cmpl-symbol-start
)
752 (setq cmpl-symbol-start
(point))
753 (goto-char cmpl-symbol-end
)
755 ;; Return completion if the length is reasonable.
756 (if (and (<= (cmpl-read-time-eval
757 completion-prefix-min-length
)
758 (- cmpl-symbol-end cmpl-symbol-start
))
759 (<= (- cmpl-symbol-end cmpl-symbol-start
)
760 (cmpl-read-time-eval completion-max-length
)))
761 (buffer-substring cmpl-symbol-start cmpl-symbol-end
)))))
762 ;; Restore syntax table.
763 (set-syntax-table cmpl-saved-syntax
)))
765 ;; tests for symbol-before-point-for-complete
766 ;; `^' indicates cursor pos. where value is returned
771 ;; ^ --> simple-word-test
772 ;; _harder_word_test_
773 ;; ^ --> harder_word_test
774 ;; ^ --> harder_word_test_
781 ;;---------------------------------------------------------------------------
782 ;; Statistics Recording
783 ;;---------------------------------------------------------------------------
785 ;; Note that the guts of this has been turned off. The guts
786 ;; are in completion-stats.el.
788 ;;-----------------------------------------------
789 ;; Conditionalizing code on *record-cmpl-statistics-p*
790 ;;-----------------------------------------------
791 ;; All statistics code outside this block should use this
792 (defmacro cmpl-statistics-block
(&rest body
))
793 ;; "Only executes body if we are recording statistics."
795 ;; (list* '*record-cmpl-statistics-p* body)
798 ;;-----------------------------------------------
799 ;; Completion Sources
800 ;;-----------------------------------------------
803 (defconst cmpl-source-unknown
0)
804 (defconst cmpl-source-init-file
1)
805 (defconst cmpl-source-file-parsing
2)
806 (defconst cmpl-source-separator
3)
807 (defconst cmpl-source-cursor-moves
4)
808 (defconst cmpl-source-interactive
5)
809 (defconst cmpl-source-cdabbrev
6)
810 (defconst num-cmpl-sources
7)
811 (defvar current-completion-source cmpl-source-unknown
)
815 ;;---------------------------------------------------------------------------
816 ;; Completion Method #2: dabbrev-expand style
817 ;;---------------------------------------------------------------------------
819 ;; This method is used if there are no useful stored completions. It is
820 ;; based on dabbrev-expand with these differences :
821 ;; 1) Faster (we don't use regexps)
822 ;; 2) case coercion handled correctly
823 ;; This is called cdabbrev to differentiate it.
824 ;; We simply search backwards through the file looking for words which
825 ;; start with the same letters we are trying to complete.
828 (defvar cdabbrev-completions-tried nil
)
829 ;; "A list of all the cdabbrev completions since the last reset.")
831 (defvar cdabbrev-current-point
0)
832 ;; "The current point position the cdabbrev search is at.")
834 (defvar cdabbrev-current-window nil
)
835 ;; "The current window we are looking for cdabbrevs in.
836 ;; Return t if looking in (other-buffer), nil if no more cdabbrevs.")
838 (defvar cdabbrev-wrapped-p nil
)
839 ;; "Return t if the cdabbrev search has wrapped around the file.")
841 (defvar cdabbrev-abbrev-string
"")
842 (defvar cdabbrev-start-point
0)
843 (defvar cdabbrev-stop-point
)
845 ;; Test strings for cdabbrev
846 ;; cdat-upcase ;;same namestring
850 ;; a-cdat-1 ;;doesn't start correctly
854 (defun reset-cdabbrev (abbrev-string &optional initial-completions-tried
)
855 "Resets the cdabbrev search to search for abbrev-string.
856 INITIAL-COMPLETIONS-TRIED is a list of downcased strings to ignore
858 (setq cdabbrev-abbrev-string abbrev-string
859 cdabbrev-completions-tried
860 (cons (downcase abbrev-string
) initial-completions-tried
)
862 (reset-cdabbrev-window t
)
865 (defun set-cdabbrev-buffer ()
866 ;; cdabbrev-current-window must not be NIL
867 (set-buffer (if (eq cdabbrev-current-window t
)
869 (window-buffer cdabbrev-current-window
)))
873 (defun reset-cdabbrev-window (&optional initializep
)
874 "Resets the cdabbrev search to search for abbrev-string."
877 (setq cdabbrev-current-window
(selected-window))
879 ((eq cdabbrev-current-window t
)
880 ;; Everything has failed
881 (setq cdabbrev-current-window nil
))
882 (cdabbrev-current-window
883 (setq cdabbrev-current-window
(next-window cdabbrev-current-window
))
884 (if (eq cdabbrev-current-window
(selected-window))
885 ;; No more windows, try other buffer.
886 (setq cdabbrev-current-window t
)))
888 (if cdabbrev-current-window
890 (set-cdabbrev-buffer)
891 (setq cdabbrev-current-point
(point)
892 cdabbrev-start-point cdabbrev-current-point
894 (if completion-search-distance
896 (- cdabbrev-start-point completion-search-distance
))
898 cdabbrev-wrapped-p nil
)
901 (defun next-cdabbrev ()
902 "Return the next possible cdabbrev expansion or nil if there isn't one.
903 `reset-cdabbrev' must've been called already.
904 This is sensitive to `case-fold-search'."
905 ;; note that case-fold-search affects the behavior of this function
906 ;; Bug: won't pick up an expansion that starts at the top of buffer
907 (if cdabbrev-current-window
911 downcase-expansion tried-list syntax saved-point-2
)
915 ;; Switch to current completion buffer
916 (set-cdabbrev-buffer)
917 ;; Save current buffer state
918 (setq saved-point
(point)
919 saved-syntax
(syntax-table))
920 ;; Restore completion state
921 (set-syntax-table cmpl-syntax-table
)
922 (goto-char cdabbrev-current-point
)
923 ;; Loop looking for completions
925 ;; This code returns t if it should loop again
927 (;; search for the string
928 (search-backward cdabbrev-abbrev-string cdabbrev-stop-point t
)
929 ;; return nil if the completion is valid
932 ;; does it start with a separator char ?
933 (or (= (setq syntax
(char-syntax (preceding-char))) ?
)
935 ;; symbol char to ignore at end. Are we at end ?
937 (setq saved-point-2
(point))
940 (= (char-syntax (preceding-char)) ?
)
941 (goto-char saved-point-2
)
943 ;; is the symbol long enough ?
944 (setq expansion
(symbol-under-point))
945 ;; have we not tried this one before
947 ;; See if we've already used it
948 (setq tried-list cdabbrev-completions-tried
949 downcase-expansion
(downcase expansion
))
950 (while (and tried-list
951 (not (string-equal downcase-expansion
953 ;; Already tried, don't choose this one
954 (setq tried-list
(cdr tried-list
))
956 ;; at this point tried-list will be nil if this
957 ;; expansion has not yet been tried
964 ;; If already wrapped, then we've failed completely
968 (goto-char (setq cdabbrev-current-point
969 (if completion-search-distance
970 (min (point-max) (+ cdabbrev-start-point completion-search-distance
))
973 (setq cdabbrev-wrapped-p t
))
978 (setq cdabbrev-completions-tried
979 (cons downcase-expansion cdabbrev-completions-tried
)
980 cdabbrev-current-point
(point))))
982 (set-syntax-table saved-syntax
)
983 (goto-char saved-point
)
985 ;; If no expansion, go to next window
987 (t (reset-cdabbrev-window)
990 ;; The following must be eval'd in the minibuffer ::
991 ;; (reset-cdabbrev "cdat")
992 ;; (next-cdabbrev) --> "cdat-simple"
993 ;; (next-cdabbrev) --> "cdat-1-2-3-4"
994 ;; (next-cdabbrev) --> "CDAT-UPCASE"
995 ;; (next-cdabbrev) --> "cdat-wrapping"
996 ;; (next-cdabbrev) --> "cdat_start_sym"
997 ;; (next-cdabbrev) --> nil
998 ;; (next-cdabbrev) --> nil
999 ;; (next-cdabbrev) --> nil
1005 ;;---------------------------------------------------------------------------
1006 ;; Completion Database
1007 ;;---------------------------------------------------------------------------
1009 ;; We use two storage modes for the two search types ::
1010 ;; 1) Prefix {cmpl-prefix-obarray} for looking up possible completions
1011 ;; Used by search-completion-next
1012 ;; the value of the symbol is nil or a cons of head and tail pointers
1013 ;; 2) Interning {cmpl-obarray} to see if it's in the database
1014 ;; Used by find-exact-completion, completion-in-database-p
1015 ;; The value of the symbol is the completion entry
1017 ;; bad things may happen if this length is changed due to the way
1018 ;; GNU implements obarrays
1019 (defconst cmpl-obarray-length
511)
1021 (defvar cmpl-prefix-obarray
(make-vector cmpl-obarray-length
0)
1022 "An obarray used to store the downcased completion prefixes.
1023 Each symbol is bound to a list of completion entries.")
1025 (defvar cmpl-obarray
(make-vector cmpl-obarray-length
0)
1026 "An obarray used to store the downcased completions.
1027 Each symbol is bound to a single completion entry.")
1029 ;;-----------------------------------------------
1030 ;; Completion Entry Structure Definition
1031 ;;-----------------------------------------------
1033 ;; A completion entry is a LIST of string, prefix-symbol num-uses, and
1034 ;; last-use-time (the time the completion was last used)
1035 ;; last-use-time is T if the string should be kept permanently
1036 ;; num-uses is incremented every time the completion is used.
1038 ;; We chose lists because (car foo) is faster than (aref foo 0) and the
1039 ;; creation time is about the same.
1043 (defmacro completion-string
(completion-entry)
1044 (list 'car completion-entry
))
1046 (defmacro completion-num-uses
(completion-entry)
1047 ;; "The number of times it has used. Used to decide whether to save
1049 (list 'car
(list 'cdr completion-entry
)))
1051 (defmacro completion-last-use-time
(completion-entry)
1052 ;; "The time it was last used. In hours since origin. Used to decide
1053 ;; whether to save it. T if one should always save it."
1054 (list 'nth
2 completion-entry
))
1056 (defmacro completion-source
(completion-entry)
1057 (list 'nth
3 completion-entry
))
1060 (defmacro set-completion-string
(completion-entry string
)
1061 (list 'setcar completion-entry string
))
1063 (defmacro set-completion-num-uses
(completion-entry num-uses
)
1064 (list 'setcar
(list 'cdr completion-entry
) num-uses
))
1066 (defmacro set-completion-last-use-time
(completion-entry last-use-time
)
1067 (list 'setcar
(list 'cdr
(list 'cdr completion-entry
)) last-use-time
))
1070 (defun make-completion (string)
1071 "Returns a list of a completion entry."
1072 (list (list string
0 nil current-completion-source
)))
1075 ;;(defmacro cmpl-prefix-entry-symbol (completion-entry)
1076 ;; (list 'car (list 'cdr completion-entry)))
1080 ;;-----------------------------------------------
1081 ;; Prefix symbol entry definition
1082 ;;-----------------------------------------------
1083 ;; A cons of (head . tail)
1087 (defmacro cmpl-prefix-entry-head
(prefix-entry)
1088 (list 'car prefix-entry
))
1090 (defmacro cmpl-prefix-entry-tail
(prefix-entry)
1091 (list 'cdr prefix-entry
))
1095 (defmacro set-cmpl-prefix-entry-head
(prefix-entry new-head
)
1096 (list 'setcar prefix-entry new-head
))
1098 (defmacro set-cmpl-prefix-entry-tail
(prefix-entry new-tail
)
1099 (list 'setcdr prefix-entry new-tail
))
1103 (defun make-cmpl-prefix-entry (completion-entry-list)
1104 "Makes a new prefix entry containing only completion-entry."
1105 (cons completion-entry-list completion-entry-list
))
1107 ;;-----------------------------------------------
1108 ;; Completion Database - Utilities
1109 ;;-----------------------------------------------
1111 (defun clear-all-completions ()
1112 "Initializes the completion storage. All existing completions are lost."
1114 (setq cmpl-prefix-obarray
(make-vector cmpl-obarray-length
0))
1115 (setq cmpl-obarray
(make-vector cmpl-obarray-length
0))
1116 (cmpl-statistics-block
1117 (record-clear-all-completions))
1120 (defvar completions-list-return-value
)
1122 (defun list-all-completions ()
1123 "Returns a list of all the known completion entries."
1124 (let ((completions-list-return-value nil
))
1125 (mapatoms 'list-all-completions-1 cmpl-prefix-obarray
)
1126 completions-list-return-value
))
1128 (defun list-all-completions-1 (prefix-symbol)
1129 (if (boundp prefix-symbol
)
1130 (setq completions-list-return-value
1131 (append (cmpl-prefix-entry-head (symbol-value prefix-symbol
))
1132 completions-list-return-value
))))
1134 (defun list-all-completions-by-hash-bucket ()
1135 "Return list of lists of known completion entries, organized by hash bucket."
1136 (let ((completions-list-return-value nil
))
1137 (mapatoms 'list-all-completions-by-hash-bucket-1 cmpl-prefix-obarray
)
1138 completions-list-return-value
))
1140 (defun list-all-completions-by-hash-bucket-1 (prefix-symbol)
1141 (if (boundp prefix-symbol
)
1142 (setq completions-list-return-value
1143 (cons (cmpl-prefix-entry-head (symbol-value prefix-symbol
))
1144 completions-list-return-value
))))
1147 ;;-----------------------------------------------
1148 ;; Updating the database
1149 ;;-----------------------------------------------
1151 ;; These are the internal functions used to update the datebase
1154 (defvar completion-to-accept nil
)
1155 ;;"Set to a string that is pending its acceptance."
1156 ;; this checked by the top level reading functions
1158 (defvar cmpl-db-downcase-string nil
)
1159 ;; "Setup by find-exact-completion, etc. The given string, downcased."
1160 (defvar cmpl-db-symbol nil
)
1161 ;; "The interned symbol corresponding to cmpl-db-downcase-string.
1162 ;; Set up by cmpl-db-symbol."
1163 (defvar cmpl-db-prefix-symbol nil
)
1164 ;; "The interned prefix symbol corresponding to cmpl-db-downcase-string."
1165 (defvar cmpl-db-entry nil
)
1166 (defvar cmpl-db-debug-p nil
1167 "Set to T if you want to debug the database.")
1170 (defun find-exact-completion (string)
1171 "Returns the completion entry for string or nil.
1172 Sets up `cmpl-db-downcase-string' and `cmpl-db-symbol'."
1173 (and (boundp (setq cmpl-db-symbol
1174 (intern (setq cmpl-db-downcase-string
(downcase string
))
1176 (symbol-value cmpl-db-symbol
)
1179 (defun find-cmpl-prefix-entry (prefix-string)
1180 "Returns the prefix entry for string.
1181 Sets `cmpl-db-prefix-symbol'.
1182 Prefix-string must be exactly `completion-prefix-min-length' long
1183 and downcased. Sets up `cmpl-db-prefix-symbol'."
1184 (and (boundp (setq cmpl-db-prefix-symbol
1185 (intern prefix-string cmpl-prefix-obarray
)))
1186 (symbol-value cmpl-db-prefix-symbol
)))
1188 (defvar inside-locate-completion-entry nil
)
1189 ;; used to trap lossage in silent error correction
1191 (defun locate-completion-entry (completion-entry prefix-entry
)
1192 "Locates the completion entry.
1193 Returns a pointer to the element before the completion entry or nil if
1194 the completion entry is at the head.
1195 Must be called after `find-exact-completion'."
1196 (let ((prefix-list (cmpl-prefix-entry-head prefix-entry
))
1200 ((not (eq (car prefix-list
) completion-entry
))
1201 ;; not already at head
1202 (while (and prefix-list
1203 (not (eq completion-entry
1204 (car (setq next-prefix-list
(cdr prefix-list
)))
1206 (setq prefix-list next-prefix-list
))
1209 ;; Didn't find it. Database is messed up.
1211 ;; not found, error if debug mode
1212 (error "Completion entry exists but not on prefix list - %s"
1214 (inside-locate-completion-entry
1215 ;; recursive error: really scrod
1216 (locate-completion-db-error))
1219 (set cmpl-db-symbol nil
)
1221 (locate-completion-entry-retry completion-entry
)
1224 (defun locate-completion-entry-retry (old-entry)
1225 (let ((inside-locate-completion-entry t
))
1226 (add-completion (completion-string old-entry
)
1227 (completion-num-uses old-entry
)
1228 (completion-last-use-time old-entry
))
1229 (let* ((cmpl-entry (find-exact-completion (completion-string old-entry
)))
1232 (find-cmpl-prefix-entry
1233 (substring cmpl-db-downcase-string
1234 0 completion-prefix-min-length
))))
1236 (if (and cmpl-entry pref-entry
)
1238 (locate-completion-entry cmpl-entry pref-entry
)
1240 (locate-completion-db-error))
1243 (defun locate-completion-db-error ()
1244 ;; recursive error: really scrod
1245 (error "Completion database corrupted. Try M-x clear-all-completions. Send bug report.")
1249 (defun add-completion-to-tail-if-new (string)
1250 "If STRING is not in the database add it to appropriate prefix list.
1251 STRING is added to the end of the appropriate prefix list with
1252 num-uses = 0. The database is unchanged if it is there. STRING must be
1253 longer than `completion-prefix-min-length'.
1254 This must be very fast.
1255 Returns the completion entry."
1256 (or (find-exact-completion string
)
1258 (let (;; create an entry
1259 (entry (make-completion string
))
1261 (prefix-entry (find-cmpl-prefix-entry
1262 (substring cmpl-db-downcase-string
0
1263 (cmpl-read-time-eval
1264 completion-prefix-min-length
))))
1266 ;; The next two forms should happen as a unit (atomically) but
1267 ;; no fatal errors should result if that is not the case.
1269 ;; These two should be atomic, but nothing fatal will happen
1271 (setcdr (cmpl-prefix-entry-tail prefix-entry
) entry
)
1272 (set-cmpl-prefix-entry-tail prefix-entry entry
))
1274 (set cmpl-db-prefix-symbol
(make-cmpl-prefix-entry entry
))
1277 (cmpl-statistics-block
1278 (note-added-completion))
1280 (set cmpl-db-symbol
(car entry
))
1283 (defun add-completion-to-head (completion-string)
1284 "If COMPLETION-STRING is not in the database, add it to prefix list.
1285 We add COMPLETION-STRING to the head of the appropriate prefix list,
1286 or it to the head of the list.
1287 COMPLETION-STRING must be longer than `completion-prefix-min-length'.
1288 Updates the saved string with the supplied string.
1289 This must be very fast.
1290 Returns the completion entry."
1291 ;; Handle pending acceptance
1292 (if completion-to-accept
(accept-completion))
1293 ;; test if already in database
1294 (if (setq cmpl-db-entry
(find-exact-completion completion-string
))
1296 (let* ((prefix-entry (find-cmpl-prefix-entry
1297 (substring cmpl-db-downcase-string
0
1298 (cmpl-read-time-eval
1299 completion-prefix-min-length
))))
1300 (splice-ptr (locate-completion-entry cmpl-db-entry prefix-entry
))
1301 (cmpl-ptr (cdr splice-ptr
))
1304 (set-completion-string cmpl-db-entry completion-string
)
1305 ;; move to head (if necessary)
1307 ;; These should all execute atomically but it is not fatal if
1310 (or (setcdr splice-ptr
(cdr cmpl-ptr
))
1311 ;; fix up tail if necessary
1312 (set-cmpl-prefix-entry-tail prefix-entry splice-ptr
))
1313 ;; splice in at head
1314 (setcdr cmpl-ptr
(cmpl-prefix-entry-head prefix-entry
))
1315 (set-cmpl-prefix-entry-head prefix-entry cmpl-ptr
)
1319 (let (;; create an entry
1320 (entry (make-completion completion-string
))
1322 (prefix-entry (find-cmpl-prefix-entry
1323 (substring cmpl-db-downcase-string
0
1324 (cmpl-read-time-eval
1325 completion-prefix-min-length
))))
1328 ;; Splice in at head
1329 (setcdr entry
(cmpl-prefix-entry-head prefix-entry
))
1330 (set-cmpl-prefix-entry-head prefix-entry entry
))
1332 ;; Start new prefix entry
1333 (set cmpl-db-prefix-symbol
(make-cmpl-prefix-entry entry
))
1336 (cmpl-statistics-block
1337 (note-added-completion))
1338 ;; Add it to the symbol
1339 (set cmpl-db-symbol
(car entry
))
1342 (defun delete-completion (completion-string)
1343 "Deletes the completion from the database.
1344 String must be longer than `completion-prefix-min-length'."
1345 ;; Handle pending acceptance
1346 (if completion-to-accept
(accept-completion))
1347 (if (setq cmpl-db-entry
(find-exact-completion completion-string
))
1349 (let* ((prefix-entry (find-cmpl-prefix-entry
1350 (substring cmpl-db-downcase-string
0
1351 (cmpl-read-time-eval
1352 completion-prefix-min-length
))))
1353 (splice-ptr (locate-completion-entry cmpl-db-entry prefix-entry
))
1355 ;; delete symbol reference
1356 (set cmpl-db-symbol nil
)
1357 ;; remove from prefix list
1360 (or (setcdr splice-ptr
(cdr (cdr splice-ptr
)))
1361 ;; fix up tail if necessary
1362 (set-cmpl-prefix-entry-tail prefix-entry splice-ptr
))
1366 (or (set-cmpl-prefix-entry-head
1367 prefix-entry
(cdr (cmpl-prefix-entry-head prefix-entry
)))
1368 ;; List is now empty
1369 (set cmpl-db-prefix-symbol nil
))
1371 (cmpl-statistics-block
1372 (note-completion-deleted))
1374 (error "Unknown completion `%s'" completion-string
)
1379 ;; (add-completion-to-head "banana") --> ("banana" 0 nil 0)
1380 ;; (find-exact-completion "banana") --> ("banana" 0 nil 0)
1381 ;; (find-exact-completion "bana") --> nil
1382 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1383 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1384 ;; (add-completion-to-head "banish") --> ("banish" 0 nil 0)
1385 ;; (find-exact-completion "banish") --> ("banish" 0 nil 0)
1386 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banish" ...) ("banana" ...))
1387 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1388 ;; (add-completion-to-head "banana") --> ("banana" 0 nil 0)
1389 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...) ("banish" ...))
1390 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banish" ...))
1393 ;; (add-completion-to-head "banner") --> ("banner" 0 nil 0)
1394 ;; (delete-completion "banner")
1395 ;; (find-exact-completion "banner") --> nil
1396 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...) ("banish" ...))
1397 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banish" ...))
1398 ;; (add-completion-to-head "banner") --> ("banner" 0 nil 0)
1399 ;; (delete-completion "banana")
1400 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banner" ...) ("banish" ...))
1401 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banish" ...))
1402 ;; (delete-completion "banner")
1403 ;; (delete-completion "banish")
1404 ;; (find-cmpl-prefix-entry "ban") --> nil
1405 ;; (delete-completion "banner") --> error
1408 ;; (add-completion-to-tail-if-new "banana") --> ("banana" 0 nil 0)
1409 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1410 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1411 ;; (add-completion-to-tail-if-new "banish") --> ("banish" 0 nil 0)
1412 ;; (car (find-cmpl-prefix-entry "ban")) -->(("banana" ...) ("banish" ...))
1413 ;; (cdr (find-cmpl-prefix-entry "ban")) -->(("banish" ...))
1417 ;;---------------------------------------------------------------------------
1418 ;; Database Update :: Interface level routines
1419 ;;---------------------------------------------------------------------------
1421 ;; These lie on top of the database ref. functions but below the standard
1422 ;; user interface level
1425 (defun interactive-completion-string-reader (prompt)
1426 (let* ((default (symbol-under-or-before-point))
1429 (format "%s: (default: %s) " prompt default
)
1430 (format "%s: " prompt
))
1432 (read (completing-read new-prompt cmpl-obarray
))
1434 (if (zerop (length read
)) (setq read
(or default
"")))
1438 (defun check-completion-length (string)
1439 (if (< (length string
) completion-min-length
)
1440 (error "The string `%s' is too short to be saved as a completion"
1444 (defun add-completion (string &optional num-uses last-use-time
)
1445 "Add STRING to completion list, or move it to head of list.
1446 The completion is altered appropriately if num-uses and/or last-use-time is
1448 (interactive (interactive-completion-string-reader "Completion to add"))
1449 (check-completion-length string
)
1450 (let* ((current-completion-source (if (interactive-p)
1451 cmpl-source-interactive
1452 current-completion-source
))
1453 (entry (add-completion-to-head string
)))
1455 (if num-uses
(set-completion-num-uses entry num-uses
))
1457 (set-completion-last-use-time entry last-use-time
))
1460 (defun add-permanent-completion (string)
1461 "Add STRING if it isn't already listed, and mark it permanent."
1463 (interactive-completion-string-reader "Completion to add permanently"))
1464 (let ((current-completion-source (if (interactive-p)
1465 cmpl-source-interactive
1466 current-completion-source
))
1468 (add-completion string nil t
)
1471 (defun kill-completion (string)
1472 (interactive (interactive-completion-string-reader "Completion to kill"))
1473 (check-completion-length string
)
1474 (delete-completion string
)
1477 (defun accept-completion ()
1478 "Accepts the pending completion in `completion-to-accept'.
1479 This bumps num-uses. Called by `add-completion-to-head' and
1480 `completion-search-reset'."
1481 (let ((string completion-to-accept
)
1482 ;; if this is added afresh here, then it must be a cdabbrev
1483 (current-completion-source cmpl-source-cdabbrev
)
1486 (setq completion-to-accept nil
)
1487 (setq entry
(add-completion-to-head string
))
1488 (set-completion-num-uses entry
(1+ (completion-num-uses entry
)))
1489 (setq cmpl-completions-accepted-p t
)
1492 (defun use-completion-under-point ()
1493 "Add the completion symbol underneath the point into the completion buffer."
1494 (let ((string (and enable-completion
(symbol-under-point)))
1495 (current-completion-source cmpl-source-cursor-moves
))
1496 (if string
(add-completion-to-head string
))))
1498 (defun use-completion-before-point ()
1499 "Add the completion symbol before point into the completion buffer."
1500 (let ((string (and enable-completion
(symbol-before-point)))
1501 (current-completion-source cmpl-source-cursor-moves
))
1502 (if string
(add-completion-to-head string
))))
1504 (defun use-completion-under-or-before-point ()
1505 "Add the completion symbol before point into the completion buffer."
1506 (let ((string (and enable-completion
(symbol-under-or-before-point)))
1507 (current-completion-source cmpl-source-cursor-moves
))
1508 (if string
(add-completion-to-head string
))))
1510 (defun use-completion-before-separator ()
1511 "Add the completion symbol before point into the completion buffer.
1512 Completions added this way will automatically be saved if
1513 `completion-on-separator-character' is non-nil."
1514 (let ((string (and enable-completion
(symbol-before-point)))
1515 (current-completion-source cmpl-source-separator
)
1517 (cmpl-statistics-block
1518 (note-separator-character string
)
1521 (setq entry
(add-completion-to-head string
))
1522 (if (and completion-on-separator-character
1523 (zerop (completion-num-uses entry
)))
1525 (set-completion-num-uses entry
1)
1526 (setq cmpl-completions-accepted-p t
)))))
1531 ;; (add-completion "banana" 5 10)
1532 ;; (find-exact-completion "banana") --> ("banana" 5 10 0)
1533 ;; (add-completion "banana" 6)
1534 ;; (find-exact-completion "banana") --> ("banana" 6 10 0)
1535 ;; (add-completion "banish")
1536 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banish" ...) ("banana" ...))
1539 ;; (setq completion-to-accept "banana")
1540 ;; (accept-completion)
1541 ;; (find-exact-completion "banana") --> ("banana" 7 10)
1542 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...) ("banish" ...))
1543 ;; (setq completion-to-accept "banish")
1544 ;; (add-completion "banner")
1545 ;; (car (find-cmpl-prefix-entry "ban"))
1546 ;; --> (("banner" ...) ("banish" 1 ...) ("banana" 7 ...))
1549 ;; (kill-completion "banish")
1550 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banner" ...) ("banana" ...))
1553 ;;---------------------------------------------------------------------------
1554 ;; Searching the database
1555 ;;---------------------------------------------------------------------------
1556 ;; Functions outside this block must call completion-search-reset followed
1557 ;; by calls to completion-search-next or completion-search-peek
1561 ;; Commented out to improve loading speed
1562 (defvar cmpl-test-string
"")
1563 ;; "The current string used by completion-search-next."
1564 (defvar cmpl-test-regexp
"")
1565 ;; "The current regexp used by completion-search-next.
1566 ;; (derived from cmpl-test-string)"
1567 (defvar cmpl-last-index
0)
1568 ;; "The last index that completion-search-next was called with."
1569 (defvar cmpl-cdabbrev-reset-p nil
)
1570 ;; "Set to t when cdabbrevs have been reset."
1571 (defvar cmpl-next-possibilities nil
)
1572 ;; "A pointer to the element BEFORE the next set of possible completions.
1573 ;; cadr of this is the cmpl-next-possibility"
1574 (defvar cmpl-starting-possibilities nil
)
1575 ;; "The initial list of starting possibilities."
1576 (defvar cmpl-next-possibility nil
)
1577 ;; "The cached next possibility."
1578 (defvar cmpl-tried-list nil
)
1579 ;; "A downcased list of all the completions we have tried."
1582 (defun completion-search-reset (string)
1583 "Set up the for completion searching for STRING.
1584 STRING must be longer than `completion-prefix-min-length'."
1585 (if completion-to-accept
(accept-completion))
1586 (setq cmpl-starting-possibilities
1587 (cmpl-prefix-entry-head
1588 (find-cmpl-prefix-entry
1589 (downcase (substring string
0 completion-prefix-min-length
))))
1590 cmpl-test-string string
1591 cmpl-test-regexp
(concat (regexp-quote string
) "."))
1592 (completion-search-reset-1)
1595 (defun completion-search-reset-1 ()
1596 (setq cmpl-next-possibilities cmpl-starting-possibilities
1597 cmpl-next-possibility nil
1598 cmpl-cdabbrev-reset-p nil
1603 (defun completion-search-next (index)
1604 "Return the next completion entry.
1605 If INDEX is out of sequence, reset and start from the top.
1606 If there are no more entries, try cdabbrev and returns only a string."
1608 ((= index
(setq cmpl-last-index
(1+ cmpl-last-index
)))
1609 (completion-search-peek t
))
1611 (completion-search-reset-1)
1612 (setq cmpl-last-index index
)
1613 ;; reverse the possibilities list
1614 (setq cmpl-next-possibilities
(reverse cmpl-starting-possibilities
))
1615 ;; do a "normal" search
1616 (while (and (completion-search-peek nil
)
1617 (< (setq index
(1+ index
)) 0))
1618 (setq cmpl-next-possibility nil
)
1620 (cond ((not cmpl-next-possibilities
))
1621 ;; If no more possibilities, leave it that way
1622 ((= -
1 cmpl-last-index
)
1623 ;; next completion is at index 0. reset next-possibility list
1624 ;; to start at beginning
1625 (setq cmpl-next-possibilities cmpl-starting-possibilities
))
1627 ;; otherwise point to one before current
1628 (setq cmpl-next-possibilities
1629 (nthcdr (- (length cmpl-starting-possibilities
)
1630 (length cmpl-next-possibilities
))
1631 cmpl-starting-possibilities
))
1634 ;; non-negative index, reset and search
1636 (completion-search-reset-1)
1637 (setq cmpl-last-index index
)
1638 (while (and (completion-search-peek t
)
1639 (not (< (setq index
(1- index
)) 0)))
1640 (setq cmpl-next-possibility nil
)
1644 cmpl-next-possibility
1645 (setq cmpl-next-possibility nil
)
1649 (defun completion-search-peek (use-cdabbrev)
1650 "Returns the next completion entry without actually moving the pointers.
1651 Calling this again or calling `completion-search-next' results in the same
1652 string being returned. Depends on `case-fold-search'.
1653 If there are no more entries, try cdabbrev and then return only a string."
1655 ;; return the cached value if we have it
1656 (cmpl-next-possibility)
1657 ((and cmpl-next-possibilities
1658 ;; still a few possibilities left
1661 (and (not (eq 0 (string-match cmpl-test-regexp
1662 (completion-string (car cmpl-next-possibilities
)))))
1663 (setq cmpl-next-possibilities
(cdr cmpl-next-possibilities
))
1665 cmpl-next-possibilities
1668 (setq cmpl-next-possibility
(car cmpl-next-possibilities
)
1669 cmpl-tried-list
(cons (downcase (completion-string cmpl-next-possibility
))
1671 cmpl-next-possibilities
(cdr cmpl-next-possibilities
)
1673 cmpl-next-possibility
)
1675 ;; unsuccessful, use cdabbrev
1676 (cond ((not cmpl-cdabbrev-reset-p
)
1677 (reset-cdabbrev cmpl-test-string cmpl-tried-list
)
1678 (setq cmpl-cdabbrev-reset-p t
)
1680 (setq cmpl-next-possibility
(next-cdabbrev))
1682 ;; Completely unsuccessful, return nil
1687 ;; (add-completion "banana")
1688 ;; (completion-search-reset "ban")
1689 ;; (completion-search-next 0) --> "banana"
1691 ;; - Discrimination -
1692 ;; (add-completion "cumberland")
1693 ;; (add-completion "cumberbund")
1695 ;; (completion-search-reset "cumb")
1696 ;; (completion-search-peek t) --> "cumberbund"
1697 ;; (completion-search-next 0) --> "cumberbund"
1698 ;; (completion-search-peek t) --> "cumberland"
1699 ;; (completion-search-next 1) --> "cumberland"
1700 ;; (completion-search-peek nil) --> nil
1701 ;; (completion-search-next 2) --> "cumbering" {cdabbrev}
1702 ;; (completion-search-next 3) --> nil or "cumming"{depends on context}
1703 ;; (completion-search-next 1) --> "cumberland"
1704 ;; (completion-search-peek t) --> "cumbering" {cdabbrev}
1707 ;; (completion-search-next 1) --> "cumberland"
1708 ;; (setq completion-to-accept "cumberland")
1709 ;; (completion-search-reset "foo")
1710 ;; (completion-search-reset "cum")
1711 ;; (completion-search-next 0) --> "cumberland"
1714 ;; (kill-completion "cumberland")
1716 ;; (completion-search-reset "cum")
1717 ;; (completion-search-next 0) --> "cumberbund"
1718 ;; (completion-search-next 1) --> "cummings"
1720 ;; - Ignoring Capitalization -
1721 ;; (completion-search-reset "CuMb")
1722 ;; (completion-search-next 0) --> "cumberbund"
1726 ;;-----------------------------------------------
1728 ;;-----------------------------------------------
1730 (defun completion-mode ()
1731 "Toggles whether or not to add new words to the completion database."
1733 (setq enable-completion
(not enable-completion
))
1734 (message "Completion mode is now %s." (if enable-completion
"ON" "OFF"))
1737 (defvar cmpl-current-index
0)
1738 (defvar cmpl-original-string nil
)
1739 (defvar cmpl-last-insert-location -
1)
1740 (defvar cmpl-leave-point-at-start nil
)
1742 (defun complete (&optional arg
)
1743 "Fill out a completion of the word before point.
1744 Point is left at end. Consecutive calls rotate through all possibilities.
1746 control-u :: leave the point at the beginning of the completion rather
1748 a number :: rotate through the possible completions by that amount
1749 `-' :: same as -1 (insert previous completion)
1750 {See the comments at the top of `completion.el' for more info.}"
1752 ;;; Set up variables
1753 (cond ((eq last-command this-command
)
1755 (delete-region cmpl-last-insert-location
(point))
1756 ;; get next completion
1757 (setq cmpl-current-index
(+ cmpl-current-index
(or arg
1)))
1760 (if (not cmpl-initialized-p
)
1761 (initialize-completions)) ;; make sure everything's loaded
1762 (cond ((consp current-prefix-arg
) ;; control-u
1764 (setq cmpl-leave-point-at-start t
)
1767 (setq cmpl-leave-point-at-start nil
)
1770 (setq cmpl-original-string
(symbol-before-point-for-complete))
1771 (cond ((not cmpl-original-string
)
1772 (setq this-command
'failed-complete
)
1773 (error "To complete, point must be after a symbol at least %d character long"
1774 completion-prefix-min-length
)))
1776 (setq cmpl-current-index
(if current-prefix-arg arg
0))
1778 (cmpl-statistics-block
1779 (note-complete-entered-afresh cmpl-original-string
))
1781 (completion-search-reset cmpl-original-string
)
1782 ;; erase what we've got
1783 (delete-region cmpl-symbol-start cmpl-symbol-end
)
1786 ;; point is at the point to insert the new symbol
1787 ;; Get the next completion
1788 (let* ((print-status-p
1789 (and (>= baud-rate completion-prompt-speed-threshold
)
1790 (not (minibuffer-window-selected-p))))
1791 (insert-point (point))
1792 (entry (completion-search-next cmpl-current-index
))
1795 ;; entry is either a completion entry or a string (if cdabbrev)
1799 ;; Setup for proper case
1800 (setq string
(if (stringp entry
)
1801 entry
(completion-string entry
)))
1802 (setq string
(cmpl-merge-string-cases
1803 string cmpl-original-string
))
1807 (setq completion-to-accept string
)
1808 ;; fixup and cache point
1809 (cond (cmpl-leave-point-at-start
1810 (setq cmpl-last-insert-location
(point))
1811 (goto-char insert-point
))
1813 (setq cmpl-last-insert-location insert-point
))
1816 (cmpl-statistics-block
1817 (note-complete-inserted entry cmpl-current-index
))
1818 ;; Done ! cmpl-stat-complete-successful
1819 ;;display the next completion
1821 ((and print-status-p
1822 ;; This updates the display and only prints if there
1826 (completion-search-peek
1827 completion-cdabbrev-prompt-flag
)))
1828 (setq string
(if (stringp entry
)
1829 entry
(completion-string entry
)))
1830 (setq string
(cmpl-merge-string-cases
1831 string cmpl-original-string
))
1832 (message "Next completion: %s" string
)
1835 (t;; none found, insert old
1836 (insert cmpl-original-string
)
1837 ;; Don't accept completions
1838 (setq completion-to-accept nil
)
1840 ;; This used to call cmpl19-sit-for, an undefined function.
1841 ;; I hope that sit-for does the right thing; I don't know -- rms.
1842 (if (and print-status-p
(sit-for 0))
1843 (message "No %scompletions."
1844 (if (eq this-command last-command
) "more " "")))
1846 (cmpl-statistics-block
1847 (record-complete-failed cmpl-current-index
))
1848 ;; Pretend that we were never here
1849 (setq this-command
'failed-complete
)
1852 ;;---------------------------------------------------------------------------
1853 ;; Parsing definitions from files into the database
1854 ;;---------------------------------------------------------------------------
1856 ;;-----------------------------------------------
1857 ;; Top Level functions ::
1858 ;;-----------------------------------------------
1861 (defun add-completions-from-file (file)
1862 "Parse possible completions from a file and add them to data base."
1863 (interactive "fFile: ")
1864 (setq file
(expand-file-name file
))
1865 (let* ((buffer (get-file-buffer file
))
1866 (buffer-already-there-p buffer
)
1868 (if (not buffer-already-there-p
)
1869 (let ((completions-merging-modes nil
))
1870 (setq buffer
(find-file-noselect file
))))
1874 (add-completions-from-buffer)
1876 (if (not buffer-already-there-p
)
1877 (kill-buffer buffer
)))))
1879 (defun add-completions-from-buffer ()
1881 (let ((current-completion-source cmpl-source-file-parsing
)
1883 (cmpl-statistics-block
1884 (aref completion-add-count-vector cmpl-source-file-parsing
)))
1887 (cond ((memq major-mode
'(emacs-lisp-mode lisp-mode
))
1888 (add-completions-from-lisp-buffer)
1891 ((memq major-mode
'(c-mode))
1892 (add-completions-from-c-buffer)
1896 (error "Cannot parse completions in %s buffers"
1899 (cmpl-statistics-block
1900 (record-cmpl-parse-file
1902 (- (aref completion-add-count-vector cmpl-source-file-parsing
)
1907 (defun cmpl-find-file-hook ()
1908 (cond (enable-completion
1909 (cond ((and (memq major-mode
'(emacs-lisp-mode lisp-mode
))
1910 (memq 'lisp completions-merging-modes
)
1912 (add-completions-from-buffer))
1913 ((and (memq major-mode
'(c-mode))
1914 (memq 'c completions-merging-modes
)
1916 (add-completions-from-buffer)
1920 ;;-----------------------------------------------
1921 ;; Tags Table Completions
1922 ;;-----------------------------------------------
1924 (defun add-completions-from-tags-table ()
1925 ;; Inspired by eero@media-lab.media.mit.edu
1926 "Add completions from the current tags table."
1928 (visit-tags-table-buffer) ;this will prompt if no tags-table
1930 (goto-char (point-min))
1934 (search-forward "\177")
1936 (and (setq string
(symbol-under-point))
1937 (add-completion-to-tail-if-new string
))
1944 ;;-----------------------------------------------
1945 ;; Lisp File completion parsing
1946 ;;-----------------------------------------------
1947 ;; This merely looks for phrases beginning with (def.... or
1948 ;; (package:def ... and takes the next word.
1950 ;; We tried using forward-lines and explicit searches but the regexp technique
1951 ;; was faster. (About 100K characters per second)
1953 (defconst *lisp-def-regexp
*
1954 "\n(\\(\\w*:\\)?def\\(\\w\\|\\s_\\)*\\s +(*"
1955 "A regexp that searches for lisp definition form."
1959 ;; (and (string-match *lisp-def-regexp* "\n(defun foo") (match-end 0)) -> 8
1960 ;; (and (string-match *lisp-def-regexp* "\n(si:def foo") (match-end 0)) -> 9
1961 ;; (and (string-match *lisp-def-regexp* "\n(def-bar foo")(match-end 0)) -> 10
1962 ;; (and (string-match *lisp-def-regexp* "\n(defun (foo") (match-end 0)) -> 9
1964 ;; Parses all the definition names from a Lisp mode buffer and adds them to
1965 ;; the completion database.
1966 (defun add-completions-from-lisp-buffer ()
1968 ;;; Sun-3/280 - 1500 to 3000 lines of lisp code per second
1971 (goto-char (point-min))
1974 (re-search-forward *lisp-def-regexp
*)
1975 (and (setq string
(symbol-under-point))
1976 (add-completion-to-tail-if-new string
))
1982 ;;-----------------------------------------------
1983 ;; C file completion parsing
1984 ;;-----------------------------------------------
1986 ;; Looks for #define or [<storage class>] [<type>] <name>{,<name>}
1987 ;; or structure, array or pointer defs.
1988 ;; It gets most of the definition names.
1990 ;; As you might suspect by now, we use some symbol table hackery
1992 ;; Symbol separator chars (have whitespace syntax) --> , ; * = (
1993 ;; Opening char --> [ {
1994 ;; Closing char --> ] }
1995 ;; opening and closing must be skipped over
1996 ;; Whitespace chars (have symbol syntax)
1997 ;; Everything else has word syntax
1999 (defun cmpl-make-c-def-completion-syntax-table ()
2000 (let ((table (make-syntax-table))
2001 (whitespace-chars '(? ?
\n ?
\t ?
\f ?
\v ?
\r))
2002 ;; unfortunately the ?( causes the parens to appear unbalanced
2003 (separator-chars '(?
, ?
* ?
= ?\
( ?\
;
2006 ;; default syntax is whitespace
2009 (modify-syntax-entry i
"w" table
)
2011 (dolist (char whitespace-chars
)
2012 (modify-syntax-entry char
"_" table
))
2013 (dolist (char separator-chars
)
2014 (modify-syntax-entry char
" " table
))
2015 (modify-syntax-entry ?\
[ "(]" table
)
2016 (modify-syntax-entry ?\
{ "(}" table
)
2017 (modify-syntax-entry ?\
] ")[" table
)
2018 (modify-syntax-entry ?\
} "){" table
)
2021 (defconst cmpl-c-def-syntax-table
(cmpl-make-c-def-completion-syntax-table))
2024 (defconst *c-def-regexp
*
2025 ;; This stops on lines with possible definitions
2027 ;; This stops after the symbol to add.
2028 ;;"\n\\(#define\\s +.\\|\\(\\(\\w\\|\\s_\\)+\\b\\s *\\)+[(;,[*{=]\\)"
2029 ;; This stops before the symbol to add. {Test cases in parens. below}
2030 ;;"\n\\(\\(\\w\\|\\s_\\)+\\s *(\\|\\(\\(#define\\|auto\\|extern\\|register\\|static\\|int\\|long\\|short\\|unsigned\\|char\\|void\\|float\\|double\\|enum\\|struct\\|union\\|typedef\\)\\s +\\)+\\)"
2031 ;; this simple version picks up too much extraneous stuff
2032 ;; "\n\\(\\w\\|\\s_\\|#\\)\\B"
2033 "A regexp that searches for a definition form."
2036 ;(defconst *c-cont-regexp*
2037 ; "\\(\\w\\|\\s_\\)+\\b\\s *\\({\\|\\(\\[[0-9\t ]*\\]\\s *\\)*,\\(*\\|\\s \\)*\\b\\)"
2038 ; "This regexp should be used in a looking-at to parse for lists of variables.")
2040 ;(defconst *c-struct-regexp*
2041 ; "\\(*\\|\\s \\)*\\b"
2042 ; "This regexp should be used to test whether a symbol follows a structure definition.")
2044 ;(defun test-c-def-regexp (regexp string)
2045 ; (and (eq 0 (string-match regexp string)) (match-end 0))
2049 ;; (test-c-def-regexp *c-def-regexp* "\n#define foo") -> 10 (9)
2050 ;; (test-c-def-regexp *c-def-regexp* "\nfoo (x, y) {") -> 6 (6)
2051 ;; (test-c-def-regexp *c-def-regexp* "\nint foo (x, y)") -> 10 (5)
2052 ;; (test-c-def-regexp *c-def-regexp* "\n int foo (x, y)") -> nil
2053 ;; (test-c-def-regexp *c-cont-regexp* "oo, bar") -> 4
2054 ;; (test-c-def-regexp *c-cont-regexp* "oo, *bar") -> 5
2055 ;; (test-c-def-regexp *c-cont-regexp* "a [5][6], bar") -> 10
2056 ;; (test-c-def-regexp *c-cont-regexp* "oo(x,y)") -> nil
2057 ;; (test-c-def-regexp *c-cont-regexp* "a [6] ,\t bar") -> 9
2058 ;; (test-c-def-regexp *c-cont-regexp* "oo {trout =1} my_carp;") -> 14
2059 ;; (test-c-def-regexp *c-cont-regexp* "truct_p complex foon") -> nil
2061 ;; Parses all the definition names from a C mode buffer and adds them to the
2062 ;; completion database.
2063 (defun add-completions-from-c-buffer ()
2065 ;; Sun 3/280-- 1250 lines/sec.
2067 (let (string next-point char
2068 (saved-syntax (syntax-table))
2071 (goto-char (point-min))
2072 (catch 'finish-add-completions
2075 ;; we loop here only when scan-sexps fails
2076 ;; (i.e. unbalance exps.)
2077 (set-syntax-table cmpl-c-def-syntax-table
)
2080 (re-search-forward *c-def-regexp
*)
2082 ((= (preceding-char) ?
#)
2083 ;; preprocessor macro, see if it's one we handle
2084 (setq string
(buffer-substring (point) (+ (point) 6)))
2085 (cond ((or (string-equal string
"define")
2086 (string-equal string
"ifdef ")
2088 ;; skip forward over definition symbol
2089 ;; and add it to database
2090 (and (forward-word 2)
2091 (setq string
(symbol-before-point))
2093 (add-completion-to-tail-if-new string
)
2097 (setq next-point
(point))
2100 ;; scan to next separator char.
2101 (setq next-point
(scan-sexps next-point
1))
2103 ;; position the point on the word we want to add
2104 (goto-char next-point
)
2105 (while (= (setq char
(following-char)) ?
*)
2106 ;; handle pointer ref
2107 ;; move to next separator char.
2109 (setq next-point
(scan-sexps (point) 1)))
2113 (if (setq string
(symbol-under-point))
2114 ;; (push string foo)
2115 (add-completion-to-tail-if-new string
)
2116 ;; Local TMC hack (useful for parsing paris.h)
2117 (if (and (looking-at "_AP") ;; "ansi prototype"
2121 (symbol-under-point))
2123 (add-completion-to-tail-if-new string
)
2127 (goto-char next-point
)
2128 ;; (push (format "%c" (following-char)) foo)
2129 (if (= (char-syntax char
) ?\
()
2130 ;; if on an opening delimiter, go to end
2131 (while (= (char-syntax char
) ?\
()
2132 (setq next-point
(scan-sexps next-point
1)
2133 char
(char-after next-point
))
2136 ;; Current char is an end char.
2137 (setq next-point nil
)
2140 (search-failed ;;done
2141 (throw 'finish-add-completions t
)
2144 ;; Check for failure in scan-sexps
2145 (if (or (string-equal (nth 1 e
)
2146 "Containing expression ends prematurely")
2147 (string-equal (nth 1 e
) "Unbalanced parentheses"))
2148 ;; unbalanced paren., keep going
2151 (message "Error parsing C buffer for completions--please send bug report")
2152 (throw 'finish-add-completions t
)
2155 (set-syntax-table saved-syntax
)
2159 ;;---------------------------------------------------------------------------
2161 ;;---------------------------------------------------------------------------
2163 ;; The version of save-completions-to-file called at kill-emacs time.
2164 (defun kill-emacs-save-completions ()
2165 (if (and save-completions-flag enable-completion cmpl-initialized-p
)
2167 ((not cmpl-completions-accepted-p
)
2168 (message "Completions database has not changed - not writing."))
2170 (save-completions-to-file)))))
2172 ;; There is no point bothering to change this again
2173 ;; unless the package changes so much that it matters
2174 ;; for people that have saved completions.
2175 (defconst completion-version
"11")
2177 (defconst saved-cmpl-file-header
2178 ";;; Completion Initialization file.
2180 ;; Format is (<string> . <last-use-time>)
2181 ;; <string> is the completion
2182 ;; <last-use-time> is the time the completion was last used
2183 ;; If it is t, the completion will never be pruned from the file.
2184 ;; Otherwise it is in hours since origin.
2187 (defun completion-backup-filename (filename)
2188 (concat filename
".BAK"))
2190 (defun save-completions-to-file (&optional filename
)
2191 "Save completions in init file FILENAME.
2192 If file name is not specified, use `save-completions-file-name'."
2194 (setq filename
(expand-file-name (or filename save-completions-file-name
)))
2195 (if (file-writable-p filename
)
2197 (if (not cmpl-initialized-p
)
2198 (initialize-completions));; make sure everything's loaded
2199 (message "Saving completions to file %s" filename
)
2201 (let* ((delete-old-versions t
)
2202 (kept-old-versions 0)
2203 (kept-new-versions completions-file-versions-kept
)
2205 (current-time (cmpl-hours-since-origin))
2209 (backup-filename (completion-backup-filename filename
))
2213 (get-buffer-create " *completion-save-buffer*")
2214 (set-buffer " *completion-save-buffer*")
2215 (setq buffer-file-name filename
)
2217 (if (not (verify-visited-file-modtime (current-buffer)))
2219 ;; file has changed on disk. Bring us up-to-date
2220 (message "Completion file has changed. Merging. . .")
2221 (load-completions-from-file filename t
)
2222 (message "Merging finished. Saving completions to file %s" filename
)))
2224 ;; prepare the buffer to be modified
2225 (clear-visited-file-modtime)
2228 (insert (format saved-cmpl-file-header completion-version
))
2229 (dolist (completion (list-all-completions))
2230 (setq total-in-db
(1+ total-in-db
))
2231 (setq last-use-time
(completion-last-use-time completion
))
2232 ;; Update num uses and maybe write completion to a file
2233 (cond ((or;; Write to file if
2235 (and (eq last-use-time t
)
2236 (setq total-perm
(1+ total-perm
)))
2238 (if (> (completion-num-uses completion
) 0)
2240 (setq last-use-time current-time
)
2241 ;; or it was saved before and
2243 ;; save-completions-retention-time is nil
2244 (or (not save-completions-retention-time
)
2245 ;; or time since last use is < ...retention-time*
2246 (< (- current-time last-use-time
)
2247 save-completions-retention-time
))
2250 (setq total-saved
(1+ total-saved
))
2251 (insert (prin1-to-string (cons (completion-string completion
)
2252 last-use-time
)) "\n")
2257 (let ((file-exists-p (file-exists-p filename
)))
2260 ;; If file exists . . .
2261 ;; Save a backup(so GNU doesn't screw us when we're out of disk)
2262 ;; (GNU leaves a 0 length file if it gets a disk full error!)
2264 ;; If backup doesn't exit, Rename current to backup
2265 ;; {If backup exists the primary file is probably messed up}
2266 (or (file-exists-p backup-filename
)
2267 (rename-file filename backup-filename
))
2268 ;; Copy the backup back to the current name
2269 ;; (so versioning works)
2270 (copy-file backup-filename filename t
)))
2274 ;; If successful, remove backup
2275 (delete-file backup-filename
)))
2277 (set-buffer-modified-p nil
)
2278 (message "Couldn't save completion file `%s'" filename
)
2280 ;; Reset accepted-p flag
2281 (setq cmpl-completions-accepted-p nil
)
2283 (cmpl-statistics-block
2284 (record-save-completions total-in-db total-perm total-saved
))
2287 ;;(defun auto-save-completions ()
2288 ;; (if (and save-completions-flag enable-completion cmpl-initialized-p
2289 ;; *completion-auto-save-period*
2290 ;; (> cmpl-emacs-idle-time *completion-auto-save-period*)
2291 ;; cmpl-completions-accepted-p)
2292 ;; (save-completions-to-file)))
2294 ;;(add-hook 'cmpl-emacs-idle-time-hooks 'auto-save-completions)
2296 (defun load-completions-from-file (&optional filename no-message-p
)
2297 "Loads a completion init file FILENAME.
2298 If file is not specified, then use `save-completions-file-name'."
2300 (setq filename
(expand-file-name (or filename save-completions-file-name
)))
2301 (let* ((backup-filename (completion-backup-filename filename
))
2302 (backup-readable-p (file-readable-p backup-filename
))
2304 (if backup-readable-p
(setq filename backup-filename
))
2305 (if (file-readable-p filename
)
2307 (if (not no-message-p
)
2308 (message "Loading completions from %sfile %s . . ."
2309 (if backup-readable-p
"backup " "") filename
))
2311 (get-buffer-create " *completion-save-buffer*")
2312 (set-buffer " *completion-save-buffer*")
2313 (setq buffer-file-name filename
)
2314 ;; prepare the buffer to be modified
2315 (clear-visited-file-modtime)
2318 (let ((insert-okay-p nil
)
2319 (buffer (current-buffer))
2320 (current-time (cmpl-hours-since-origin))
2321 string num-uses entry last-use-time
2322 cmpl-entry cmpl-last-use-time
2323 (current-completion-source cmpl-source-init-file
)
2325 (cmpl-statistics-block
2326 (aref completion-add-count-vector cmpl-source-file-parsing
)))
2327 (total-in-file 0) (total-perm 0)
2329 ;; insert the file into a buffer
2331 (progn (insert-file-contents filename t
)
2332 (setq insert-okay-p t
))
2335 (message "File error trying to load completion file %s."
2340 (goto-char (point-min))
2344 (setq entry
(read buffer
))
2345 (setq total-in-file
(1+ total-in-file
))
2348 (stringp (setq string
(car entry
)))
2350 ((eq (setq last-use-time
(cdr entry
)) 'T
)
2351 ;; handle case sensitivity
2352 (setq total-perm
(1+ total-perm
))
2353 (setq last-use-time t
))
2354 ((eq last-use-time t
)
2355 (setq total-perm
(1+ total-perm
)))
2356 ((integerp last-use-time
))
2360 (setq cmpl-last-use-time
2361 (completion-last-use-time
2363 (add-completion-to-tail-if-new string
))
2365 (if (or (eq last-use-time t
)
2366 (and (> last-use-time
1000);;backcompatibility
2367 (not (eq cmpl-last-use-time t
))
2368 (or (not cmpl-last-use-time
)
2370 (> last-use-time cmpl-last-use-time
))
2372 ;; update last-use-time
2373 (set-completion-last-use-time cmpl-entry last-use-time
)
2377 (message "Error: invalid saved completion - %s"
2378 (prin1-to-string entry
))
2379 ;; try to get back in sync
2380 (search-forward "\n(")
2383 (message "End of file while reading completions.")
2386 (if (= (point) (point-max))
2387 (if (not no-message-p
)
2388 (message "Loading completions from file %s . . . Done."
2390 (message "End of file while reading completions.")
2394 (cmpl-statistics-block
2395 (record-load-completions
2396 total-in-file total-perm
2397 (- (aref completion-add-count-vector cmpl-source-init-file
)
2402 (defun initialize-completions ()
2403 "Load the default completions file.
2404 Also sets up so that exiting emacs will automatically save the file."
2406 (cond ((not cmpl-initialized-p
)
2407 (load-completions-from-file)
2409 (setq cmpl-initialized-p t
)
2412 ;;-----------------------------------------------
2413 ;; Kill region patch
2414 ;;-----------------------------------------------
2416 (defun completion-kill-region (&optional beg end
)
2417 "Kill between point and mark.
2418 The text is deleted but saved in the kill ring.
2419 The command \\[yank] can retrieve it from there.
2420 /(If you want to kill and then yank immediately, use \\[copy-region-as-kill].)
2422 This is the primitive for programs to kill text (as opposed to deleting it).
2423 Supply two arguments, character numbers indicating the stretch of text
2425 Any command that calls this function is a \"kill command\".
2426 If the previous command was also a kill command,
2427 the text killed this time appends to the text killed last time
2428 to make one entry in the kill ring.
2429 Patched to remove the most recent completion."
2431 (cond ((eq last-command
'complete
)
2432 (delete-region (point) cmpl-last-insert-location
)
2433 (insert cmpl-original-string
)
2434 (setq completion-to-accept nil
)
2435 (cmpl-statistics-block
2436 (record-complete-failed)))
2438 (kill-region beg end
))))
2441 ;;-----------------------------------------------
2442 ;; Patches to self-insert-command.
2443 ;;-----------------------------------------------
2445 ;; Need 2 versions: generic separator chars. and space (to get auto fill
2448 ;; All common separators (eg. space "(" ")" """) characters go through a
2449 ;; function to add new words to the list of words to complete from:
2450 ;; COMPLETION-SEPARATOR-SELF-INSERT-COMMAND (arg).
2451 ;; If the character before this was an alpha-numeric then this adds the
2452 ;; symbol before point to the completion list (using ADD-COMPLETION).
2454 (defun completion-separator-self-insert-command (arg)
2456 (use-completion-before-separator)
2457 (self-insert-command arg
)
2460 (defun completion-separator-self-insert-autofilling (arg)
2462 (use-completion-before-separator)
2463 (self-insert-command arg
)
2464 (and auto-fill-function
2465 (funcall auto-fill-function
))
2468 ;;-----------------------------------------------
2470 ;;-----------------------------------------------
2472 ;; Note that because of the way byte compiling works, none of
2473 ;; the functions defined with this macro get byte compiled.
2475 (defmacro def-completion-wrapper
(function-name type
&optional new-name
)
2476 "Add a call to update the completion database before function execution.
2477 TYPE is the type of the wrapper to be added. Can be :before or :under."
2478 (cond ((eq type
':separator
)
2479 (list 'put
(list 'quote function-name
) ''completion-function
2480 ''use-completion-before-separator
))
2482 (list 'put
(list 'quote function-name
) ''completion-function
2483 ''use-completion-before-point
))
2484 ((eq type
':backward-under
)
2485 (list 'put
(list 'quote function-name
) ''completion-function
2486 ''use-completion-backward-under
))
2487 ((eq type
':backward
)
2488 (list 'put
(list 'quote function-name
) ''completion-function
2489 ''use-completion-backward
))
2491 (list 'put
(list 'quote function-name
) ''completion-function
2492 ''use-completion-under-point
))
2493 ((eq type
':under-or-before
)
2494 (list 'put
(list 'quote function-name
) ''completion-function
2495 ''use-completion-under-or-before-point
))
2496 ((eq type
':minibuffer-separator
)
2497 (list 'put
(list 'quote function-name
) ''completion-function
2498 ''use-completion-minibuffer-separator
))))
2500 (defun use-completion-minibuffer-separator ()
2501 (let ((cmpl-syntax-table cmpl-standard-syntax-table
))
2502 (use-completion-before-separator)))
2504 (defun use-completion-backward-under ()
2505 (use-completion-under-point)
2506 (if (eq last-command
'complete
)
2507 ;; probably a failed completion if you have to back up
2508 (cmpl-statistics-block (record-complete-failed))))
2510 (defun use-completion-backward ()
2511 (if (eq last-command
'complete
)
2512 ;; probably a failed completion if you have to back up
2513 (cmpl-statistics-block (record-complete-failed))))
2515 (defun completion-before-command ()
2516 (funcall (or (and (symbolp this-command
)
2517 (get this-command
'completion-function
))
2518 'use-completion-under-or-before-point
)))
2521 (defun completion-c-mode-hook ()
2522 (def-completion-wrapper electric-c-semi
:separator
)
2523 (define-key c-mode-map
"+" 'completion-separator-self-insert-command
)
2524 (define-key c-mode-map
"*" 'completion-separator-self-insert-command
)
2525 (define-key c-mode-map
"/" 'completion-separator-self-insert-command
))
2526 ;; Do this either now or whenever C mode is loaded.
2527 (if (featurep 'cc-mode
)
2528 (completion-c-mode-hook)
2529 (add-hook 'c-mode-hook
'completion-c-mode-hook
))
2531 ;; FORTRAN mode diffs. (these are defined when fortran is called)
2532 (defun completion-setup-fortran-mode ()
2533 (define-key fortran-mode-map
"+" 'completion-separator-self-insert-command
)
2534 (define-key fortran-mode-map
"-" 'completion-separator-self-insert-command
)
2535 (define-key fortran-mode-map
"*" 'completion-separator-self-insert-command
)
2536 (define-key fortran-mode-map
"/" 'completion-separator-self-insert-command
)
2539 ;;; Enable completion mode.
2542 (defun dynamic-completion-mode ()
2543 "Enable dynamic word-completion."
2545 (add-hook 'find-file-hooks
'cmpl-find-file-hook
)
2546 (add-hook 'pre-command-hook
'completion-before-command
)
2548 ;; Install the appropriate mode tables.
2549 (add-hook 'lisp-mode-hook
2551 (setq cmpl-syntax-table cmpl-lisp-syntax-table
)))
2552 (add-hook 'c-mode-hook
2554 (setq cmpl-syntax-table cmpl-c-syntax-table
)))
2555 (add-hook 'fortran-mode-hook
2557 (setq cmpl-syntax-table cmpl-fortran-syntax-table
)
2558 (completion-setup-fortran-mode)))
2560 ;; "Complete" Key Keybindings.
2562 (global-set-key "\M-\r" 'complete
)
2563 (global-set-key [?\C-
\r] 'complete
)
2564 (define-key function-key-map
[C-return
] [?\C-
\r])
2567 ;; (add-completion "cumberland")
2568 ;; (add-completion "cumberbund")
2574 ;; Save completions when killing Emacs.
2576 (add-hook 'kill-emacs-hook
2578 (kill-emacs-save-completions)
2579 (cmpl-statistics-block
2580 (record-cmpl-kill-emacs))))
2582 ;; Patches to standard keymaps insert completions
2583 (substitute-key-definition 'kill-region
'completion-kill-region
2587 ;; We've used the completion syntax table given as a guide.
2589 ;; Global separator chars.
2590 ;; We left out <tab> because there are too many special cases for it. Also,
2591 ;; in normal coding it's rarely typed after a word.
2592 (global-set-key " " 'completion-separator-self-insert-autofilling
)
2593 (global-set-key "!" 'completion-separator-self-insert-command
)
2594 (global-set-key "%" 'completion-separator-self-insert-command
)
2595 (global-set-key "^" 'completion-separator-self-insert-command
)
2596 (global-set-key "&" 'completion-separator-self-insert-command
)
2597 (global-set-key "(" 'completion-separator-self-insert-command
)
2598 (global-set-key ")" 'completion-separator-self-insert-command
)
2599 (global-set-key "=" 'completion-separator-self-insert-command
)
2600 (global-set-key "`" 'completion-separator-self-insert-command
)
2601 (global-set-key "|" 'completion-separator-self-insert-command
)
2602 (global-set-key "{" 'completion-separator-self-insert-command
)
2603 (global-set-key "}" 'completion-separator-self-insert-command
)
2604 (global-set-key "[" 'completion-separator-self-insert-command
)
2605 (global-set-key "]" 'completion-separator-self-insert-command
)
2606 (global-set-key ";" 'completion-separator-self-insert-command
)
2607 (global-set-key "\"" 'completion-separator-self-insert-command
)
2608 (global-set-key "'" 'completion-separator-self-insert-command
)
2609 (global-set-key "#" 'completion-separator-self-insert-command
)
2610 (global-set-key "," 'completion-separator-self-insert-command
)
2611 (global-set-key "?" 'completion-separator-self-insert-command
)
2613 ;; We include period and colon even though they are symbol chars because :
2614 ;; - in text we want to pick up the last word in a sentence.
2615 ;; - in C pointer refs. we want to pick up the first symbol
2616 ;; - it won't make a difference for lisp mode (package names are short)
2617 (global-set-key "." 'completion-separator-self-insert-command
)
2618 (global-set-key ":" 'completion-separator-self-insert-command
)
2621 (define-key lisp-mode-map
"!" 'self-insert-command
)
2622 (define-key lisp-mode-map
"&" 'self-insert-command
)
2623 (define-key lisp-mode-map
"%" 'self-insert-command
)
2624 (define-key lisp-mode-map
"?" 'self-insert-command
)
2625 (define-key lisp-mode-map
"=" 'self-insert-command
)
2626 (define-key lisp-mode-map
"^" 'self-insert-command
)
2630 (defvar fortran-mode-map
)
2632 ;;-----------------------------------------------
2633 ;; End of line chars.
2634 ;;-----------------------------------------------
2635 (def-completion-wrapper newline
:separator
)
2636 (def-completion-wrapper newline-and-indent
:separator
)
2637 (def-completion-wrapper comint-send-input
:separator
)
2638 (def-completion-wrapper exit-minibuffer
:minibuffer-separator
)
2639 (def-completion-wrapper eval-print-last-sexp
:separator
)
2640 (def-completion-wrapper eval-last-sexp
:separator
)
2641 ;;(def-completion-wrapper minibuffer-complete-and-exit :minibuffer)
2643 ;;-----------------------------------------------
2645 ;;-----------------------------------------------
2647 (def-completion-wrapper next-line
:under-or-before
)
2648 (def-completion-wrapper previous-line
:under-or-before
)
2649 (def-completion-wrapper beginning-of-buffer
:under-or-before
)
2650 (def-completion-wrapper end-of-buffer
:under-or-before
)
2651 (def-completion-wrapper beginning-of-line
:under-or-before
)
2652 (def-completion-wrapper end-of-line
:under-or-before
)
2653 (def-completion-wrapper forward-char
:under-or-before
)
2654 (def-completion-wrapper forward-word
:under-or-before
)
2655 (def-completion-wrapper forward-sexp
:under-or-before
)
2656 (def-completion-wrapper backward-char
:backward-under
)
2657 (def-completion-wrapper backward-word
:backward-under
)
2658 (def-completion-wrapper backward-sexp
:backward-under
)
2660 (def-completion-wrapper delete-backward-char
:backward
)
2661 (def-completion-wrapper delete-backward-char-untabify
:backward
)
2669 (cmpl-statistics-block
2670 (record-completion-file-loaded))
2672 (initialize-completions))
2674 (provide 'completion
)
2676 ;;; completion.el ends here