1 ;;; completion.el --- dynamic word-completion code
3 ;; Copyright (C) 1990, 1993, 1995, 1997, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
7 ;; Keywords: abbrev convenience
8 ;; Author: Jim Salem <alem@bbnplanet.com> of Thinking Machines Inc.
9 ;; (ideas suggested by Brewster Kahle)
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28 ;; What to put in .emacs
29 ;;-----------------------
30 ;; (dynamic-completion-mode)
32 ;;---------------------------------------------------------------------------
33 ;; Documentation [Slightly out of date]
34 ;;---------------------------------------------------------------------------
35 ;; (also check the documentation string of the functions)
40 ;; After you type a few characters, pressing the "complete" key inserts
41 ;; the rest of the word you are likely to type.
43 ;; This watches all the words that you type and remembers them. When
44 ;; typing a new word, pressing "complete" (meta-return) "completes" the
45 ;; word by inserting the most recently used word that begins with the
46 ;; same characters. If you press meta-return repeatedly, it cycles
47 ;; through all the words it knows about.
49 ;; If you like the completion then just continue typing, it is as if you
50 ;; entered the text by hand. If you want the inserted extra characters
51 ;; to go away, type control-w or delete. More options are described below.
53 ;; The guesses are made in the order of the most recently "used". Typing
54 ;; in a word and then typing a separator character (such as a space) "uses"
55 ;; the word. So does moving a cursor over the word. If no words are found,
56 ;; it uses an extended version of the dabbrev style completion.
58 ;; You automatically save the completions you use to a file between
61 ;; Completion enables programmers to enter longer, more descriptive
62 ;; variable names while typing fewer keystrokes than they normally would.
66 ;;---------------------
68 ;; A "word" is any string containing characters with either word or symbol
69 ;; syntax. [E.G. Any alphanumeric string with hyphens, underscores, etc.]
70 ;; Unless you change the constants, you must type at least three characters
71 ;; for the word to be recognized. Only words longer than 6 characters are
74 ;; When you load this file, completion will be on. I suggest you use the
75 ;; compiled version (because it is noticeably faster).
77 ;; M-x completion-mode toggles whether or not new words are added to the
78 ;; database by changing the value of enable-completion.
80 ;; SAVING/LOADING COMPLETIONS
81 ;; Completions are automatically saved from one session to another
82 ;; (unless save-completions-flag or enable-completion is nil).
83 ;; Activating this minor-mode (calling completion-initialize) loads
84 ;; a completions database for a saved completions file
85 ;; (default: ~/.completions). When you exit, Emacs saves a copy of the
86 ;; completions that you often use. When you next start, Emacs loads in
87 ;; the saved completion file.
89 ;; The number of completions saved depends loosely on
90 ;; *saved-completions-decay-factor*. Completions that have never been
91 ;; inserted via "complete" are not saved. You are encouraged to experiment
92 ;; with different functions (see compute-completion-min-num-uses).
94 ;; Some completions are permanent and are always saved out. These
95 ;; completions have their num-uses slot set to T. Use
96 ;; add-permanent-completion to do this
98 ;; Completions are saved only if enable-completion is T. The number of old
99 ;; versions kept of the saved completions file is controlled by
100 ;; completions-file-versions-kept.
102 ;; COMPLETE KEY OPTIONS
103 ;; The complete function takes a numeric arguments.
104 ;; control-u :: leave the point at the beginning of the completion rather
106 ;; a number :: rotate through the possible completions by that amount
107 ;; `-' :: same as -1 (insert previous completion)
109 ;; HOW THE DATABASE IS MAINTAINED
112 ;; UPDATING THE DATABASE MANUALLY
113 ;; m-x kill-completion
114 ;; kills the completion at point.
115 ;; m-x add-completion
116 ;; m-x add-permanent-completion
118 ;; UPDATING THE DATABASE FROM A SOURCE CODE FILE
119 ;; m-x add-completions-from-buffer
120 ;; Parses all the definition names from a C or LISP mode buffer and
121 ;; adds them to the completion database.
123 ;; m-x add-completions-from-lisp-file
124 ;; Parses all the definition names from a C or Lisp mode file and
125 ;; adds them to the completion database.
127 ;; UPDATING THE DATABASE FROM A TAGS TABLE
128 ;; m-x add-completions-from-tags-table
129 ;; Adds completions from the current tags-table-buffer.
131 ;; HOW A COMPLETION IS FOUND
135 ;; Completion is string case independent if case-fold-search has its
136 ;; normal default of T. Also when the completion is inserted the case of the
137 ;; entry is coerced appropriately.
138 ;; [E.G. APP --> APPROPRIATELY app --> appropriately
139 ;; App --> Appropriately]
142 ;; The form `(completion-initialize)' initializes the completion system by
143 ;; trying to load in the user's completions. After the first call, further
144 ;; calls have no effect so one should be careful not to put the form in a
145 ;; site's standard site-init file.
147 ;;---------------------------------------------------------------------------
151 ;;---------------------------------------------------------------------------
152 ;; Functions you might like to call
153 ;;---------------------------------------------------------------------------
155 ;; add-completion string &optional num-uses
156 ;; Adds a new string to the database
158 ;; add-permanent-completion string
159 ;; Adds a new string to the database with num-uses = T
162 ;; kill-completion string
163 ;; Kills the completion from the database.
165 ;; clear-all-completions
166 ;; Clears the database
168 ;; list-all-completions
169 ;; Returns a list of all completions.
172 ;; next-completion string &optional index
173 ;; Returns a completion entry that starts with string.
175 ;; find-exact-completion string
176 ;; Returns a completion entry that exactly matches string.
179 ;; Inserts a completion at point
181 ;; completion-initialize
182 ;; Loads the completions file and sets up so that exiting emacs will
185 ;; save-completions-to-file &optional filename
186 ;; load-completions-from-file &optional filename
188 ;;-----------------------------------------------
190 ;;-----------------------------------------------
192 ;; get-completion-list string
194 ;; These things are for manipulating the structure
195 ;; make-completion string num-uses
196 ;; completion-num-uses completion
197 ;; completion-string completion
198 ;; set-completion-num-uses completion num-uses
199 ;; set-completion-string completion string
203 ;;-----------------------------------------------
204 ;; To Do :: (anybody ?)
205 ;;-----------------------------------------------
207 ;; Implement Lookup and keyboard interface in C
208 ;; Add package prefix smarts (for Common Lisp)
209 ;; Add autoprompting of possible completions after every keystroke (fast
211 ;; Add doc. to texinfo
214 ;;-----------------------------------------------
216 ;;-----------------------------------------------
217 ;; Sometime in '84 Brewster implemented a somewhat buggy version for
219 ;; Jan. '85 Jim became enamored of the idea and implemented a faster,
220 ;; more robust version.
221 ;; With input from many users at TMC, (rose, craig, and gls come to mind),
222 ;; the current style of interface was developed.
223 ;; 9/87, Jim and Brewster took terminals home. Yuck. After
224 ;; complaining for a while Brewster implemented a subset of the current
225 ;; LISPM version for GNU Emacs.
226 ;; 8/88 After complaining for a while (and with sufficient
227 ;; promised rewards), Jim reimplemented a version of GNU completion
228 ;; superior to that of the LISPM version.
230 ;;-----------------------------------------------
232 ;;-----------------------------------------------
233 ;; Cliff Lasser (cal@think.com), Kevin Herbert (kph@cisco.com),
234 ;; eero@media-lab, kgk@cs.brown.edu, jla@ai.mit.edu,
236 ;;-----------------------------------------------
238 ;;-----------------------------------------------
239 ;; From version 9 to 10
240 ;; - Allowance for non-integral *completion-version* nos.
241 ;; - Fix cmpl-apply-as-top-level for keyboard macros
242 ;; - Fix broken completion merging (in save-completions-to-file)
243 ;; - More misc. fixes for version 19.0 of emacs
245 ;; From Version 8 to 9
246 ;; - Ported to version 19.0 of emacs (backcompatible with version 18)
247 ;; - Added add-completions-from-tags-table (with thanks to eero@media-lab)
249 ;; From Version 7 to 8
250 ;; - Misc. changes to comments
251 ;; - new completion key bindings: c-x o, M->, M-<, c-a, c-e
252 ;; - cdabbrev now checks all the visible window buffers and the "other buffer"
253 ;; - `%' is now a symbol character rather than a separator (except in C mode)
255 ;; From Version 6 to 7
256 ;; - Fixed bug with saving out .completion file the first time
258 ;; From Version 5 to 6
259 ;; - removed statistics recording
260 ;; - reworked advise to handle autoloads
261 ;; - Fixed fortran mode support
262 ;; - Added new cursor motion triggers
264 ;; From Version 4 to 5
265 ;; - doesn't bother saving if nothing has changed
266 ;; - auto-save if haven't used for a 1/2 hour
267 ;; - save period extended to two weeks
268 ;; - minor fix to capitalization code
269 ;; - added *completion-auto-save-period* to variables recorded.
270 ;; - added reenter protection to cmpl-record-statistics-filter
271 ;; - added backup protection to save-completions-to-file (prevents
272 ;; problems with disk full errors)
276 ;;---------------------------------------------------------------------------
277 ;; User changeable parameters
278 ;;---------------------------------------------------------------------------
280 (defgroup completion nil
281 "Dynamic word-completion code."
286 (defcustom enable-completion t
287 "Non-nil means enable recording and saving of completions.
288 If nil, no new words are added to the database or saved to the init file."
292 (defcustom save-completions-flag t
293 "Non-nil means save most-used completions when exiting Emacs.
294 See also `save-completions-retention-time'."
298 (defcustom save-completions-file-name
299 (let ((olddef (convert-standard-filename "~/.completions")))
301 ((file-readable-p olddef
) olddef
)
302 ((file-directory-p user-emacs-directory
)
303 (convert-standard-filename
304 (expand-file-name "completions" user-emacs-directory
)))
306 "The filename to save completions to."
310 (defcustom save-completions-retention-time
336
311 "Discard a completion if unused for this many hours.
312 \(1 day = 24, 1 week = 168). If this is 0, non-permanent completions
313 will not be saved unless these are used. Default is two weeks."
317 (defcustom completion-on-separator-character nil
318 "Non-nil means separator characters mark previous word as used.
319 This means the word will be saved as a completion."
323 (defcustom completions-file-versions-kept kept-new-versions
324 "Number of versions to keep for the saved completions file."
328 (defcustom completion-prompt-speed-threshold
4800
329 "Minimum output speed at which to display next potential completion."
333 (defcustom completion-cdabbrev-prompt-flag nil
334 "If non-nil, the next completion prompt does a cdabbrev search.
335 This can be time consuming."
339 (defcustom completion-search-distance
15000
340 "How far to search in the buffer when looking for completions.
341 In number of characters. If nil, search the whole buffer."
345 (defcustom completions-merging-modes
'(lisp c
)
346 "List of modes {`c' or `lisp'} for automatic completions merging.
347 Definitions from visited files which have these modes
348 are automatically added to the completion database."
349 :type
'(set (const lisp
) (const c
))
352 ;;(defvar *record-cmpl-statistics-p* nil
353 ;; "*If non-nil, record completion statistics.")
355 ;;(defvar *completion-auto-save-period* 1800
356 ;; "*The period in seconds to wait for emacs to be idle before autosaving
357 ;;the completions. Default is a 1/2 hour.")
359 (defvar completion-min-length
6
360 "*The minimum length of a stored completion.
361 DON'T CHANGE WITHOUT RECOMPILING ! This is used by macros.")
363 (defvar completion-max-length
200
364 "*The maximum length of a stored completion.
365 DON'T CHANGE WITHOUT RECOMPILING ! This is used by macros.")
367 (defvar completion-prefix-min-length
3
368 "The minimum length of a completion search string.
369 DON'T CHANGE WITHOUT RECOMPILING ! This is used by macros.")
371 ;;---------------------------------------------------------------------------
372 ;; Internal Variables
373 ;;---------------------------------------------------------------------------
375 (defvar cmpl-initialized-p nil
376 "Set to t when the completion system is initialized.
377 Indicates that the old completion file has been read in.")
379 (defvar cmpl-completions-accepted-p nil
380 "Set to t as soon as the first completion has been accepted.
381 Used to decide whether to save completions.")
383 (defvar cmpl-preceding-syntax
)
385 (defvar completion-string
)
387 ;;---------------------------------------------------------------------------
389 ;;---------------------------------------------------------------------------
391 ;;-----------------------------------------------
392 ;; String case coercion
393 ;;-----------------------------------------------
395 (defun cmpl-string-case-type (string)
396 "Return :capitalized, :up, :down, :mixed, or :neither for case of STRING."
397 (let ((case-fold-search nil
))
398 (cond ((string-match "[[:lower:]]" string
)
399 (cond ((string-match "[[:upper:]]" string
)
400 (cond ((and (> (length string
) 1)
401 (null (string-match "[[:upper:]]" string
1)))
407 (cond ((string-match "[[:upper:]]" string
)
412 ;; (cmpl-string-case-type "123ABCDEF456") --> :up
413 ;; (cmpl-string-case-type "123abcdef456") --> :down
414 ;; (cmpl-string-case-type "123aBcDeF456") --> :mixed
415 ;; (cmpl-string-case-type "123456") --> :neither
416 ;; (cmpl-string-case-type "Abcde123") --> :capitalized
418 (defun cmpl-coerce-string-case (string case-type
)
419 (cond ((eq case-type
:down
) (downcase string
))
420 ((eq case-type
:up
) (upcase string
))
421 ((eq case-type
:capitalized
)
422 (setq string
(downcase string
))
423 (aset string
0 (logand ?
\337 (aref string
0)))
427 (defun cmpl-merge-string-cases (string-to-coerce given-string
)
428 (let ((string-case-type (cmpl-string-case-type string-to-coerce
)))
429 (cond ((memq string-case-type
'(:down
:up
:capitalized
))
430 ;; Found string is in a standard case. Coerce to a type based on
432 (cmpl-coerce-string-case string-to-coerce
433 (cmpl-string-case-type given-string
)))
435 ;; If the found string is in some unusual case, just insert it
440 ;; (cmpl-merge-string-cases "AbCdEf456" "abc") --> AbCdEf456
441 ;; (cmpl-merge-string-cases "abcdef456" "ABC") --> ABCDEF456
442 ;; (cmpl-merge-string-cases "ABCDEF456" "Abc") --> Abcdef456
443 ;; (cmpl-merge-string-cases "ABCDEF456" "abc") --> abcdef456
446 (defun cmpl-hours-since-origin ()
447 (let ((time (current-time)))
448 (floor (+ (* 65536.0 (nth 0 time
)) (nth 1 time
)) 3600)))
450 ;;---------------------------------------------------------------------------
451 ;; "Symbol" parsing functions
452 ;;---------------------------------------------------------------------------
453 ;; The functions symbol-before-point, symbol-under-point, etc. quickly return
454 ;; an appropriate symbol string. The strategy is to temporarily change
455 ;; the syntax table to enable fast symbol searching. There are three classes
456 ;; of syntax in these "symbol" syntax tables ::
458 ;; syntax (?_) - "symbol" chars (e.g. alphanumerics)
459 ;; syntax (?w) - symbol chars to ignore at end of words (e.g. period).
460 ;; syntax (? ) - everything else
462 ;; Thus by judicious use of scan-sexps and forward-word, we can get
463 ;; the word we want relatively fast and without consing.
465 ;; Why do we need a separate category for "symbol chars to ignore at ends" ?
466 ;; For example, in LISP we want starting :'s trimmed
467 ;; so keyword argument specifiers also define the keyword completion. And,
468 ;; for example, in C we want `.' appearing in a structure ref. to
469 ;; be kept intact in order to store the whole structure ref.; however, if
470 ;; it appears at the end of a symbol it should be discarded because it is
471 ;; probably used as a period.
473 ;; Here is the default completion syntax ::
474 ;; Symbol chars :: A-Z a-z 0-9 @ / \ * + ~ $ < > %
475 ;; Symbol chars to ignore at ends :: _ : . -
476 ;; Separator chars. :: <tab> <space> ! ^ & ( ) = ` | { } [ ] ; " ' #
477 ;; , ? <Everything else>
479 ;; Mode specific differences and notes ::
481 ;; Symbol chars :: ! & ? = ^
484 ;; Separator chars :: + * / : %
485 ;; A note on the hyphen (`-'). Perhaps the hyphen should also be a separator
486 ;; char., however, we wanted to have completion symbols include pointer
487 ;; references. For example, "foo->bar" is a symbol as far as completion is
491 ;; Separator chars :: + - * / :
495 ;; Of course there is no pathname "mode" and in fact we have not implemented
496 ;; this table. However, if there was such a mode, this is what it would look
499 ;;-----------------------------------------------
501 ;;-----------------------------------------------
503 (defconst completion-standard-syntax-table
504 (let ((table (make-syntax-table))
506 ;; Default syntax is whitespace.
509 (modify-syntax-entry i
" " table
)
514 (modify-syntax-entry (+ ?a i
) "_" table
)
515 (modify-syntax-entry (+ ?A i
) "_" table
)
520 (modify-syntax-entry (+ ?
0 i
) "_" table
)
523 (let ((symbol-chars '(?
@ ?
/ ?
\\ ?
* ?
+ ?~ ?$ ?
< ?
> ?%
))
524 (symbol-chars-ignore '(?_ ?- ?
: ?.
)))
525 (dolist (char symbol-chars
)
526 (modify-syntax-entry char
"_" table
))
527 (dolist (char symbol-chars-ignore
)
528 (modify-syntax-entry char
"w" table
)))
531 (defvar completion-syntax-table completion-standard-syntax-table
532 "This variable holds the current completion syntax table.")
533 (make-variable-buffer-local 'completion-syntax-table
)
535 ;;-----------------------------------------------
537 ;;-----------------------------------------------
538 (defvar cmpl-symbol-start nil
539 "Holds first character of symbol, after any completion symbol function.")
540 (defvar cmpl-symbol-end nil
541 "Holds last character of symbol, after any completion symbol function.")
543 (defun symbol-under-point ()
544 "Return the symbol that the point is currently on.
545 But only if it is longer than `completion-min-length'."
546 (with-syntax-table completion-syntax-table
547 (when (memq (char-syntax (following-char)) '(?w ?_
))
548 ;; Cursor is on following-char and after preceding-char
549 (let ((saved-point (point)))
550 (setq cmpl-symbol-start
(scan-sexps (1+ saved-point
) -
1)
551 cmpl-symbol-end
(scan-sexps saved-point
1))
552 ;; Remove chars to ignore at the start.
553 (cond ((= (char-syntax (char-after cmpl-symbol-start
)) ?w
)
554 (goto-char cmpl-symbol-start
)
556 (setq cmpl-symbol-start
(point))
557 (goto-char saved-point
)))
558 ;; Remove chars to ignore at the end.
559 (cond ((= (char-syntax (char-after (1- cmpl-symbol-end
))) ?w
)
560 (goto-char cmpl-symbol-end
)
562 (setq cmpl-symbol-end
(point))
563 (goto-char saved-point
)))
564 ;; Return completion if the length is reasonable.
565 (if (and (<= completion-min-length
566 (- cmpl-symbol-end cmpl-symbol-start
))
567 (<= (- cmpl-symbol-end cmpl-symbol-start
)
568 completion-max-length
))
569 (buffer-substring-no-properties
570 cmpl-symbol-start cmpl-symbol-end
))))))
572 ;; tests for symbol-under-point
573 ;; `^' indicates cursor pos. where value is returned
575 ;; ^^^^^^^^^^^^^^^^ --> simple-word-test
576 ;; _harder_word_test_
577 ;; ^^^^^^^^^^^^^^^^^^ --> harder_word_test
580 ;; /foo/bar/quux.hello
581 ;; ^^^^^^^^^^^^^^^^^^^ --> /foo/bar/quux.hello
584 (defun symbol-before-point ()
585 "Return a string of the symbol immediately before point.
586 Returns nil if there isn't one longer than `completion-min-length'."
587 ;; This is called when a word separator is typed so it must be FAST !
588 (with-syntax-table completion-syntax-table
589 ;; Cursor is on following-char and after preceding-char
590 (cond ((= (setq cmpl-preceding-syntax
(char-syntax (preceding-char))) ?_
)
591 ;; Number of chars to ignore at end.
592 (setq cmpl-symbol-end
(point)
593 cmpl-symbol-start
(scan-sexps cmpl-symbol-end -
1))
594 ;; Remove chars to ignore at the start.
595 (cond ((= (char-syntax (char-after cmpl-symbol-start
)) ?w
)
596 (goto-char cmpl-symbol-start
)
598 (setq cmpl-symbol-start
(point))
599 (goto-char cmpl-symbol-end
)))
600 ;; Return value if long enough.
601 (if (>= cmpl-symbol-end
602 (+ cmpl-symbol-start completion-min-length
))
603 (buffer-substring-no-properties
604 cmpl-symbol-start cmpl-symbol-end
)))
605 ((= cmpl-preceding-syntax ?w
)
606 ;; chars to ignore at end
607 (let ((saved-point (point)))
608 (setq cmpl-symbol-start
(scan-sexps saved-point -
1))
609 ;; take off chars. from end
611 (setq cmpl-symbol-end
(point))
612 ;; remove chars to ignore at the start
613 (cond ((= (char-syntax (char-after cmpl-symbol-start
)) ?w
)
614 (goto-char cmpl-symbol-start
)
616 (setq cmpl-symbol-start
(point))))
618 (goto-char saved-point
)
619 ;; Return completion if the length is reasonable
620 (if (and (<= completion-min-length
621 (- cmpl-symbol-end cmpl-symbol-start
))
622 (<= (- cmpl-symbol-end cmpl-symbol-start
)
623 completion-max-length
))
624 (buffer-substring-no-properties
625 cmpl-symbol-start cmpl-symbol-end
)))))))
627 ;; tests for symbol-before-point
628 ;; `^' indicates cursor pos. where value is returned
633 ;; ^ --> simple-word-test
634 ;; _harder_word_test_
635 ;; ^ --> harder_word_test
636 ;; ^ --> harder_word_test
641 (defun symbol-under-or-before-point ()
642 ;; This could be made slightly faster but it is better to avoid
643 ;; copying all the code.
644 ;; However, it is only used by the completion string prompter.
645 ;; If it comes into common use, it could be rewritten.
646 (if (memq (with-syntax-table completion-syntax-table
647 (char-syntax (following-char)))
650 (symbol-before-point)))
653 (defun symbol-before-point-for-complete ()
654 ;; "Returns a string of the symbol immediately before point
655 ;; or nil if there isn't one. Like symbol-before-point but doesn't trim the
657 ;; Cursor is on following-char and after preceding-char
658 (with-syntax-table completion-syntax-table
659 (cond ((memq (setq cmpl-preceding-syntax
(char-syntax (preceding-char)))
661 (setq cmpl-symbol-end
(point)
662 cmpl-symbol-start
(scan-sexps cmpl-symbol-end -
1))
663 ;; Remove chars to ignore at the start.
664 (cond ((= (char-syntax (char-after cmpl-symbol-start
)) ?w
)
665 (goto-char cmpl-symbol-start
)
667 (setq cmpl-symbol-start
(point))
668 (goto-char cmpl-symbol-end
)))
669 ;; Return completion if the length is reasonable.
670 (if (and (<= completion-prefix-min-length
671 (- cmpl-symbol-end cmpl-symbol-start
))
672 (<= (- cmpl-symbol-end cmpl-symbol-start
)
673 completion-max-length
))
674 (buffer-substring-no-properties
675 cmpl-symbol-start cmpl-symbol-end
))))))
677 ;; tests for symbol-before-point-for-complete
678 ;; `^' indicates cursor pos. where value is returned
683 ;; ^ --> simple-word-test
684 ;; _harder_word_test_
685 ;; ^ --> harder_word_test
686 ;; ^ --> harder_word_test_
693 ;;---------------------------------------------------------------------------
694 ;; Statistics Recording
695 ;;---------------------------------------------------------------------------
697 ;; Note that the guts of this has been turned off. The guts
698 ;; are in completion-stats.el.
700 ;;-----------------------------------------------
701 ;; Conditionalizing code on *record-cmpl-statistics-p*
702 ;;-----------------------------------------------
703 ;; All statistics code outside this block should use this
704 (defmacro cmpl-statistics-block
(&rest body
))
705 ;; "Only executes body if we are recording statistics."
707 ;; (list* '*record-cmpl-statistics-p* body)
710 ;;-----------------------------------------------
711 ;; Completion Sources
712 ;;-----------------------------------------------
715 (defconst cmpl-source-unknown
0)
716 (defconst cmpl-source-init-file
1)
717 (defconst cmpl-source-file-parsing
2)
718 (defconst cmpl-source-separator
3)
719 (defconst cmpl-source-cursor-moves
4)
720 (defconst cmpl-source-interactive
5)
721 (defconst cmpl-source-cdabbrev
6)
722 (defconst num-cmpl-sources
7)
723 (defvar current-completion-source cmpl-source-unknown
)
727 ;;---------------------------------------------------------------------------
728 ;; Completion Method #2: dabbrev-expand style
729 ;;---------------------------------------------------------------------------
731 ;; This method is used if there are no useful stored completions. It is
732 ;; based on dabbrev-expand with these differences :
733 ;; 1) Faster (we don't use regexps)
734 ;; 2) case coercion handled correctly
735 ;; This is called cdabbrev to differentiate it.
736 ;; We simply search backwards through the file looking for words which
737 ;; start with the same letters we are trying to complete.
740 (defvar cdabbrev-completions-tried nil
)
741 ;; "A list of all the cdabbrev completions since the last reset.")
743 (defvar cdabbrev-current-point
0)
744 ;; "The current point position the cdabbrev search is at.")
746 (defvar cdabbrev-current-window nil
)
747 ;; "The current window we are looking for cdabbrevs in.
748 ;; Return t if looking in (other-buffer), nil if no more cdabbrevs.")
750 (defvar cdabbrev-wrapped-p nil
)
751 ;; "Return t if the cdabbrev search has wrapped around the file.")
753 (defvar cdabbrev-abbrev-string
"")
754 (defvar cdabbrev-start-point
0)
755 (defvar cdabbrev-stop-point
)
757 ;; Test strings for cdabbrev
758 ;; cdat-upcase ;;same namestring
762 ;; a-cdat-1 ;;doesn't start correctly
766 (defun reset-cdabbrev (abbrev-string &optional initial-completions-tried
)
767 "Reset the cdabbrev search to search for ABBREV-STRING.
768 INITIAL-COMPLETIONS-TRIED is a list of downcased strings to ignore
770 (setq cdabbrev-abbrev-string abbrev-string
771 cdabbrev-completions-tried
772 (cons (downcase abbrev-string
) initial-completions-tried
))
773 (reset-cdabbrev-window t
))
775 (defun set-cdabbrev-buffer ()
776 ;; cdabbrev-current-window must not be nil
777 (set-buffer (if (eq cdabbrev-current-window t
)
779 (window-buffer cdabbrev-current-window
))))
782 (defun reset-cdabbrev-window (&optional initializep
)
783 "Reset the cdabbrev search to search for abbrev-string."
786 (setq cdabbrev-current-window
(selected-window)))
787 ((eq cdabbrev-current-window t
)
788 ;; Everything has failed
789 (setq cdabbrev-current-window nil
))
790 (cdabbrev-current-window
791 (setq cdabbrev-current-window
(next-window cdabbrev-current-window
))
792 (if (eq cdabbrev-current-window
(selected-window))
793 ;; No more windows, try other buffer.
794 (setq cdabbrev-current-window t
))))
795 (if cdabbrev-current-window
797 (set-cdabbrev-buffer)
798 (setq cdabbrev-current-point
(point)
799 cdabbrev-start-point cdabbrev-current-point
801 (if completion-search-distance
803 (- cdabbrev-start-point completion-search-distance
))
805 cdabbrev-wrapped-p nil
))))
807 (defun next-cdabbrev ()
808 "Return the next possible cdabbrev expansion or nil if there isn't one.
809 `reset-cdabbrev' must've been called already.
810 This is sensitive to `case-fold-search'."
811 ;; note that case-fold-search affects the behavior of this function
812 ;; Bug: won't pick up an expansion that starts at the top of buffer
813 (if cdabbrev-current-window
817 downcase-expansion tried-list syntax saved-point-2
)
821 ;; Switch to current completion buffer
822 (set-cdabbrev-buffer)
823 ;; Save current buffer state
824 (setq saved-point
(point)
825 saved-syntax
(syntax-table))
826 ;; Restore completion state
827 (set-syntax-table completion-syntax-table
)
828 (goto-char cdabbrev-current-point
)
829 ;; Loop looking for completions
831 ;; This code returns t if it should loop again
833 (;; search for the string
834 (search-backward cdabbrev-abbrev-string cdabbrev-stop-point t
)
835 ;; return nil if the completion is valid
838 ;; does it start with a separator char ?
839 (or (= (setq syntax
(char-syntax (preceding-char))) ?
)
841 ;; symbol char to ignore at end. Are we at end ?
843 (setq saved-point-2
(point))
846 (= (char-syntax (preceding-char)) ?
)
847 (goto-char saved-point-2
)))))
848 ;; is the symbol long enough ?
849 (setq expansion
(symbol-under-point))
850 ;; have we not tried this one before
852 ;; See if we've already used it
853 (setq tried-list cdabbrev-completions-tried
854 downcase-expansion
(downcase expansion
))
855 (while (and tried-list
856 (not (string-equal downcase-expansion
858 ;; Already tried, don't choose this one
859 (setq tried-list
(cdr tried-list
)))
860 ;; at this point tried-list will be nil if this
861 ;; expansion has not yet been tried
867 ;; If already wrapped, then we've failed completely
871 (goto-char (setq cdabbrev-current-point
872 (if completion-search-distance
873 (min (point-max) (+ cdabbrev-start-point completion-search-distance
))
876 (setq cdabbrev-wrapped-p t
))))
880 (setq cdabbrev-completions-tried
881 (cons downcase-expansion cdabbrev-completions-tried
)
882 cdabbrev-current-point
(point)))))
883 (set-syntax-table saved-syntax
)
884 (goto-char saved-point
)))
885 ;; If no expansion, go to next window
887 (t (reset-cdabbrev-window)
890 ;; The following must be eval'd in the minibuffer ::
891 ;; (reset-cdabbrev "cdat")
892 ;; (next-cdabbrev) --> "cdat-simple"
893 ;; (next-cdabbrev) --> "cdat-1-2-3-4"
894 ;; (next-cdabbrev) --> "CDAT-UPCASE"
895 ;; (next-cdabbrev) --> "cdat-wrapping"
896 ;; (next-cdabbrev) --> "cdat_start_sym"
897 ;; (next-cdabbrev) --> nil
898 ;; (next-cdabbrev) --> nil
899 ;; (next-cdabbrev) --> nil
905 ;;---------------------------------------------------------------------------
906 ;; Completion Database
907 ;;---------------------------------------------------------------------------
909 ;; We use two storage modes for the two search types ::
910 ;; 1) Prefix {cmpl-prefix-obarray} for looking up possible completions
911 ;; Used by search-completion-next
912 ;; the value of the symbol is nil or a cons of head and tail pointers
913 ;; 2) Interning {cmpl-obarray} to see if it's in the database
914 ;; Used by find-exact-completion, completion-in-database-p
915 ;; The value of the symbol is the completion entry
917 ;; bad things may happen if this length is changed due to the way
918 ;; GNU implements obarrays
919 (defconst cmpl-obarray-length
511)
921 (defvar cmpl-prefix-obarray
(make-vector cmpl-obarray-length
0)
922 "An obarray used to store the downcased completion prefixes.
923 Each symbol is bound to a list of completion entries.")
925 (defvar cmpl-obarray
(make-vector cmpl-obarray-length
0)
926 "An obarray used to store the downcased completions.
927 Each symbol is bound to a single completion entry.")
929 ;;-----------------------------------------------
930 ;; Completion Entry Structure Definition
931 ;;-----------------------------------------------
933 ;; A completion entry is a LIST of string, prefix-symbol num-uses, and
934 ;; last-use-time (the time the completion was last used)
935 ;; last-use-time is t if the string should be kept permanently
936 ;; num-uses is incremented every time the completion is used.
938 ;; We chose lists because (car foo) is faster than (aref foo 0) and the
939 ;; creation time is about the same.
943 (defmacro completion-string
(completion-entry)
944 (list 'car completion-entry
))
946 (defmacro completion-num-uses
(completion-entry)
947 ;; "The number of times it has used. Used to decide whether to save
949 (list 'car
(list 'cdr completion-entry
)))
951 (defmacro completion-last-use-time
(completion-entry)
952 ;; "The time it was last used. In hours since origin. Used to decide
953 ;; whether to save it. t if one should always save it."
954 (list 'nth
2 completion-entry
))
956 (defmacro completion-source
(completion-entry)
957 (list 'nth
3 completion-entry
))
960 (defmacro set-completion-string
(completion-entry string
)
961 (list 'setcar completion-entry string
))
963 (defmacro set-completion-num-uses
(completion-entry num-uses
)
964 (list 'setcar
(list 'cdr completion-entry
) num-uses
))
966 (defmacro set-completion-last-use-time
(completion-entry last-use-time
)
967 (list 'setcar
(list 'cdr
(list 'cdr completion-entry
)) last-use-time
))
970 (defun make-completion (string)
971 "Return a completion entry."
972 (list string
0 nil current-completion-source
))
975 ;;(defmacro cmpl-prefix-entry-symbol (completion-entry)
976 ;; (list 'car (list 'cdr completion-entry)))
980 ;;-----------------------------------------------
981 ;; Prefix symbol entry definition
982 ;;-----------------------------------------------
983 ;; A cons of (head . tail)
987 (defalias 'cmpl-prefix-entry-head
'car
)
989 (defalias 'cmpl-prefix-entry-tail
'cdr
)
993 (defmacro set-cmpl-prefix-entry-head
(prefix-entry new-head
)
994 (list 'setcar prefix-entry new-head
))
996 (defmacro set-cmpl-prefix-entry-tail
(prefix-entry new-tail
)
997 (list 'setcdr prefix-entry new-tail
))
1001 (defun make-cmpl-prefix-entry (completion-entry-list)
1002 "Make a new prefix entry containing only completion-entry."
1003 (cons completion-entry-list completion-entry-list
))
1005 ;;-----------------------------------------------
1006 ;; Completion Database - Utilities
1007 ;;-----------------------------------------------
1009 (defun clear-all-completions ()
1010 "Initialize the completion storage. All existing completions are lost."
1012 (setq cmpl-prefix-obarray
(make-vector cmpl-obarray-length
0))
1013 (setq cmpl-obarray
(make-vector cmpl-obarray-length
0))
1014 (cmpl-statistics-block
1015 (record-clear-all-completions)))
1017 (defvar completions-list-return-value
)
1019 (defun list-all-completions ()
1020 "Return a list of all the known completion entries."
1021 (let ((completions-list-return-value nil
))
1022 (mapatoms 'list-all-completions-1 cmpl-prefix-obarray
)
1023 completions-list-return-value
))
1025 (defun list-all-completions-1 (prefix-symbol)
1026 (if (boundp prefix-symbol
)
1027 (setq completions-list-return-value
1028 (append (cmpl-prefix-entry-head (symbol-value prefix-symbol
))
1029 completions-list-return-value
))))
1031 (defun list-all-completions-by-hash-bucket ()
1032 "Return list of lists of known completion entries, organized by hash bucket."
1033 (let ((completions-list-return-value nil
))
1034 (mapatoms 'list-all-completions-by-hash-bucket-1 cmpl-prefix-obarray
)
1035 completions-list-return-value
))
1037 (defun list-all-completions-by-hash-bucket-1 (prefix-symbol)
1038 (if (boundp prefix-symbol
)
1039 (setq completions-list-return-value
1040 (cons (cmpl-prefix-entry-head (symbol-value prefix-symbol
))
1041 completions-list-return-value
))))
1044 ;;-----------------------------------------------
1045 ;; Updating the database
1046 ;;-----------------------------------------------
1048 ;; These are the internal functions used to update the datebase
1051 (defvar completion-to-accept nil
1052 "Set to a string that is pending its acceptance.")
1053 ;; this checked by the top level reading functions
1055 (defvar cmpl-db-downcase-string nil
1056 "Setup by `find-exact-completion', etc. The given string, downcased.")
1057 (defvar cmpl-db-symbol nil
1058 "The interned symbol corresponding to `cmpl-db-downcase-string'.
1059 Set up by `cmpl-db-symbol'.")
1060 (defvar cmpl-db-prefix-symbol nil
1061 "The interned prefix symbol corresponding to `cmpl-db-downcase-string'.")
1062 (defvar cmpl-db-entry nil
)
1063 (defvar cmpl-db-debug-p nil
1064 "Set to t if you want to debug the database.")
1067 (defun find-exact-completion (string)
1068 "Return the completion entry for STRING or nil.
1069 Sets up `cmpl-db-downcase-string' and `cmpl-db-symbol'."
1070 (and (boundp (setq cmpl-db-symbol
1071 (intern (setq cmpl-db-downcase-string
(downcase string
))
1073 (symbol-value cmpl-db-symbol
)))
1075 (defun find-cmpl-prefix-entry (prefix-string)
1076 "Return the prefix entry for string.
1077 Sets `cmpl-db-prefix-symbol'.
1078 Prefix-string must be exactly `completion-prefix-min-length' long
1079 and downcased. Sets up `cmpl-db-prefix-symbol'."
1080 (and (boundp (setq cmpl-db-prefix-symbol
1081 (intern prefix-string cmpl-prefix-obarray
)))
1082 (symbol-value cmpl-db-prefix-symbol
)))
1084 (defvar inside-locate-completion-entry nil
)
1085 ;; used to trap lossage in silent error correction
1087 (defun locate-completion-entry (completion-entry prefix-entry
)
1088 "Locate the completion entry.
1089 Returns a pointer to the element before the completion entry or nil if
1090 the completion entry is at the head.
1091 Must be called after `find-exact-completion'."
1092 (let ((prefix-list (cmpl-prefix-entry-head prefix-entry
))
1095 ((not (eq (car prefix-list
) completion-entry
))
1096 ;; not already at head
1097 (while (and prefix-list
1098 (not (eq completion-entry
1099 (car (setq next-prefix-list
(cdr prefix-list
))))))
1100 (setq prefix-list next-prefix-list
))
1103 ;; Didn't find it. Database is messed up.
1105 ;; not found, error if debug mode
1106 (error "Completion entry exists but not on prefix list - %s"
1108 (inside-locate-completion-entry
1109 ;; recursive error: really scrod
1110 (locate-completion-db-error))
1113 (set cmpl-db-symbol nil
)
1115 (locate-completion-entry-retry completion-entry
)))))))
1117 (defun locate-completion-entry-retry (old-entry)
1118 (let ((inside-locate-completion-entry t
))
1119 (add-completion (completion-string old-entry
)
1120 (completion-num-uses old-entry
)
1121 (completion-last-use-time old-entry
))
1122 (let* ((cmpl-entry (find-exact-completion (completion-string old-entry
)))
1125 (find-cmpl-prefix-entry
1126 (substring cmpl-db-downcase-string
1127 0 completion-prefix-min-length
)))))
1128 (if (and cmpl-entry pref-entry
)
1130 (locate-completion-entry cmpl-entry pref-entry
)
1132 (locate-completion-db-error)))))
1134 (defun locate-completion-db-error ()
1135 ;; recursive error: really scrod
1136 (error "Completion database corrupted. Try M-x clear-all-completions. Send bug report"))
1139 (defun add-completion-to-tail-if-new (string)
1140 "If STRING is not in the database add it to appropriate prefix list.
1141 STRING is added to the end of the appropriate prefix list with
1142 num-uses = 0. The database is unchanged if it is there. STRING must be
1143 longer than `completion-prefix-min-length'.
1144 This must be very fast.
1145 Returns the completion entry."
1146 (or (find-exact-completion string
)
1148 (let (;; create an entry
1149 (entry (list (make-completion string
)))
1151 (prefix-entry (find-cmpl-prefix-entry
1152 (substring cmpl-db-downcase-string
0
1153 completion-prefix-min-length
))))
1154 ;; The next two forms should happen as a unit (atomically) but
1155 ;; no fatal errors should result if that is not the case.
1157 ;; These two should be atomic, but nothing fatal will happen
1159 (setcdr (cmpl-prefix-entry-tail prefix-entry
) entry
)
1160 (set-cmpl-prefix-entry-tail prefix-entry entry
))
1162 (set cmpl-db-prefix-symbol
(make-cmpl-prefix-entry entry
))))
1164 (cmpl-statistics-block
1165 (note-added-completion))
1167 (set cmpl-db-symbol
(car entry
)))))
1169 (defun add-completion-to-head (completion-string)
1170 "If COMPLETION-STRING is not in the database, add it to prefix list.
1171 We add COMPLETION-STRING to the head of the appropriate prefix list,
1172 or it to the head of the list.
1173 COMPLETION-STRING must be longer than `completion-prefix-min-length'.
1174 Updates the saved string with the supplied string.
1175 This must be very fast.
1176 Returns the completion entry."
1177 ;; Handle pending acceptance
1178 (if completion-to-accept
(accept-completion))
1179 ;; test if already in database
1180 (if (setq cmpl-db-entry
(find-exact-completion completion-string
))
1182 (let* ((prefix-entry (find-cmpl-prefix-entry
1183 (substring cmpl-db-downcase-string
0
1184 completion-prefix-min-length
)))
1185 (splice-ptr (locate-completion-entry cmpl-db-entry prefix-entry
))
1186 (cmpl-ptr (cdr splice-ptr
)))
1188 (set-completion-string cmpl-db-entry completion-string
)
1189 ;; move to head (if necessary)
1191 ;; These should all execute atomically but it is not fatal if
1194 (or (setcdr splice-ptr
(cdr cmpl-ptr
))
1195 ;; fix up tail if necessary
1196 (set-cmpl-prefix-entry-tail prefix-entry splice-ptr
))
1197 ;; splice in at head
1198 (setcdr cmpl-ptr
(cmpl-prefix-entry-head prefix-entry
))
1199 (set-cmpl-prefix-entry-head prefix-entry cmpl-ptr
)))
1202 (let (;; create an entry
1203 (entry (list (make-completion completion-string
)))
1205 (prefix-entry (find-cmpl-prefix-entry
1206 (substring cmpl-db-downcase-string
0
1207 completion-prefix-min-length
))))
1209 ;; Splice in at head
1210 (setcdr entry
(cmpl-prefix-entry-head prefix-entry
))
1211 (set-cmpl-prefix-entry-head prefix-entry entry
))
1213 ;; Start new prefix entry
1214 (set cmpl-db-prefix-symbol
(make-cmpl-prefix-entry entry
))))
1216 (cmpl-statistics-block
1217 (note-added-completion))
1218 ;; Add it to the symbol
1219 (set cmpl-db-symbol
(car entry
)))))
1221 (defun delete-completion (completion-string)
1222 "Delete the completion from the database.
1223 String must be longer than `completion-prefix-min-length'."
1224 ;; Handle pending acceptance
1225 (if completion-to-accept
(accept-completion))
1226 (if (setq cmpl-db-entry
(find-exact-completion completion-string
))
1228 (let* ((prefix-entry (find-cmpl-prefix-entry
1229 (substring cmpl-db-downcase-string
0
1230 completion-prefix-min-length
)))
1231 (splice-ptr (locate-completion-entry cmpl-db-entry prefix-entry
)))
1232 ;; delete symbol reference
1233 (set cmpl-db-symbol nil
)
1234 ;; remove from prefix list
1237 (or (setcdr splice-ptr
(cdr (cdr splice-ptr
)))
1238 ;; fix up tail if necessary
1239 (set-cmpl-prefix-entry-tail prefix-entry splice-ptr
)))
1242 (or (set-cmpl-prefix-entry-head
1243 prefix-entry
(cdr (cmpl-prefix-entry-head prefix-entry
)))
1244 ;; List is now empty
1245 (set cmpl-db-prefix-symbol nil
))))
1246 (cmpl-statistics-block
1247 (note-completion-deleted)))
1248 (error "Unknown completion `%s'" completion-string
)))
1252 ;; (add-completion-to-head "banana") --> ("banana" 0 nil 0)
1253 ;; (find-exact-completion "banana") --> ("banana" 0 nil 0)
1254 ;; (find-exact-completion "bana") --> nil
1255 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1256 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1257 ;; (add-completion-to-head "banish") --> ("banish" 0 nil 0)
1258 ;; (find-exact-completion "banish") --> ("banish" 0 nil 0)
1259 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banish" ...) ("banana" ...))
1260 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1261 ;; (add-completion-to-head "banana") --> ("banana" 0 nil 0)
1262 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...) ("banish" ...))
1263 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banish" ...))
1266 ;; (add-completion-to-head "banner") --> ("banner" 0 nil 0)
1267 ;; (delete-completion "banner")
1268 ;; (find-exact-completion "banner") --> nil
1269 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...) ("banish" ...))
1270 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banish" ...))
1271 ;; (add-completion-to-head "banner") --> ("banner" 0 nil 0)
1272 ;; (delete-completion "banana")
1273 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banner" ...) ("banish" ...))
1274 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banish" ...))
1275 ;; (delete-completion "banner")
1276 ;; (delete-completion "banish")
1277 ;; (find-cmpl-prefix-entry "ban") --> nil
1278 ;; (delete-completion "banner") --> error
1281 ;; (add-completion-to-tail-if-new "banana") --> ("banana" 0 nil 0)
1282 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1283 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1284 ;; (add-completion-to-tail-if-new "banish") --> ("banish" 0 nil 0)
1285 ;; (car (find-cmpl-prefix-entry "ban")) -->(("banana" ...) ("banish" ...))
1286 ;; (cdr (find-cmpl-prefix-entry "ban")) -->(("banish" ...))
1290 ;;---------------------------------------------------------------------------
1291 ;; Database Update :: Interface level routines
1292 ;;---------------------------------------------------------------------------
1294 ;; These lie on top of the database ref. functions but below the standard
1295 ;; user interface level
1298 (defun interactive-completion-string-reader (prompt)
1299 (let* ((default (symbol-under-or-before-point))
1302 (format "%s (default %s): " prompt default
)
1303 (format "%s: " prompt
)))
1304 (read (completing-read new-prompt cmpl-obarray
)))
1305 (if (zerop (length read
)) (setq read
(or default
"")))
1308 (defun check-completion-length (string)
1309 (if (< (length string
) completion-min-length
)
1310 (error "The string `%s' is too short to be saved as a completion"
1314 (defun add-completion (string &optional num-uses last-use-time
)
1315 "Add STRING to completion list, or move it to head of list.
1316 The completion is altered appropriately if num-uses and/or last-use-time is
1318 (interactive (interactive-completion-string-reader "Completion to add"))
1319 (check-completion-length string
)
1320 (let* ((current-completion-source (if (interactive-p)
1321 cmpl-source-interactive
1322 current-completion-source
))
1323 (entry (add-completion-to-head string
)))
1325 (if num-uses
(set-completion-num-uses entry num-uses
))
1327 (set-completion-last-use-time entry last-use-time
))))
1329 (defun add-permanent-completion (string)
1330 "Add STRING if it isn't already listed, and mark it permanent."
1332 (interactive-completion-string-reader "Completion to add permanently"))
1333 (let ((current-completion-source (if (interactive-p)
1334 cmpl-source-interactive
1335 current-completion-source
)))
1336 (add-completion string nil t
)))
1338 (defun kill-completion (string)
1339 (interactive (interactive-completion-string-reader "Completion to kill"))
1340 (check-completion-length string
)
1341 (delete-completion string
))
1343 (defun accept-completion ()
1344 "Accepts the pending completion in `completion-to-accept'.
1345 This bumps num-uses. Called by `add-completion-to-head' and
1346 `completion-search-reset'."
1347 (let ((string completion-to-accept
)
1348 ;; if this is added afresh here, then it must be a cdabbrev
1349 (current-completion-source cmpl-source-cdabbrev
)
1351 (setq completion-to-accept nil
)
1352 (setq entry
(add-completion-to-head string
))
1353 (set-completion-num-uses entry
(1+ (completion-num-uses entry
)))
1354 (setq cmpl-completions-accepted-p t
)))
1356 (defun use-completion-under-point ()
1357 "Add the completion symbol underneath the point into the completion buffer."
1358 (let ((string (and enable-completion
(symbol-under-point)))
1359 (current-completion-source cmpl-source-cursor-moves
))
1360 (if string
(add-completion-to-head string
))))
1362 (defun use-completion-before-point ()
1363 "Add the completion symbol before point into the completion buffer."
1364 (let ((string (and enable-completion
(symbol-before-point)))
1365 (current-completion-source cmpl-source-cursor-moves
))
1366 (if string
(add-completion-to-head string
))))
1368 (defun use-completion-under-or-before-point ()
1369 "Add the completion symbol before point into the completion buffer."
1370 (let ((string (and enable-completion
(symbol-under-or-before-point)))
1371 (current-completion-source cmpl-source-cursor-moves
))
1372 (if string
(add-completion-to-head string
))))
1374 (defun use-completion-before-separator ()
1375 "Add the completion symbol before point into the completion buffer.
1376 Completions added this way will automatically be saved if
1377 `completion-on-separator-character' is non-nil."
1378 (let ((string (and enable-completion
(symbol-before-point)))
1379 (current-completion-source cmpl-source-separator
)
1381 (cmpl-statistics-block
1382 (note-separator-character string
))
1384 (setq entry
(add-completion-to-head string
))
1385 (if (and completion-on-separator-character
1386 (zerop (completion-num-uses entry
)))
1388 (set-completion-num-uses entry
1)
1389 (setq cmpl-completions-accepted-p t
)))))))
1393 ;; (add-completion "banana" 5 10)
1394 ;; (find-exact-completion "banana") --> ("banana" 5 10 0)
1395 ;; (add-completion "banana" 6)
1396 ;; (find-exact-completion "banana") --> ("banana" 6 10 0)
1397 ;; (add-completion "banish")
1398 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banish" ...) ("banana" ...))
1401 ;; (setq completion-to-accept "banana")
1402 ;; (accept-completion)
1403 ;; (find-exact-completion "banana") --> ("banana" 7 10)
1404 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...) ("banish" ...))
1405 ;; (setq completion-to-accept "banish")
1406 ;; (add-completion "banner")
1407 ;; (car (find-cmpl-prefix-entry "ban"))
1408 ;; --> (("banner" ...) ("banish" 1 ...) ("banana" 7 ...))
1411 ;; (kill-completion "banish")
1412 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banner" ...) ("banana" ...))
1415 ;;---------------------------------------------------------------------------
1416 ;; Searching the database
1417 ;;---------------------------------------------------------------------------
1418 ;; Functions outside this block must call completion-search-reset followed
1419 ;; by calls to completion-search-next or completion-search-peek
1423 ;; Commented out to improve loading speed
1424 (defvar cmpl-test-string
"")
1425 ;; "The current string used by completion-search-next."
1426 (defvar cmpl-test-regexp
"")
1427 ;; "The current regexp used by completion-search-next.
1428 ;; (derived from cmpl-test-string)"
1429 (defvar cmpl-last-index
0)
1430 ;; "The last index that completion-search-next was called with."
1431 (defvar cmpl-cdabbrev-reset-p nil
)
1432 ;; "Set to t when cdabbrevs have been reset."
1433 (defvar cmpl-next-possibilities nil
)
1434 ;; "A pointer to the element BEFORE the next set of possible completions.
1435 ;; cadr of this is the cmpl-next-possibility"
1436 (defvar cmpl-starting-possibilities nil
)
1437 ;; "The initial list of starting possibilities."
1438 (defvar cmpl-next-possibility nil
)
1439 ;; "The cached next possibility."
1440 (defvar cmpl-tried-list nil
)
1441 ;; "A downcased list of all the completions we have tried."
1444 (defun completion-search-reset (string)
1445 "Set up the for completion searching for STRING.
1446 STRING must be longer than `completion-prefix-min-length'."
1447 (if completion-to-accept
(accept-completion))
1448 (setq cmpl-starting-possibilities
1449 (cmpl-prefix-entry-head
1450 (find-cmpl-prefix-entry
1451 (downcase (substring string
0 completion-prefix-min-length
))))
1452 cmpl-test-string string
1453 cmpl-test-regexp
(concat (regexp-quote string
) "."))
1454 (completion-search-reset-1))
1456 (defun completion-search-reset-1 ()
1457 (setq cmpl-next-possibilities cmpl-starting-possibilities
1458 cmpl-next-possibility nil
1459 cmpl-cdabbrev-reset-p nil
1461 cmpl-tried-list nil
))
1463 (defun completion-search-next (index)
1464 "Return the next completion entry.
1465 If INDEX is out of sequence, reset and start from the top.
1466 If there are no more entries, try cdabbrev and returns only a string."
1468 ((= index
(setq cmpl-last-index
(1+ cmpl-last-index
)))
1469 (completion-search-peek t
))
1471 (completion-search-reset-1)
1472 (setq cmpl-last-index index
)
1473 ;; reverse the possibilities list
1474 (setq cmpl-next-possibilities
(reverse cmpl-starting-possibilities
))
1475 ;; do a "normal" search
1476 (while (and (completion-search-peek nil
)
1477 (< (setq index
(1+ index
)) 0))
1478 (setq cmpl-next-possibility nil
))
1479 (cond ((not cmpl-next-possibilities
))
1480 ;; If no more possibilities, leave it that way
1481 ((= -
1 cmpl-last-index
)
1482 ;; next completion is at index 0. reset next-possibility list
1483 ;; to start at beginning
1484 (setq cmpl-next-possibilities cmpl-starting-possibilities
))
1486 ;; otherwise point to one before current
1487 (setq cmpl-next-possibilities
1488 (nthcdr (- (length cmpl-starting-possibilities
)
1489 (length cmpl-next-possibilities
))
1490 cmpl-starting-possibilities
)))))
1492 ;; non-negative index, reset and search
1494 (completion-search-reset-1)
1495 (setq cmpl-last-index index
)
1496 (while (and (completion-search-peek t
)
1497 (not (< (setq index
(1- index
)) 0)))
1498 (setq cmpl-next-possibility nil
))))
1500 cmpl-next-possibility
1501 (setq cmpl-next-possibility nil
)))
1504 (defun completion-search-peek (use-cdabbrev)
1505 "Return the next completion entry without actually moving the pointers.
1506 Calling this again or calling `completion-search-next' results in the same
1507 string being returned. Depends on `case-fold-search'.
1508 If there are no more entries, try cdabbrev and then return only a string."
1510 ;; return the cached value if we have it
1511 (cmpl-next-possibility)
1512 ((and cmpl-next-possibilities
1513 ;; still a few possibilities left
1516 (and (not (eq 0 (string-match cmpl-test-regexp
1517 (completion-string (car cmpl-next-possibilities
)))))
1518 (setq cmpl-next-possibilities
(cdr cmpl-next-possibilities
))))
1519 cmpl-next-possibilities
))
1521 (setq cmpl-next-possibility
(car cmpl-next-possibilities
)
1522 cmpl-tried-list
(cons (downcase (completion-string cmpl-next-possibility
))
1524 cmpl-next-possibilities
(cdr cmpl-next-possibilities
))
1525 cmpl-next-possibility
)
1527 ;; unsuccessful, use cdabbrev
1528 (cond ((not cmpl-cdabbrev-reset-p
)
1529 (reset-cdabbrev cmpl-test-string cmpl-tried-list
)
1530 (setq cmpl-cdabbrev-reset-p t
)))
1531 (setq cmpl-next-possibility
(next-cdabbrev)))
1532 ;; Completely unsuccessful, return nil
1537 ;; (add-completion "banana")
1538 ;; (completion-search-reset "ban")
1539 ;; (completion-search-next 0) --> "banana"
1541 ;; - Discrimination -
1542 ;; (add-completion "cumberland")
1543 ;; (add-completion "cumberbund")
1545 ;; (completion-search-reset "cumb")
1546 ;; (completion-search-peek t) --> "cumberbund"
1547 ;; (completion-search-next 0) --> "cumberbund"
1548 ;; (completion-search-peek t) --> "cumberland"
1549 ;; (completion-search-next 1) --> "cumberland"
1550 ;; (completion-search-peek nil) --> nil
1551 ;; (completion-search-next 2) --> "cumbering" {cdabbrev}
1552 ;; (completion-search-next 3) --> nil or "cumming"{depends on context}
1553 ;; (completion-search-next 1) --> "cumberland"
1554 ;; (completion-search-peek t) --> "cumbering" {cdabbrev}
1557 ;; (completion-search-next 1) --> "cumberland"
1558 ;; (setq completion-to-accept "cumberland")
1559 ;; (completion-search-reset "foo")
1560 ;; (completion-search-reset "cum")
1561 ;; (completion-search-next 0) --> "cumberland"
1564 ;; (kill-completion "cumberland")
1566 ;; (completion-search-reset "cum")
1567 ;; (completion-search-next 0) --> "cumberbund"
1568 ;; (completion-search-next 1) --> "cummings"
1570 ;; - Ignoring Capitalization -
1571 ;; (completion-search-reset "CuMb")
1572 ;; (completion-search-next 0) --> "cumberbund"
1576 ;;-----------------------------------------------
1578 ;;-----------------------------------------------
1580 (defun completion-mode ()
1581 "Toggle whether or not to add new words to the completion database."
1583 (setq enable-completion
(not enable-completion
))
1584 (message "Completion mode is now %s." (if enable-completion
"ON" "OFF")))
1586 (defvar cmpl-current-index
0)
1587 (defvar cmpl-original-string nil
)
1588 (defvar cmpl-last-insert-location -
1)
1589 (defvar cmpl-leave-point-at-start nil
)
1591 (defun complete (&optional arg
)
1592 "Fill out a completion of the word before point.
1593 Point is left at end. Consecutive calls rotate through all possibilities.
1595 control-u :: leave the point at the beginning of the completion rather
1597 a number :: rotate through the possible completions by that amount
1598 `-' :: same as -1 (insert previous completion)
1599 {See the comments at the top of `completion.el' for more info.}"
1601 ;;; Set up variables
1602 (cond ((eq last-command this-command
)
1604 (delete-region cmpl-last-insert-location
(point))
1605 ;; get next completion
1606 (setq cmpl-current-index
(+ cmpl-current-index
(or arg
1))))
1608 (if (not cmpl-initialized-p
)
1609 (completion-initialize)) ;; make sure everything's loaded
1610 (cond ((consp current-prefix-arg
) ;; control-u
1612 (setq cmpl-leave-point-at-start t
))
1614 (setq cmpl-leave-point-at-start nil
)))
1616 (setq cmpl-original-string
(symbol-before-point-for-complete))
1617 (cond ((not cmpl-original-string
)
1618 (setq this-command
'failed-complete
)
1619 (error "To complete, point must be after a symbol at least %d character long"
1620 completion-prefix-min-length
)))
1622 (setq cmpl-current-index
(if current-prefix-arg arg
0))
1624 (cmpl-statistics-block
1625 (note-complete-entered-afresh cmpl-original-string
))
1627 (completion-search-reset cmpl-original-string
)
1628 ;; erase what we've got
1629 (delete-region cmpl-symbol-start cmpl-symbol-end
)))
1631 ;; point is at the point to insert the new symbol
1632 ;; Get the next completion
1633 (let* ((print-status-p
1634 (and (>= baud-rate completion-prompt-speed-threshold
)
1635 (not (window-minibuffer-p (selected-window)))))
1636 (insert-point (point))
1637 (entry (completion-search-next cmpl-current-index
))
1639 ;; entry is either a completion entry or a string (if cdabbrev)
1643 ;; Setup for proper case
1644 (setq string
(if (stringp entry
)
1645 entry
(completion-string entry
)))
1646 (setq string
(cmpl-merge-string-cases
1647 string cmpl-original-string
))
1651 (setq completion-to-accept string
)
1652 ;; fixup and cache point
1653 (cond (cmpl-leave-point-at-start
1654 (setq cmpl-last-insert-location
(point))
1655 (goto-char insert-point
))
1657 (setq cmpl-last-insert-location insert-point
)))
1659 (cmpl-statistics-block
1660 (note-complete-inserted entry cmpl-current-index
))
1661 ;; Done ! cmpl-stat-complete-successful
1662 ;;display the next completion
1664 ((and print-status-p
1665 ;; This updates the display and only prints if there
1669 (completion-search-peek
1670 completion-cdabbrev-prompt-flag
)))
1671 (setq string
(if (stringp entry
)
1672 entry
(completion-string entry
)))
1673 (setq string
(cmpl-merge-string-cases
1674 string cmpl-original-string
))
1675 (message "Next completion: %s" string
))))
1676 (t;; none found, insert old
1677 (insert cmpl-original-string
)
1678 ;; Don't accept completions
1679 (setq completion-to-accept nil
)
1681 ;; This used to call cmpl19-sit-for, an undefined function.
1682 ;; I hope that sit-for does the right thing; I don't know -- rms.
1683 (if (and print-status-p
(sit-for 0))
1684 (message "No %scompletions."
1685 (if (eq this-command last-command
) "more " "")))
1687 (cmpl-statistics-block
1688 (record-complete-failed cmpl-current-index
))
1689 ;; Pretend that we were never here
1690 (setq this-command
'failed-complete
)))))
1692 ;;---------------------------------------------------------------------------
1693 ;; Parsing definitions from files into the database
1694 ;;---------------------------------------------------------------------------
1696 ;;-----------------------------------------------
1697 ;; Top Level functions ::
1698 ;;-----------------------------------------------
1701 (defun add-completions-from-file (file)
1702 "Parse possible completions from a FILE and add them to data base."
1703 (interactive "fFile: ")
1704 (setq file
(expand-file-name file
))
1705 (let* ((buffer (get-file-buffer file
))
1706 (buffer-already-there-p buffer
))
1707 (if (not buffer-already-there-p
)
1708 (let ((completions-merging-modes nil
))
1709 (setq buffer
(find-file-noselect file
))))
1711 (with-current-buffer buffer
1712 (add-completions-from-buffer))
1713 (if (not buffer-already-there-p
)
1714 (kill-buffer buffer
)))))
1716 (defun add-completions-from-buffer ()
1718 (let ((current-completion-source cmpl-source-file-parsing
)
1720 (cmpl-statistics-block
1721 (aref completion-add-count-vector cmpl-source-file-parsing
)))
1723 (cond ((memq major-mode
'(emacs-lisp-mode lisp-mode
))
1724 (add-completions-from-lisp-buffer)
1726 ((memq major-mode
'(c-mode))
1727 (add-completions-from-c-buffer)
1730 (error "Cannot parse completions in %s buffers"
1732 (cmpl-statistics-block
1733 (record-cmpl-parse-file
1735 (- (aref completion-add-count-vector cmpl-source-file-parsing
)
1739 (defun completion-find-file-hook ()
1740 (cond (enable-completion
1741 (cond ((and (memq major-mode
'(emacs-lisp-mode lisp-mode
))
1742 (memq 'lisp completions-merging-modes
))
1743 (add-completions-from-buffer))
1744 ((and (memq major-mode
'(c-mode))
1745 (memq 'c completions-merging-modes
))
1746 (add-completions-from-buffer))))))
1748 ;;-----------------------------------------------
1749 ;; Tags Table Completions
1750 ;;-----------------------------------------------
1752 (defun add-completions-from-tags-table ()
1753 ;; Inspired by eero@media-lab.media.mit.edu
1754 "Add completions from the current tags table."
1756 (visit-tags-table-buffer) ;this will prompt if no tags-table
1758 (goto-char (point-min))
1762 (search-forward "\177")
1764 (and (setq string
(symbol-under-point))
1765 (add-completion-to-tail-if-new string
))
1770 ;;-----------------------------------------------
1771 ;; Lisp File completion parsing
1772 ;;-----------------------------------------------
1773 ;; This merely looks for phrases beginning with (def.... or
1774 ;; (package:def ... and takes the next word.
1776 ;; We tried using forward-lines and explicit searches but the regexp technique
1777 ;; was faster. (About 100K characters per second)
1779 (defconst *lisp-def-regexp
*
1780 "\n(\\(\\w*:\\)?def\\(\\w\\|\\s_\\)*\\s +(*"
1781 "A regexp that searches for Lisp definition form.")
1784 ;; (and (string-match *lisp-def-regexp* "\n(defun foo") (match-end 0)) -> 8
1785 ;; (and (string-match *lisp-def-regexp* "\n(si:def foo") (match-end 0)) -> 9
1786 ;; (and (string-match *lisp-def-regexp* "\n(def-bar foo")(match-end 0)) -> 10
1787 ;; (and (string-match *lisp-def-regexp* "\n(defun (foo") (match-end 0)) -> 9
1789 ;; Parses all the definition names from a Lisp mode buffer and adds them to
1790 ;; the completion database.
1791 (defun add-completions-from-lisp-buffer ()
1793 ;;; Sun-3/280 - 1500 to 3000 lines of lisp code per second
1796 (goto-char (point-min))
1799 (re-search-forward *lisp-def-regexp
*)
1800 (and (setq string
(symbol-under-point))
1801 (add-completion-to-tail-if-new string
)))
1805 ;;-----------------------------------------------
1806 ;; C file completion parsing
1807 ;;-----------------------------------------------
1809 ;; Looks for #define or [<storage class>] [<type>] <name>{,<name>}
1810 ;; or structure, array or pointer defs.
1811 ;; It gets most of the definition names.
1813 ;; As you might suspect by now, we use some symbol table hackery
1815 ;; Symbol separator chars (have whitespace syntax) --> , ; * = (
1816 ;; Opening char --> [ {
1817 ;; Closing char --> ] }
1818 ;; opening and closing must be skipped over
1819 ;; Whitespace chars (have symbol syntax)
1820 ;; Everything else has word syntax
1822 (defconst completion-c-def-syntax-table
1823 (let ((table (make-syntax-table))
1824 (whitespace-chars '(? ?
\n ?
\t ?
\f ?
\v ?
\r))
1825 ;; unfortunately the ?( causes the parens to appear unbalanced
1826 (separator-chars '(?
, ?
* ?
= ?\
( ?\
;))
1828 ;; default syntax is whitespace
1831 (modify-syntax-entry i
"w" table
)
1833 (dolist (char whitespace-chars
)
1834 (modify-syntax-entry char
"_" table
))
1835 (dolist (char separator-chars
)
1836 (modify-syntax-entry char
" " table
))
1837 (modify-syntax-entry ?\
[ "(]" table
)
1838 (modify-syntax-entry ?\
{ "(}" table
)
1839 (modify-syntax-entry ?\
] ")[" table
)
1840 (modify-syntax-entry ?\
} "){" table
)
1844 (defconst *c-def-regexp
*
1845 ;; This stops on lines with possible definitions
1847 ;; This stops after the symbol to add.
1848 ;;"\n\\(#define\\s +.\\|\\(\\(\\w\\|\\s_\\)+\\b\\s *\\)+[(;,[*{=]\\)"
1849 ;; This stops before the symbol to add. {Test cases in parens. below}
1850 ;;"\n\\(\\(\\w\\|\\s_\\)+\\s *(\\|\\(\\(#define\\|auto\\|extern\\|register\\|static\\|int\\|long\\|short\\|unsigned\\|char\\|void\\|float\\|double\\|enum\\|struct\\|union\\|typedef\\)\\s +\\)+\\)"
1851 ;; this simple version picks up too much extraneous stuff
1852 ;; "\n\\(\\w\\|\\s_\\|#\\)\\B"
1853 "A regexp that searches for a definition form.")
1855 ;(defconst *c-cont-regexp*
1856 ; "\\(\\w\\|\\s_\\)+\\b\\s *\\({\\|\\(\\[[0-9\t ]*\\]\\s *\\)*,\\(*\\|\\s \\)*\\b\\)"
1857 ; "This regexp should be used in a looking-at to parse for lists of variables.")
1859 ;(defconst *c-struct-regexp*
1860 ; "\\(*\\|\\s \\)*\\b"
1861 ; "This regexp should be used to test whether a symbol follows a structure definition.")
1863 ;(defun test-c-def-regexp (regexp string)
1864 ; (and (eq 0 (string-match regexp string)) (match-end 0))
1868 ;; (test-c-def-regexp *c-def-regexp* "\n#define foo") -> 10 (9)
1869 ;; (test-c-def-regexp *c-def-regexp* "\nfoo (x, y) {") -> 6 (6)
1870 ;; (test-c-def-regexp *c-def-regexp* "\nint foo (x, y)") -> 10 (5)
1871 ;; (test-c-def-regexp *c-def-regexp* "\n int foo (x, y)") -> nil
1872 ;; (test-c-def-regexp *c-cont-regexp* "oo, bar") -> 4
1873 ;; (test-c-def-regexp *c-cont-regexp* "oo, *bar") -> 5
1874 ;; (test-c-def-regexp *c-cont-regexp* "a [5][6], bar") -> 10
1875 ;; (test-c-def-regexp *c-cont-regexp* "oo(x,y)") -> nil
1876 ;; (test-c-def-regexp *c-cont-regexp* "a [6] ,\t bar") -> 9
1877 ;; (test-c-def-regexp *c-cont-regexp* "oo {trout =1} my_carp;") -> 14
1878 ;; (test-c-def-regexp *c-cont-regexp* "truct_p complex foon") -> nil
1880 ;; Parses all the definition names from a C mode buffer and adds them to the
1881 ;; completion database.
1882 (defun add-completions-from-c-buffer ()
1884 ;; Sun 3/280-- 1250 lines/sec.
1886 (let (string next-point char
)
1888 (goto-char (point-min))
1889 (catch 'finish-add-completions
1890 (with-syntax-table completion-c-def-syntax-table
1892 ;; we loop here only when scan-sexps fails
1893 ;; (i.e. unbalance exps.)
1896 (re-search-forward *c-def-regexp
*)
1898 ((= (preceding-char) ?
#)
1899 ;; preprocessor macro, see if it's one we handle
1900 (cond ((looking-at "\\(define\\|ifdef\\)\\>")
1901 ;; skip forward over definition symbol
1902 ;; and add it to database
1903 (and (forward-word 2)
1904 (setq string
(symbol-before-point))
1906 (add-completion-to-tail-if-new string
)))))
1909 (setq next-point
(point))
1912 ;; scan to next separator char.
1913 (setq next-point
(scan-sexps next-point
1)))
1914 ;; position the point on the word we want to add
1915 (goto-char next-point
)
1916 (while (= (setq char
(following-char)) ?
*)
1917 ;; handle pointer ref
1918 ;; move to next separator char.
1920 (setq next-point
(scan-sexps (point) 1))))
1923 (if (setq string
(symbol-under-point))
1924 ;; (push string foo)
1925 (add-completion-to-tail-if-new string
)
1926 ;; Local TMC hack (useful for parsing paris.h)
1927 (if (and (looking-at "_AP") ;; "ansi prototype"
1931 (symbol-under-point))))
1932 (add-completion-to-tail-if-new string
)))
1934 (goto-char next-point
)
1935 ;; (push (format "%c" (following-char)) foo)
1936 (if (= (char-syntax char
) ?\
()
1937 ;; if on an opening delimiter, go to end
1938 (while (= (char-syntax char
) ?\
()
1939 (setq next-point
(scan-sexps next-point
1)
1940 char
(char-after next-point
)))
1942 ;; Current char is an end char.
1943 (setq next-point nil
)))))))
1944 (search-failed ;;done
1945 (throw 'finish-add-completions t
))
1947 ;; Check for failure in scan-sexps
1948 (if (member (nth 1 e
)
1949 '("Containing expression ends prematurely"
1950 "Unbalanced parentheses"))
1951 ;; unbalanced paren., keep going
1954 (message "Error parsing C buffer for completions--please send bug report")
1955 (throw 'finish-add-completions t
))))))))))
1958 ;;---------------------------------------------------------------------------
1960 ;;---------------------------------------------------------------------------
1962 ;; The version of save-completions-to-file called at kill-emacs time.
1963 (defun kill-emacs-save-completions ()
1964 (if (and save-completions-flag enable-completion cmpl-initialized-p
)
1966 ((not cmpl-completions-accepted-p
)
1967 (message "Completions database has not changed - not writing."))
1969 (save-completions-to-file))))
1970 (cmpl-statistics-block (record-cmpl-kill-emacs)))
1972 ;; There is no point bothering to change this again
1973 ;; unless the package changes so much that it matters
1974 ;; for people that have saved completions.
1975 (defconst completion-version
"11")
1977 (defconst saved-cmpl-file-header
1978 ";;; Completion Initialization file.
1980 ;; Format is (<string> . <last-use-time>)
1981 ;; <string> is the completion
1982 ;; <last-use-time> is the time the completion was last used
1983 ;; If it is t, the completion will never be pruned from the file.
1984 ;; Otherwise it is in hours since origin.
1987 (defun completion-backup-filename (filename)
1988 (concat filename
".BAK"))
1990 (defun save-completions-to-file (&optional filename
)
1991 "Save completions in init file FILENAME.
1992 If file name is not specified, use `save-completions-file-name'."
1994 (setq filename
(expand-file-name (or filename save-completions-file-name
)))
1995 (if (file-writable-p filename
)
1997 (if (not cmpl-initialized-p
)
1998 (completion-initialize)) ;; make sure everything's loaded
1999 (message "Saving completions to file %s" filename
)
2001 (let* ((delete-old-versions t
)
2002 (kept-old-versions 0)
2003 (kept-new-versions completions-file-versions-kept
)
2005 (current-time (cmpl-hours-since-origin))
2009 (backup-filename (completion-backup-filename filename
)))
2011 (with-current-buffer (get-buffer-create " *completion-save-buffer*")
2012 (setq buffer-file-name filename
)
2014 (if (not (verify-visited-file-modtime (current-buffer)))
2016 ;; file has changed on disk. Bring us up-to-date
2017 (message "Completion file has changed. Merging. . .")
2018 (load-completions-from-file filename t
)
2019 (message "Merging finished. Saving completions to file %s" filename
)))
2021 ;; prepare the buffer to be modified
2022 (clear-visited-file-modtime)
2025 (insert (format saved-cmpl-file-header completion-version
))
2026 (dolist (completion (list-all-completions))
2027 (setq total-in-db
(1+ total-in-db
))
2028 (setq last-use-time
(completion-last-use-time completion
))
2029 ;; Update num uses and maybe write completion to a file
2030 (cond ((or;; Write to file if
2032 (and (eq last-use-time t
)
2033 (setq total-perm
(1+ total-perm
)))
2035 (if (> (completion-num-uses completion
) 0)
2037 (setq last-use-time current-time
)
2038 ;; or it was saved before and
2040 ;; save-completions-retention-time is nil
2041 (or (not save-completions-retention-time
)
2042 ;; or time since last use is < ...retention-time*
2043 (< (- current-time last-use-time
)
2044 save-completions-retention-time
)))))
2046 (setq total-saved
(1+ total-saved
))
2047 (insert (prin1-to-string (cons (completion-string completion
)
2048 last-use-time
)) "\n"))))
2052 (let ((file-exists-p (file-exists-p filename
)))
2055 ;; If file exists . . .
2056 ;; Save a backup(so GNU doesn't screw us when we're out of disk)
2057 ;; (GNU leaves a 0 length file if it gets a disk full error!)
2059 ;; If backup doesn't exit, Rename current to backup
2060 ;; {If backup exists the primary file is probably messed up}
2061 (or (file-exists-p backup-filename
)
2062 (rename-file filename backup-filename
))
2063 ;; Copy the backup back to the current name
2064 ;; (so versioning works)
2065 (copy-file backup-filename filename t
)))
2069 ;; If successful, remove backup
2070 (delete-file backup-filename
)))
2072 (set-buffer-modified-p nil
)
2073 (message "Couldn't save completion file `%s'" filename
)))
2074 ;; Reset accepted-p flag
2075 (setq cmpl-completions-accepted-p nil
) )
2076 (cmpl-statistics-block
2077 (record-save-completions total-in-db total-perm total-saved
))))))
2079 ;;(defun auto-save-completions ()
2080 ;; (if (and save-completions-flag enable-completion cmpl-initialized-p
2081 ;; *completion-auto-save-period*
2082 ;; (> cmpl-emacs-idle-time *completion-auto-save-period*)
2083 ;; cmpl-completions-accepted-p)
2084 ;; (save-completions-to-file)))
2086 ;;(add-hook 'cmpl-emacs-idle-time-hooks 'auto-save-completions)
2088 (defun load-completions-from-file (&optional filename no-message-p
)
2089 "Load a completion init file FILENAME.
2090 If file is not specified, then use `save-completions-file-name'."
2092 (setq filename
(expand-file-name (or filename save-completions-file-name
)))
2093 (let* ((backup-filename (completion-backup-filename filename
))
2094 (backup-readable-p (file-readable-p backup-filename
)))
2095 (if backup-readable-p
(setq filename backup-filename
))
2096 (if (file-readable-p filename
)
2098 (if (not no-message-p
)
2099 (message "Loading completions from %sfile %s . . ."
2100 (if backup-readable-p
"backup " "") filename
))
2101 (with-current-buffer (get-buffer-create " *completion-save-buffer*")
2102 (setq buffer-file-name filename
)
2103 ;; prepare the buffer to be modified
2104 (clear-visited-file-modtime)
2107 (let ((insert-okay-p nil
)
2108 (buffer (current-buffer))
2109 string entry last-use-time
2110 cmpl-entry cmpl-last-use-time
2111 (current-completion-source cmpl-source-init-file
)
2113 (cmpl-statistics-block
2114 (aref completion-add-count-vector cmpl-source-file-parsing
)))
2115 (total-in-file 0) (total-perm 0))
2116 ;; insert the file into a buffer
2118 (progn (insert-file-contents filename t
)
2119 (setq insert-okay-p t
))
2122 (message "File error trying to load completion file %s."
2127 (goto-char (point-min))
2131 (setq entry
(read buffer
))
2132 (setq total-in-file
(1+ total-in-file
))
2135 (stringp (setq string
(car entry
)))
2137 ((eq (setq last-use-time
(cdr entry
)) 'T
)
2138 ;; handle case sensitivity
2139 (setq total-perm
(1+ total-perm
))
2140 (setq last-use-time t
))
2141 ((eq last-use-time t
)
2142 (setq total-perm
(1+ total-perm
)))
2143 ((integerp last-use-time
))))
2146 (setq cmpl-last-use-time
2147 (completion-last-use-time
2149 (add-completion-to-tail-if-new string
))))
2150 (if (or (eq last-use-time t
)
2151 (and (> last-use-time
1000);;backcompatibility
2152 (not (eq cmpl-last-use-time t
))
2153 (or (not cmpl-last-use-time
)
2155 (> last-use-time cmpl-last-use-time
))))
2156 ;; update last-use-time
2157 (set-completion-last-use-time cmpl-entry last-use-time
)))
2160 (message "Error: invalid saved completion - %s"
2161 (prin1-to-string entry
))
2162 ;; try to get back in sync
2163 (search-forward "\n("))))
2165 (message "End of file while reading completions."))
2167 (if (= (point) (point-max))
2168 (if (not no-message-p
)
2169 (message "Loading completions from file %s . . . Done."
2171 (message "End of file while reading completions."))))))
2173 (cmpl-statistics-block
2174 (record-load-completions
2175 total-in-file total-perm
2176 (- (aref completion-add-count-vector cmpl-source-init-file
)
2180 (defun completion-initialize ()
2181 "Load the default completions file.
2182 Also sets up so that exiting Emacs will automatically save the file."
2184 (unless cmpl-initialized-p
2185 (load-completions-from-file)
2186 (setq cmpl-initialized-p t
)))
2188 ;;-----------------------------------------------
2189 ;; Kill region patch
2190 ;;-----------------------------------------------
2192 (defun completion-kill-region (&optional beg end
)
2193 "Kill between point and mark.
2194 The text is deleted but saved in the kill ring.
2195 The command \\[yank] can retrieve it from there.
2196 /(If you want to kill and then yank immediately, use \\[copy-region-as-kill].)
2198 This is the primitive for programs to kill text (as opposed to deleting it).
2199 Supply two arguments, character positions indicating the stretch of text
2201 Any command that calls this function is a \"kill command\".
2202 If the previous command was also a kill command,
2203 the text killed this time appends to the text killed last time
2204 to make one entry in the kill ring.
2205 Patched to remove the most recent completion."
2207 (cond ((eq last-command
'complete
)
2208 (delete-region (point) cmpl-last-insert-location
)
2209 (insert cmpl-original-string
)
2210 (setq completion-to-accept nil
)
2211 (cmpl-statistics-block
2212 (record-complete-failed)))
2214 (kill-region beg end
))))
2217 ;;-----------------------------------------------
2218 ;; Patches to self-insert-command.
2219 ;;-----------------------------------------------
2221 ;; Need 2 versions: generic separator chars. and space (to get auto fill
2224 ;; All common separators (eg. space "(" ")" """) characters go through a
2225 ;; function to add new words to the list of words to complete from:
2226 ;; COMPLETION-SEPARATOR-SELF-INSERT-COMMAND (arg).
2227 ;; If the character before this was an alpha-numeric then this adds the
2228 ;; symbol before point to the completion list (using ADD-COMPLETION).
2230 (defun completion-separator-self-insert-command (arg)
2232 (if (command-remapping 'self-insert-command
)
2233 (funcall (command-remapping 'self-insert-command
) arg
)
2234 (use-completion-before-separator)
2235 (self-insert-command arg
)))
2237 (defun completion-separator-self-insert-autofilling (arg)
2239 (if (command-remapping 'self-insert-command
)
2240 (funcall (command-remapping 'self-insert-command
) arg
)
2241 (use-completion-before-separator)
2242 (self-insert-command arg
)
2243 (and auto-fill-function
2244 (funcall auto-fill-function
))))
2246 ;;-----------------------------------------------
2248 ;;-----------------------------------------------
2250 ;; Note that because of the way byte compiling works, none of
2251 ;; the functions defined with this macro get byte compiled.
2253 (defun completion-def-wrapper (function-name type
)
2254 "Add a call to update the completion database before function execution.
2255 TYPE is the type of the wrapper to be added. Can be :before or :under."
2256 (put function-name
'completion-function
2258 '((:separator . use-completion-before-separator
)
2259 (:before . use-completion-before-point
)
2260 (:backward-under . use-completion-backward-under
)
2261 (:backward . use-completion-backward
)
2262 (:under . use-completion-under-point
)
2263 (:under-or-before . use-completion-under-or-before-point
)
2264 (:minibuffer-separator
2265 . use-completion-minibuffer-separator
))))))
2267 (defun use-completion-minibuffer-separator ()
2268 (let ((completion-syntax-table completion-standard-syntax-table
))
2269 (use-completion-before-separator)))
2271 (defun use-completion-backward-under ()
2272 (use-completion-under-point)
2273 (if (eq last-command
'complete
)
2274 ;; probably a failed completion if you have to back up
2275 (cmpl-statistics-block (record-complete-failed))))
2277 (defun use-completion-backward ()
2278 (if (eq last-command
'complete
)
2279 ;; probably a failed completion if you have to back up
2280 (cmpl-statistics-block (record-complete-failed))))
2282 (defun completion-before-command ()
2283 (funcall (or (and (symbolp this-command
)
2284 (get this-command
'completion-function
))
2285 'use-completion-under-or-before-point
)))
2289 (defconst completion-lisp-syntax-table
2290 (let ((table (copy-syntax-table completion-standard-syntax-table
))
2291 (symbol-chars '(?
! ?
& ?? ?
= ?^
)))
2292 (dolist (char symbol-chars
)
2293 (modify-syntax-entry char
"_" table
))
2296 (defun completion-lisp-mode-hook ()
2297 (setq completion-syntax-table completion-lisp-syntax-table
)
2299 (local-set-key "!" 'self-insert-command
)
2300 (local-set-key "&" 'self-insert-command
)
2301 (local-set-key "%" 'self-insert-command
)
2302 (local-set-key "?" 'self-insert-command
)
2303 (local-set-key "=" 'self-insert-command
)
2304 (local-set-key "^" 'self-insert-command
))
2308 (defconst completion-c-syntax-table
2309 (let ((table (copy-syntax-table completion-standard-syntax-table
))
2310 (separator-chars '(?
+ ?
* ?
/ ?
: ?%
)))
2311 (dolist (char separator-chars
)
2312 (modify-syntax-entry char
" " table
))
2315 (completion-def-wrapper 'electric-c-semi
:separator
)
2316 (defun completion-c-mode-hook ()
2317 (setq completion-syntax-table completion-c-syntax-table
)
2318 (local-set-key "+" 'completion-separator-self-insert-command
)
2319 (local-set-key "*" 'completion-separator-self-insert-command
)
2320 (local-set-key "/" 'completion-separator-self-insert-command
))
2322 ;; FORTRAN mode diffs. (these are defined when fortran is called)
2324 (defconst completion-fortran-syntax-table
2325 (let ((table (copy-syntax-table completion-standard-syntax-table
))
2326 (separator-chars '(?
+ ?- ?
* ?
/ ?
:)))
2327 (dolist (char separator-chars
)
2328 (modify-syntax-entry char
" " table
))
2331 (defun completion-setup-fortran-mode ()
2332 (setq completion-syntax-table completion-fortran-syntax-table
)
2333 (local-set-key "+" 'completion-separator-self-insert-command
)
2334 (local-set-key "-" 'completion-separator-self-insert-command
)
2335 (local-set-key "*" 'completion-separator-self-insert-command
)
2336 (local-set-key "/" 'completion-separator-self-insert-command
))
2338 ;; Enable completion mode.
2340 (defvar fortran-mode-hook
)
2342 (defvar completion-saved-bindings nil
)
2345 (define-minor-mode dynamic-completion-mode
2346 "Enable dynamic word-completion."
2348 ;; This is always good, not specific to dynamic-completion-mode.
2349 (define-key function-key-map
[C-return
] [?\C-
\r])
2351 (dolist (x '((find-file-hook . completion-find-file-hook
)
2352 (pre-command-hook . completion-before-command
)
2353 ;; Save completions when killing Emacs.
2354 (kill-emacs-hook . kill-emacs-save-completions
)
2356 ;; Install the appropriate mode tables.
2357 (lisp-mode-hook . completion-lisp-mode-hook
)
2358 (c-mode-hook . completion-c-mode-hook
)
2359 (fortran-mode-hook . completion-setup-fortran-mode
)))
2360 (if dynamic-completion-mode
2361 (add-hook (car x
) (cdr x
))
2362 (remove-hook (car x
) (cdr x
))))
2364 ;; "Complete" Key Keybindings. We don't want to use a minor-mode
2365 ;; map because these have too high a priority. We could/should
2366 ;; probably change the interpretation of minor-mode-map-alist such
2367 ;; that a map has lower precedence if the symbol is not buffer-local.
2368 (while completion-saved-bindings
2369 (let ((binding (pop completion-saved-bindings
)))
2370 (global-set-key (car binding
) (cdr binding
))))
2371 (when dynamic-completion-mode
2373 '(("\M-\r" . complete
)
2374 ([?\C-
\r] . complete
)
2377 ;; (add-completion "cumberland")
2378 ;; (add-completion "cumberbund")
2384 ;; Patches to standard keymaps insert completions
2385 ([remap kill-region
] . completion-kill-region
)
2388 ;; We've used the completion syntax table given as a guide.
2390 ;; Global separator chars.
2391 ;; We left out <tab> because there are too many special
2392 ;; cases for it. Also, in normal coding it's rarely typed
2394 (" " . completion-separator-self-insert-autofilling
)
2395 ("!" . completion-separator-self-insert-command
)
2396 ("%" . completion-separator-self-insert-command
)
2397 ("^" . completion-separator-self-insert-command
)
2398 ("&" . completion-separator-self-insert-command
)
2399 ("(" . completion-separator-self-insert-command
)
2400 (")" . completion-separator-self-insert-command
)
2401 ("=" . completion-separator-self-insert-command
)
2402 ("`" . completion-separator-self-insert-command
)
2403 ("|" . completion-separator-self-insert-command
)
2404 ("{" . completion-separator-self-insert-command
)
2405 ("}" . completion-separator-self-insert-command
)
2406 ("[" . completion-separator-self-insert-command
)
2407 ("]" . completion-separator-self-insert-command
)
2408 (";" . completion-separator-self-insert-command
)
2409 ("\"". completion-separator-self-insert-command
)
2410 ("'" . completion-separator-self-insert-command
)
2411 ("#" . completion-separator-self-insert-command
)
2412 ("," . completion-separator-self-insert-command
)
2413 ("?" . completion-separator-self-insert-command
)
2415 ;; We include period and colon even though they are symbol
2417 ;; - in text we want to pick up the last word in a sentence.
2418 ;; - in C pointer refs. we want to pick up the first symbol
2419 ;; - it won't make a difference for lisp mode (package names
2421 ("." . completion-separator-self-insert-command
)
2422 (":" . completion-separator-self-insert-command
)))
2423 (push (cons (car binding
) (lookup-key global-map
(car binding
)))
2424 completion-saved-bindings
)
2425 (global-set-key (car binding
) (cdr binding
)))
2433 (cmpl-statistics-block
2434 (record-completion-file-loaded))
2436 (completion-initialize)))
2438 ;;-----------------------------------------------
2439 ;; End of line chars.
2440 ;;-----------------------------------------------
2441 (completion-def-wrapper 'newline
:separator
)
2442 (completion-def-wrapper 'newline-and-indent
:separator
)
2443 (completion-def-wrapper 'comint-send-input
:separator
)
2444 (completion-def-wrapper 'exit-minibuffer
:minibuffer-separator
)
2445 (completion-def-wrapper 'eval-print-last-sexp
:separator
)
2446 (completion-def-wrapper 'eval-last-sexp
:separator
)
2447 ;;(completion-def-wrapper 'minibuffer-complete-and-exit :minibuffer)
2449 ;;-----------------------------------------------
2451 ;;-----------------------------------------------
2453 (completion-def-wrapper 'next-line
:under-or-before
)
2454 (completion-def-wrapper 'previous-line
:under-or-before
)
2455 (completion-def-wrapper 'beginning-of-buffer
:under-or-before
)
2456 (completion-def-wrapper 'end-of-buffer
:under-or-before
)
2457 (completion-def-wrapper 'beginning-of-line
:under-or-before
)
2458 (completion-def-wrapper 'end-of-line
:under-or-before
)
2459 (completion-def-wrapper 'forward-char
:under-or-before
)
2460 (completion-def-wrapper 'forward-word
:under-or-before
)
2461 (completion-def-wrapper 'forward-sexp
:under-or-before
)
2462 (completion-def-wrapper 'backward-char
:backward-under
)
2463 (completion-def-wrapper 'backward-word
:backward-under
)
2464 (completion-def-wrapper 'backward-sexp
:backward-under
)
2466 (completion-def-wrapper 'delete-backward-char
:backward
)
2467 (completion-def-wrapper 'delete-backward-char-untabify
:backward
)
2469 ;; Old names, non-namespace-clean.
2470 (defvaralias 'cmpl-syntax-table
'completion-syntax-table
)
2471 (defalias 'initialize-completions
'completion-initialize
)
2473 (dolist (x '("^To complete, the point must be after a symbol at least [0-9]* character long\\.$"
2474 "^The string \".*\" is too short to be saved as a completion\\.$"))
2475 (add-to-list 'debug-ignored-errors x
))
2477 (provide 'completion
)
2479 ;; arch-tag: 6990dafe-4abd-4a1f-8c42-ffb25e120f5e
2480 ;;; completion.el ends here