2005-09-24 Emilio C. Lopes <eclig@gmx.net>
[emacs.git] / lisp / completion.el
blob12df9a52714767d8b3f112be945761070420302e
1 ;;; completion.el --- dynamic word-completion code
3 ;; Copyright (C) 1990, 1993, 1995, 1997, 2002, 2003, 2004,
4 ;; 2005 Free Software Foundation, Inc.
6 ;; Maintainer: FSF
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 2, or (at your option)
16 ;; 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; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26 ;; Boston, MA 02110-1301, USA.
28 ;;; Commentary:
30 ;; What to put in .emacs
31 ;;-----------------------
32 ;; (dynamic-completion-mode)
34 ;;---------------------------------------------------------------------------
35 ;; Documentation [Slightly out of date]
36 ;;---------------------------------------------------------------------------
37 ;; (also check the documentation string of the functions)
39 ;; Introduction
40 ;;---------------
42 ;; After you type a few characters, pressing the "complete" key inserts
43 ;; the rest of the word you are likely to type.
45 ;; This watches all the words that you type and remembers them. When
46 ;; typing a new word, pressing "complete" (meta-return) "completes" the
47 ;; word by inserting the most recently used word that begins with the
48 ;; same characters. If you press meta-return repeatedly, it cycles
49 ;; through all the words it knows about.
51 ;; If you like the completion then just continue typing, it is as if you
52 ;; entered the text by hand. If you want the inserted extra characters
53 ;; to go away, type control-w or delete. More options are described below.
55 ;; The guesses are made in the order of the most recently "used". Typing
56 ;; in a word and then typing a separator character (such as a space) "uses"
57 ;; the word. So does moving a cursor over the word. If no words are found,
58 ;; it uses an extended version of the dabbrev style completion.
60 ;; You automatically save the completions you use to a file between
61 ;; sessions.
63 ;; Completion enables programmers to enter longer, more descriptive
64 ;; variable names while typing fewer keystrokes than they normally would.
67 ;; Full documentation
68 ;;---------------------
70 ;; A "word" is any string containing characters with either word or symbol
71 ;; syntax. [E.G. Any alphanumeric string with hyphens, underscores, etc.]
72 ;; Unless you change the constants, you must type at least three characters
73 ;; for the word to be recognized. Only words longer than 6 characters are
74 ;; saved.
76 ;; When you load this file, completion will be on. I suggest you use the
77 ;; compiled version (because it is noticeably faster).
79 ;; M-x completion-mode toggles whether or not new words are added to the
80 ;; database by changing the value of enable-completion.
82 ;; SAVING/LOADING COMPLETIONS
83 ;; Completions are automatically saved from one session to another
84 ;; (unless save-completions-flag or enable-completion is nil).
85 ;; Loading this file (or calling initialize-completions) causes EMACS
86 ;; to load a completions database for a saved completions file
87 ;; (default: ~/.completions). When you exit, EMACS saves a copy of the
88 ;; completions that you
89 ;; often use. When you next start, EMACS loads in the saved completion file.
91 ;; The number of completions saved depends loosely on
92 ;; *saved-completions-decay-factor*. Completions that have never been
93 ;; inserted via "complete" are not saved. You are encouraged to experiment
94 ;; with different functions (see compute-completion-min-num-uses).
96 ;; Some completions are permanent and are always saved out. These
97 ;; completions have their num-uses slot set to T. Use
98 ;; add-permanent-completion to do this
100 ;; Completions are saved only if enable-completion is T. The number of old
101 ;; versions kept of the saved completions file is controlled by
102 ;; completions-file-versions-kept.
104 ;; COMPLETE KEY OPTIONS
105 ;; The complete function takes a numeric arguments.
106 ;; control-u :: leave the point at the beginning of the completion rather
107 ;; than the middle.
108 ;; a number :: rotate through the possible completions by that amount
109 ;; `-' :: same as -1 (insert previous completion)
111 ;; HOW THE DATABASE IS MAINTAINED
112 ;; <write>
114 ;; UPDATING THE DATABASE MANUALLY
115 ;; m-x kill-completion
116 ;; kills the completion at point.
117 ;; m-x add-completion
118 ;; m-x add-permanent-completion
120 ;; UPDATING THE DATABASE FROM A SOURCE CODE FILE
121 ;; m-x add-completions-from-buffer
122 ;; Parses all the definition names from a C or LISP mode buffer and
123 ;; adds them to the completion database.
125 ;; m-x add-completions-from-lisp-file
126 ;; Parses all the definition names from a C or Lisp mode file and
127 ;; adds them to the completion database.
129 ;; UPDATING THE DATABASE FROM A TAGS TABLE
130 ;; m-x add-completions-from-tags-table
131 ;; Adds completions from the current tags-table-buffer.
133 ;; HOW A COMPLETION IS FOUND
134 ;; <write>
136 ;; STRING CASING
137 ;; Completion is string case independent if case-fold-search has its
138 ;; normal default of T. Also when the completion is inserted the case of the
139 ;; entry is coerced appropriately.
140 ;; [E.G. APP --> APPROPRIATELY app --> appropriately
141 ;; App --> Appropriately]
143 ;; INITIALIZATION
144 ;; The form `(initialize-completions)' initializes the completion system by
145 ;; trying to load in the user's completions. After the first cal, further
146 ;; calls have no effect so one should be careful not to put the form in a
147 ;; site's standard site-init file.
149 ;;---------------------------------------------------------------------------
153 ;;---------------------------------------------------------------------------
154 ;; Functions you might like to call
155 ;;---------------------------------------------------------------------------
157 ;; add-completion string &optional num-uses
158 ;; Adds a new string to the database
160 ;; add-permanent-completion string
161 ;; Adds a new string to the database with num-uses = T
164 ;; kill-completion string
165 ;; Kills the completion from the database.
167 ;; clear-all-completions
168 ;; Clears the database
170 ;; list-all-completions
171 ;; Returns a list of all completions.
174 ;; next-completion string &optional index
175 ;; Returns a completion entry that starts with string.
177 ;; find-exact-completion string
178 ;; Returns a completion entry that exactly matches string.
180 ;; complete
181 ;; Inserts a completion at point
183 ;; initialize-completions
184 ;; Loads the completions file and sets up so that exiting emacs will
185 ;; save them.
187 ;; save-completions-to-file &optional filename
188 ;; load-completions-from-file &optional filename
190 ;;-----------------------------------------------
191 ;; Other functions
192 ;;-----------------------------------------------
194 ;; get-completion-list string
196 ;; These things are for manipulating the structure
197 ;; make-completion string num-uses
198 ;; completion-num-uses completion
199 ;; completion-string completion
200 ;; set-completion-num-uses completion num-uses
201 ;; set-completion-string completion string
205 ;;-----------------------------------------------
206 ;; To Do :: (anybody ?)
207 ;;-----------------------------------------------
209 ;; Implement Lookup and keyboard interface in C
210 ;; Add package prefix smarts (for Common Lisp)
211 ;; Add autoprompting of possible completions after every keystroke (fast
212 ;; terminals only !)
213 ;; Add doc. to texinfo
216 ;;-----------------------------------------------
217 ;;; Change Log:
218 ;;-----------------------------------------------
219 ;; Sometime in '84 Brewster implemented a somewhat buggy version for
220 ;; Symbolics LISPMs.
221 ;; Jan. '85 Jim became enamored of the idea and implemented a faster,
222 ;; more robust version.
223 ;; With input from many users at TMC, (rose, craig, and gls come to mind),
224 ;; the current style of interface was developed.
225 ;; 9/87, Jim and Brewster took terminals home. Yuck. After
226 ;; complaining for a while Brewster implemented a subset of the current
227 ;; LISPM version for GNU Emacs.
228 ;; 8/88 After complaining for a while (and with sufficient
229 ;; promised rewards), Jim reimplemented a version of GNU completion
230 ;; superior to that of the LISPM version.
232 ;;-----------------------------------------------
233 ;; Acknowledgements
234 ;;-----------------------------------------------
235 ;; Cliff Lasser (cal@think.com), Kevin Herbert (kph@cisco.com),
236 ;; eero@media-lab, kgk@cs.brown.edu, jla@ai.mit.edu,
238 ;;-----------------------------------------------
239 ;; Change Log
240 ;;-----------------------------------------------
241 ;; From version 9 to 10
242 ;; - Allowance for non-integral *completion-version* nos.
243 ;; - Fix cmpl-apply-as-top-level for keyboard macros
244 ;; - Fix broken completion merging (in save-completions-to-file)
245 ;; - More misc. fixes for version 19.0 of emacs
247 ;; From Version 8 to 9
248 ;; - Ported to version 19.0 of emacs (backcompatible with version 18)
249 ;; - Added add-completions-from-tags-table (with thanks to eero@media-lab)
251 ;; From Version 7 to 8
252 ;; - Misc. changes to comments
253 ;; - new completion key bindings: c-x o, M->, M-<, c-a, c-e
254 ;; - cdabbrev now checks all the visible window buffers and the "other buffer"
255 ;; - `%' is now a symbol character rather than a separator (except in C mode)
257 ;; From Version 6 to 7
258 ;; - Fixed bug with saving out .completion file the first time
260 ;; From Version 5 to 6
261 ;; - removed statistics recording
262 ;; - reworked advise to handle autoloads
263 ;; - Fixed fortran mode support
264 ;; - Added new cursor motion triggers
266 ;; From Version 4 to 5
267 ;; - doesn't bother saving if nothing has changed
268 ;; - auto-save if haven't used for a 1/2 hour
269 ;; - save period extended to two weeks
270 ;; - minor fix to capitalization code
271 ;; - added *completion-auto-save-period* to variables recorded.
272 ;; - added reenter protection to cmpl-record-statistics-filter
273 ;; - added backup protection to save-completions-to-file (prevents
274 ;; problems with disk full errors)
276 ;;; Code:
278 ;;---------------------------------------------------------------------------
279 ;; User changeable parameters
280 ;;---------------------------------------------------------------------------
282 (defgroup completion nil
283 "Dynamic word-completion code."
284 :group 'matching
285 :group 'convenience)
288 (defcustom enable-completion t
289 "*Non-nil means enable recording and saving of completions.
290 If nil, no new words are added to the database or saved to the init file."
291 :type 'boolean
292 :group 'completion)
294 (defcustom save-completions-flag t
295 "*Non-nil means save most-used completions when exiting Emacs.
296 See also `save-completions-retention-time'."
297 :type 'boolean
298 :group 'completion)
300 (defcustom save-completions-file-name (convert-standard-filename "~/.completions")
301 "*The filename to save completions to."
302 :type 'file
303 :group 'completion)
305 (defcustom save-completions-retention-time 336
306 "*Discard a completion if unused for this many hours.
307 \(1 day = 24, 1 week = 168). If this is 0, non-permanent completions
308 will not be saved unless these are used. Default is two weeks."
309 :type 'integer
310 :group 'completion)
312 (defcustom completion-on-separator-character nil
313 "*Non-nil means separator characters mark previous word as used.
314 This means the word will be saved as a completion."
315 :type 'boolean
316 :group 'completion)
318 (defcustom completions-file-versions-kept kept-new-versions
319 "*Number of versions to keep for the saved completions file."
320 :type 'integer
321 :group 'completion)
323 (defcustom completion-prompt-speed-threshold 4800
324 "*Minimum output speed at which to display next potential completion."
325 :type 'integer
326 :group 'completion)
328 (defcustom completion-cdabbrev-prompt-flag nil
329 "*If non-nil, the next completion prompt does a cdabbrev search.
330 This can be time consuming."
331 :type 'boolean
332 :group 'completion)
334 (defcustom completion-search-distance 15000
335 "*How far to search in the buffer when looking for completions.
336 In number of characters. If nil, search the whole buffer."
337 :type 'integer
338 :group 'completion)
340 (defcustom completions-merging-modes '(lisp c)
341 "*List of modes {`c' or `lisp'} for automatic completions merging.
342 Definitions from visited files which have these modes
343 are automatically added to the completion database."
344 :type '(set (const lisp) (const c))
345 :group 'completion)
347 ;;(defvar *record-cmpl-statistics-p* nil
348 ;; "*If non-nil, record completion statistics.")
350 ;;(defvar *completion-auto-save-period* 1800
351 ;; "*The period in seconds to wait for emacs to be idle before autosaving
352 ;;the completions. Default is a 1/2 hour.")
354 (defvar completion-min-length 6
355 "*The minimum length of a stored completion.
356 DON'T CHANGE WITHOUT RECOMPILING ! This is used by macros.")
358 (defvar completion-max-length 200
359 "*The maximum length of a stored completion.
360 DON'T CHANGE WITHOUT RECOMPILING ! This is used by macros.")
362 (defvar completion-prefix-min-length 3
363 "The minimum length of a completion search string.
364 DON'T CHANGE WITHOUT RECOMPILING ! This is used by macros.")
366 ;;---------------------------------------------------------------------------
367 ;; Internal Variables
368 ;;---------------------------------------------------------------------------
370 (defvar cmpl-initialized-p nil
371 "Set to t when the completion system is initialized.
372 Indicates that the old completion file has been read in.")
374 (defvar cmpl-completions-accepted-p nil
375 "Set to t as soon as the first completion has been accepted.
376 Used to decide whether to save completions.")
378 (defvar cmpl-preceding-syntax)
380 (defvar completion-string)
382 ;;---------------------------------------------------------------------------
383 ;; Low level tools
384 ;;---------------------------------------------------------------------------
386 ;;-----------------------------------------------
387 ;; String case coercion
388 ;;-----------------------------------------------
390 (defun cmpl-string-case-type (string)
391 "Return :capitalized, :up, :down, :mixed, or :neither for case of STRING."
392 (let ((case-fold-search nil))
393 (cond ((string-match "[[:lower:]]" string)
394 (cond ((string-match "[[:upper:]]" string)
395 (cond ((and (> (length string) 1)
396 (null (string-match "[[:upper:]]" string 1)))
397 :capitalized)
399 :mixed)))
400 (t :down)))
402 (cond ((string-match "[[:upper:]]" string)
403 :up)
404 (t :neither))))))
406 ;; Tests -
407 ;; (cmpl-string-case-type "123ABCDEF456") --> :up
408 ;; (cmpl-string-case-type "123abcdef456") --> :down
409 ;; (cmpl-string-case-type "123aBcDeF456") --> :mixed
410 ;; (cmpl-string-case-type "123456") --> :neither
411 ;; (cmpl-string-case-type "Abcde123") --> :capitalized
413 (defun cmpl-coerce-string-case (string case-type)
414 (cond ((eq case-type :down) (downcase string))
415 ((eq case-type :up) (upcase string))
416 ((eq case-type :capitalized)
417 (setq string (downcase string))
418 (aset string 0 (logand ?\337 (aref string 0)))
419 string)
420 (t string)))
422 (defun cmpl-merge-string-cases (string-to-coerce given-string)
423 (let ((string-case-type (cmpl-string-case-type string-to-coerce)))
424 (cond ((memq string-case-type '(:down :up :capitalized))
425 ;; Found string is in a standard case. Coerce to a type based on
426 ;; the given string
427 (cmpl-coerce-string-case string-to-coerce
428 (cmpl-string-case-type given-string)))
430 ;; If the found string is in some unusual case, just insert it
431 ;; as is
432 string-to-coerce))))
434 ;; Tests -
435 ;; (cmpl-merge-string-cases "AbCdEf456" "abc") --> AbCdEf456
436 ;; (cmpl-merge-string-cases "abcdef456" "ABC") --> ABCDEF456
437 ;; (cmpl-merge-string-cases "ABCDEF456" "Abc") --> Abcdef456
438 ;; (cmpl-merge-string-cases "ABCDEF456" "abc") --> abcdef456
441 (defun cmpl-hours-since-origin ()
442 (let ((time (current-time)))
443 (floor (+ (* 65536.0 (nth 0 time)) (nth 1 time)) 3600)))
445 ;;---------------------------------------------------------------------------
446 ;; "Symbol" parsing functions
447 ;;---------------------------------------------------------------------------
448 ;; The functions symbol-before-point, symbol-under-point, etc. quickly return
449 ;; an appropriate symbol string. The strategy is to temporarily change
450 ;; the syntax table to enable fast symbol searching. There are three classes
451 ;; of syntax in these "symbol" syntax tables ::
453 ;; syntax (?_) - "symbol" chars (e.g. alphanumerics)
454 ;; syntax (?w) - symbol chars to ignore at end of words (e.g. period).
455 ;; syntax (? ) - everything else
457 ;; Thus by judicious use of scan-sexps and forward-word, we can get
458 ;; the word we want relatively fast and without consing.
460 ;; Why do we need a separate category for "symbol chars to ignore at ends" ?
461 ;; For example, in LISP we want starting :'s trimmed
462 ;; so keyword argument specifiers also define the keyword completion. And,
463 ;; for example, in C we want `.' appearing in a structure ref. to
464 ;; be kept intact in order to store the whole structure ref.; however, if
465 ;; it appears at the end of a symbol it should be discarded because it is
466 ;; probably used as a period.
468 ;; Here is the default completion syntax ::
469 ;; Symbol chars :: A-Z a-z 0-9 @ / \ * + ~ $ < > %
470 ;; Symbol chars to ignore at ends :: _ : . -
471 ;; Separator chars. :: <tab> <space> ! ^ & ( ) = ` | { } [ ] ; " ' #
472 ;; , ? <Everything else>
474 ;; Mode specific differences and notes ::
475 ;; LISP diffs ->
476 ;; Symbol chars :: ! & ? = ^
478 ;; C diffs ->
479 ;; Separator chars :: + * / : %
480 ;; A note on the hyphen (`-'). Perhaps the hyphen should also be a separator
481 ;; char., however, we wanted to have completion symbols include pointer
482 ;; references. For example, "foo->bar" is a symbol as far as completion is
483 ;; concerned.
485 ;; FORTRAN diffs ->
486 ;; Separator chars :: + - * / :
488 ;; Pathname diffs ->
489 ;; Symbol chars :: .
490 ;; Of course there is no pathname "mode" and in fact we have not implemented
491 ;; this table. However, if there was such a mode, this is what it would look
492 ;; like.
494 ;;-----------------------------------------------
495 ;; Table definitions
496 ;;-----------------------------------------------
498 (defun cmpl-make-standard-completion-syntax-table ()
499 (let ((table (make-syntax-table))
501 ;; Default syntax is whitespace.
502 (setq i 0)
503 (while (< i 256)
504 (modify-syntax-entry i " " table)
505 (setq i (1+ i)))
506 ;; alpha chars
507 (setq i 0)
508 (while (< i 26)
509 (modify-syntax-entry (+ ?a i) "_" table)
510 (modify-syntax-entry (+ ?A i) "_" table)
511 (setq i (1+ i)))
512 ;; digit chars.
513 (setq i 0)
514 (while (< i 10)
515 (modify-syntax-entry (+ ?0 i) "_" table)
516 (setq i (1+ i)))
517 ;; Other ones
518 (let ((symbol-chars '(?@ ?/ ?\\ ?* ?+ ?~ ?$ ?< ?> ?%))
519 (symbol-chars-ignore '(?_ ?- ?: ?.)))
520 (dolist (char symbol-chars)
521 (modify-syntax-entry char "_" table))
522 (dolist (char symbol-chars-ignore)
523 (modify-syntax-entry char "w" table)))
524 table))
526 (defconst cmpl-standard-syntax-table (cmpl-make-standard-completion-syntax-table))
528 (defun cmpl-make-lisp-completion-syntax-table ()
529 (let ((table (copy-syntax-table cmpl-standard-syntax-table))
530 (symbol-chars '(?! ?& ?? ?= ?^)))
531 (dolist (char symbol-chars)
532 (modify-syntax-entry char "_" table))
533 table))
535 (defun cmpl-make-c-completion-syntax-table ()
536 (let ((table (copy-syntax-table cmpl-standard-syntax-table))
537 (separator-chars '(?+ ?* ?/ ?: ?%)))
538 (dolist (char separator-chars)
539 (modify-syntax-entry char " " table))
540 table))
542 (defun cmpl-make-fortran-completion-syntax-table ()
543 (let ((table (copy-syntax-table cmpl-standard-syntax-table))
544 (separator-chars '(?+ ?- ?* ?/ ?:)))
545 (dolist (char separator-chars)
546 (modify-syntax-entry char " " table))
547 table))
549 (defconst cmpl-lisp-syntax-table (cmpl-make-lisp-completion-syntax-table))
550 (defconst cmpl-c-syntax-table (cmpl-make-c-completion-syntax-table))
551 (defconst cmpl-fortran-syntax-table (cmpl-make-fortran-completion-syntax-table))
553 (defvar cmpl-syntax-table cmpl-standard-syntax-table
554 "This variable holds the current completion syntax table.")
555 (make-variable-buffer-local 'cmpl-syntax-table)
557 ;;-----------------------------------------------
558 ;; Symbol functions
559 ;;-----------------------------------------------
560 (defvar cmpl-symbol-start nil
561 "Holds first character of symbol, after any completion symbol function.")
562 (defvar cmpl-symbol-end nil
563 "Holds last character of symbol, after any completion symbol function.")
564 ;; These are temp. vars. we use to avoid using let.
565 ;; Why ? Small speed improvement.
566 (defvar cmpl-saved-syntax nil)
567 (defvar cmpl-saved-point nil)
569 (defun symbol-under-point ()
570 "Return the symbol that the point is currently on.
571 But only if it is longer than `completion-min-length'."
572 (setq cmpl-saved-syntax (syntax-table))
573 (unwind-protect
574 (progn
575 (set-syntax-table cmpl-syntax-table)
576 (cond
577 ;; Cursor is on following-char and after preceding-char
578 ((memq (char-syntax (following-char)) '(?w ?_))
579 (setq cmpl-saved-point (point)
580 cmpl-symbol-start (scan-sexps (1+ cmpl-saved-point) -1)
581 cmpl-symbol-end (scan-sexps cmpl-saved-point 1))
582 ;; Remove chars to ignore at the start.
583 (cond ((= (char-syntax (char-after cmpl-symbol-start)) ?w)
584 (goto-char cmpl-symbol-start)
585 (forward-word 1)
586 (setq cmpl-symbol-start (point))
587 (goto-char cmpl-saved-point)))
588 ;; Remove chars to ignore at the end.
589 (cond ((= (char-syntax (char-after (1- cmpl-symbol-end))) ?w)
590 (goto-char cmpl-symbol-end)
591 (forward-word -1)
592 (setq cmpl-symbol-end (point))
593 (goto-char cmpl-saved-point)))
594 ;; Return completion if the length is reasonable.
595 (if (and (<= completion-min-length
596 (- cmpl-symbol-end cmpl-symbol-start))
597 (<= (- cmpl-symbol-end cmpl-symbol-start)
598 completion-max-length))
599 (buffer-substring cmpl-symbol-start cmpl-symbol-end)))))
600 (set-syntax-table cmpl-saved-syntax)))
602 ;; tests for symbol-under-point
603 ;; `^' indicates cursor pos. where value is returned
604 ;; simple-word-test
605 ;; ^^^^^^^^^^^^^^^^ --> simple-word-test
606 ;; _harder_word_test_
607 ;; ^^^^^^^^^^^^^^^^^^ --> harder_word_test
608 ;; .___.______.
609 ;; --> nil
610 ;; /foo/bar/quux.hello
611 ;; ^^^^^^^^^^^^^^^^^^^ --> /foo/bar/quux.hello
614 (defun symbol-before-point ()
615 "Return a string of the symbol immediately before point.
616 Returns nil if there isn't one longer than `completion-min-length'."
617 ;; This is called when a word separator is typed so it must be FAST !
618 (setq cmpl-saved-syntax (syntax-table))
619 (unwind-protect
620 (progn
621 (set-syntax-table cmpl-syntax-table)
622 ;; Cursor is on following-char and after preceding-char
623 (cond ((= (setq cmpl-preceding-syntax (char-syntax (preceding-char))) ?_)
624 ;; Number of chars to ignore at end.
625 (setq cmpl-symbol-end (point)
626 cmpl-symbol-start (scan-sexps cmpl-symbol-end -1))
627 ;; Remove chars to ignore at the start.
628 (cond ((= (char-syntax (char-after cmpl-symbol-start)) ?w)
629 (goto-char cmpl-symbol-start)
630 (forward-word 1)
631 (setq cmpl-symbol-start (point))
632 (goto-char cmpl-symbol-end)))
633 ;; Return value if long enough.
634 (if (>= cmpl-symbol-end
635 (+ cmpl-symbol-start completion-min-length))
636 (buffer-substring cmpl-symbol-start cmpl-symbol-end)))
637 ((= cmpl-preceding-syntax ?w)
638 ;; chars to ignore at end
639 (setq cmpl-saved-point (point)
640 cmpl-symbol-start (scan-sexps cmpl-saved-point -1))
641 ;; take off chars. from end
642 (forward-word -1)
643 (setq cmpl-symbol-end (point))
644 ;; remove chars to ignore at the start
645 (cond ((= (char-syntax (char-after cmpl-symbol-start)) ?w)
646 (goto-char cmpl-symbol-start)
647 (forward-word 1)
648 (setq cmpl-symbol-start (point))))
649 ;; Restore state.
650 (goto-char cmpl-saved-point)
651 ;; Return completion if the length is reasonable
652 (if (and (<= completion-min-length
653 (- cmpl-symbol-end cmpl-symbol-start))
654 (<= (- cmpl-symbol-end cmpl-symbol-start)
655 completion-max-length))
656 (buffer-substring cmpl-symbol-start cmpl-symbol-end)))))
657 (set-syntax-table cmpl-saved-syntax)))
659 ;; tests for symbol-before-point
660 ;; `^' indicates cursor pos. where value is returned
661 ;; simple-word-test
662 ;; ^ --> nil
663 ;; ^ --> nil
664 ;; ^ --> simple-w
665 ;; ^ --> simple-word-test
666 ;; _harder_word_test_
667 ;; ^ --> harder_word_test
668 ;; ^ --> harder_word_test
669 ;; ^ --> harder
670 ;; .___....
671 ;; --> nil
673 (defun symbol-under-or-before-point ()
674 ;; This could be made slightly faster but it is better to avoid
675 ;; copying all the code.
676 ;; However, it is only used by the completion string prompter.
677 ;; If it comes into common use, it could be rewritten.
678 (cond ((memq (progn
679 (setq cmpl-saved-syntax (syntax-table))
680 (unwind-protect
681 (progn
682 (set-syntax-table cmpl-syntax-table)
683 (char-syntax (following-char)))
684 (set-syntax-table cmpl-saved-syntax)))
685 '(?w ?_))
686 (symbol-under-point))
688 (symbol-before-point))))
691 (defun symbol-before-point-for-complete ()
692 ;; "Returns a string of the symbol immediately before point
693 ;; or nil if there isn't one. Like symbol-before-point but doesn't trim the
694 ;; end chars."
695 ;; Cursor is on following-char and after preceding-char
696 (setq cmpl-saved-syntax (syntax-table))
697 (unwind-protect
698 (progn
699 (set-syntax-table cmpl-syntax-table)
700 (cond ((memq (setq cmpl-preceding-syntax (char-syntax (preceding-char)))
701 '(?_ ?w))
702 (setq cmpl-symbol-end (point)
703 cmpl-symbol-start (scan-sexps cmpl-symbol-end -1))
704 ;; Remove chars to ignore at the start.
705 (cond ((= (char-syntax (char-after cmpl-symbol-start)) ?w)
706 (goto-char cmpl-symbol-start)
707 (forward-word 1)
708 (setq cmpl-symbol-start (point))
709 (goto-char cmpl-symbol-end)))
710 ;; Return completion if the length is reasonable.
711 (if (and (<= completion-prefix-min-length
712 (- cmpl-symbol-end cmpl-symbol-start))
713 (<= (- cmpl-symbol-end cmpl-symbol-start)
714 completion-max-length))
715 (buffer-substring cmpl-symbol-start cmpl-symbol-end)))))
716 ;; Restore syntax table.
717 (set-syntax-table cmpl-saved-syntax)))
719 ;; tests for symbol-before-point-for-complete
720 ;; `^' indicates cursor pos. where value is returned
721 ;; simple-word-test
722 ;; ^ --> nil
723 ;; ^ --> nil
724 ;; ^ --> simple-w
725 ;; ^ --> simple-word-test
726 ;; _harder_word_test_
727 ;; ^ --> harder_word_test
728 ;; ^ --> harder_word_test_
729 ;; ^ --> harder_
730 ;; .___....
731 ;; --> nil
735 ;;---------------------------------------------------------------------------
736 ;; Statistics Recording
737 ;;---------------------------------------------------------------------------
739 ;; Note that the guts of this has been turned off. The guts
740 ;; are in completion-stats.el.
742 ;;-----------------------------------------------
743 ;; Conditionalizing code on *record-cmpl-statistics-p*
744 ;;-----------------------------------------------
745 ;; All statistics code outside this block should use this
746 (defmacro cmpl-statistics-block (&rest body))
747 ;; "Only executes body if we are recording statistics."
748 ;; (list 'cond
749 ;; (list* '*record-cmpl-statistics-p* body)
750 ;; ))
752 ;;-----------------------------------------------
753 ;; Completion Sources
754 ;;-----------------------------------------------
756 ;; ID numbers
757 (defconst cmpl-source-unknown 0)
758 (defconst cmpl-source-init-file 1)
759 (defconst cmpl-source-file-parsing 2)
760 (defconst cmpl-source-separator 3)
761 (defconst cmpl-source-cursor-moves 4)
762 (defconst cmpl-source-interactive 5)
763 (defconst cmpl-source-cdabbrev 6)
764 (defconst num-cmpl-sources 7)
765 (defvar current-completion-source cmpl-source-unknown)
769 ;;---------------------------------------------------------------------------
770 ;; Completion Method #2: dabbrev-expand style
771 ;;---------------------------------------------------------------------------
773 ;; This method is used if there are no useful stored completions. It is
774 ;; based on dabbrev-expand with these differences :
775 ;; 1) Faster (we don't use regexps)
776 ;; 2) case coercion handled correctly
777 ;; This is called cdabbrev to differentiate it.
778 ;; We simply search backwards through the file looking for words which
779 ;; start with the same letters we are trying to complete.
782 (defvar cdabbrev-completions-tried nil)
783 ;; "A list of all the cdabbrev completions since the last reset.")
785 (defvar cdabbrev-current-point 0)
786 ;; "The current point position the cdabbrev search is at.")
788 (defvar cdabbrev-current-window nil)
789 ;; "The current window we are looking for cdabbrevs in.
790 ;; Return t if looking in (other-buffer), nil if no more cdabbrevs.")
792 (defvar cdabbrev-wrapped-p nil)
793 ;; "Return t if the cdabbrev search has wrapped around the file.")
795 (defvar cdabbrev-abbrev-string "")
796 (defvar cdabbrev-start-point 0)
797 (defvar cdabbrev-stop-point)
799 ;; Test strings for cdabbrev
800 ;; cdat-upcase ;;same namestring
801 ;; CDAT-UPCASE ;;ok
802 ;; cdat2 ;;too short
803 ;; cdat-1-2-3-4 ;;ok
804 ;; a-cdat-1 ;;doesn't start correctly
805 ;; cdat-simple ;;ok
808 (defun reset-cdabbrev (abbrev-string &optional initial-completions-tried)
809 "Reset the cdabbrev search to search for ABBREV-STRING.
810 INITIAL-COMPLETIONS-TRIED is a list of downcased strings to ignore
811 during the search."
812 (setq cdabbrev-abbrev-string abbrev-string
813 cdabbrev-completions-tried
814 (cons (downcase abbrev-string) initial-completions-tried))
815 (reset-cdabbrev-window t))
817 (defun set-cdabbrev-buffer ()
818 ;; cdabbrev-current-window must not be nil
819 (set-buffer (if (eq cdabbrev-current-window t)
820 (other-buffer)
821 (window-buffer cdabbrev-current-window))))
824 (defun reset-cdabbrev-window (&optional initializep)
825 "Reset the cdabbrev search to search for abbrev-string."
826 ;; Set the window
827 (cond (initializep
828 (setq cdabbrev-current-window (selected-window)))
829 ((eq cdabbrev-current-window t)
830 ;; Everything has failed
831 (setq cdabbrev-current-window nil))
832 (cdabbrev-current-window
833 (setq cdabbrev-current-window (next-window cdabbrev-current-window))
834 (if (eq cdabbrev-current-window (selected-window))
835 ;; No more windows, try other buffer.
836 (setq cdabbrev-current-window t))))
837 (if cdabbrev-current-window
838 (save-excursion
839 (set-cdabbrev-buffer)
840 (setq cdabbrev-current-point (point)
841 cdabbrev-start-point cdabbrev-current-point
842 cdabbrev-stop-point
843 (if completion-search-distance
844 (max (point-min)
845 (- cdabbrev-start-point completion-search-distance))
846 (point-min))
847 cdabbrev-wrapped-p nil))))
849 (defun next-cdabbrev ()
850 "Return the next possible cdabbrev expansion or nil if there isn't one.
851 `reset-cdabbrev' must've been called already.
852 This is sensitive to `case-fold-search'."
853 ;; note that case-fold-search affects the behavior of this function
854 ;; Bug: won't pick up an expansion that starts at the top of buffer
855 (if cdabbrev-current-window
856 (let (saved-point
857 saved-syntax
858 (expansion nil)
859 downcase-expansion tried-list syntax saved-point-2)
860 (save-excursion
861 (unwind-protect
862 (progn
863 ;; Switch to current completion buffer
864 (set-cdabbrev-buffer)
865 ;; Save current buffer state
866 (setq saved-point (point)
867 saved-syntax (syntax-table))
868 ;; Restore completion state
869 (set-syntax-table cmpl-syntax-table)
870 (goto-char cdabbrev-current-point)
871 ;; Loop looking for completions
872 (while
873 ;; This code returns t if it should loop again
874 (cond
875 (;; search for the string
876 (search-backward cdabbrev-abbrev-string cdabbrev-stop-point t)
877 ;; return nil if the completion is valid
878 (not
879 (and
880 ;; does it start with a separator char ?
881 (or (= (setq syntax (char-syntax (preceding-char))) ? )
882 (and (= syntax ?w)
883 ;; symbol char to ignore at end. Are we at end ?
884 (progn
885 (setq saved-point-2 (point))
886 (forward-word -1)
887 (prog1
888 (= (char-syntax (preceding-char)) ? )
889 (goto-char saved-point-2)))))
890 ;; is the symbol long enough ?
891 (setq expansion (symbol-under-point))
892 ;; have we not tried this one before
893 (progn
894 ;; See if we've already used it
895 (setq tried-list cdabbrev-completions-tried
896 downcase-expansion (downcase expansion))
897 (while (and tried-list
898 (not (string-equal downcase-expansion
899 (car tried-list))))
900 ;; Already tried, don't choose this one
901 (setq tried-list (cdr tried-list)))
902 ;; at this point tried-list will be nil if this
903 ;; expansion has not yet been tried
904 (if tried-list
905 (setq expansion nil)
906 t)))))
907 ;; search failed
908 (cdabbrev-wrapped-p
909 ;; If already wrapped, then we've failed completely
910 nil)
912 ;; need to wrap
913 (goto-char (setq cdabbrev-current-point
914 (if completion-search-distance
915 (min (point-max) (+ cdabbrev-start-point completion-search-distance))
916 (point-max))))
918 (setq cdabbrev-wrapped-p t))))
919 ;; end of while loop
920 (cond (expansion
921 ;; successful
922 (setq cdabbrev-completions-tried
923 (cons downcase-expansion cdabbrev-completions-tried)
924 cdabbrev-current-point (point)))))
925 (set-syntax-table saved-syntax)
926 (goto-char saved-point)))
927 ;; If no expansion, go to next window
928 (cond (expansion)
929 (t (reset-cdabbrev-window)
930 (next-cdabbrev))))))
932 ;; The following must be eval'd in the minibuffer ::
933 ;; (reset-cdabbrev "cdat")
934 ;; (next-cdabbrev) --> "cdat-simple"
935 ;; (next-cdabbrev) --> "cdat-1-2-3-4"
936 ;; (next-cdabbrev) --> "CDAT-UPCASE"
937 ;; (next-cdabbrev) --> "cdat-wrapping"
938 ;; (next-cdabbrev) --> "cdat_start_sym"
939 ;; (next-cdabbrev) --> nil
940 ;; (next-cdabbrev) --> nil
941 ;; (next-cdabbrev) --> nil
943 ;; _cdat_start_sym
944 ;; cdat-wrapping
947 ;;---------------------------------------------------------------------------
948 ;; Completion Database
949 ;;---------------------------------------------------------------------------
951 ;; We use two storage modes for the two search types ::
952 ;; 1) Prefix {cmpl-prefix-obarray} for looking up possible completions
953 ;; Used by search-completion-next
954 ;; the value of the symbol is nil or a cons of head and tail pointers
955 ;; 2) Interning {cmpl-obarray} to see if it's in the database
956 ;; Used by find-exact-completion, completion-in-database-p
957 ;; The value of the symbol is the completion entry
959 ;; bad things may happen if this length is changed due to the way
960 ;; GNU implements obarrays
961 (defconst cmpl-obarray-length 511)
963 (defvar cmpl-prefix-obarray (make-vector cmpl-obarray-length 0)
964 "An obarray used to store the downcased completion prefixes.
965 Each symbol is bound to a list of completion entries.")
967 (defvar cmpl-obarray (make-vector cmpl-obarray-length 0)
968 "An obarray used to store the downcased completions.
969 Each symbol is bound to a single completion entry.")
971 ;;-----------------------------------------------
972 ;; Completion Entry Structure Definition
973 ;;-----------------------------------------------
975 ;; A completion entry is a LIST of string, prefix-symbol num-uses, and
976 ;; last-use-time (the time the completion was last used)
977 ;; last-use-time is t if the string should be kept permanently
978 ;; num-uses is incremented every time the completion is used.
980 ;; We chose lists because (car foo) is faster than (aref foo 0) and the
981 ;; creation time is about the same.
983 ;; READER MACROS
985 (defmacro completion-string (completion-entry)
986 (list 'car completion-entry))
988 (defmacro completion-num-uses (completion-entry)
989 ;; "The number of times it has used. Used to decide whether to save
990 ;; it."
991 (list 'car (list 'cdr completion-entry)))
993 (defmacro completion-last-use-time (completion-entry)
994 ;; "The time it was last used. In hours since origin. Used to decide
995 ;; whether to save it. t if one should always save it."
996 (list 'nth 2 completion-entry))
998 (defmacro completion-source (completion-entry)
999 (list 'nth 3 completion-entry))
1001 ;; WRITER MACROS
1002 (defmacro set-completion-string (completion-entry string)
1003 (list 'setcar completion-entry string))
1005 (defmacro set-completion-num-uses (completion-entry num-uses)
1006 (list 'setcar (list 'cdr completion-entry) num-uses))
1008 (defmacro set-completion-last-use-time (completion-entry last-use-time)
1009 (list 'setcar (list 'cdr (list 'cdr completion-entry)) last-use-time))
1011 ;; CONSTRUCTOR
1012 (defun make-completion (string)
1013 "Return a list of a completion entry."
1014 (list (list string 0 nil current-completion-source)))
1016 ;; Obsolete
1017 ;;(defmacro cmpl-prefix-entry-symbol (completion-entry)
1018 ;; (list 'car (list 'cdr completion-entry)))
1022 ;;-----------------------------------------------
1023 ;; Prefix symbol entry definition
1024 ;;-----------------------------------------------
1025 ;; A cons of (head . tail)
1027 ;; READER Macros
1029 (defmacro cmpl-prefix-entry-head (prefix-entry)
1030 (list 'car prefix-entry))
1032 (defmacro cmpl-prefix-entry-tail (prefix-entry)
1033 (list 'cdr prefix-entry))
1035 ;; WRITER Macros
1037 (defmacro set-cmpl-prefix-entry-head (prefix-entry new-head)
1038 (list 'setcar prefix-entry new-head))
1040 (defmacro set-cmpl-prefix-entry-tail (prefix-entry new-tail)
1041 (list 'setcdr prefix-entry new-tail))
1043 ;; Constructor
1045 (defun make-cmpl-prefix-entry (completion-entry-list)
1046 "Make a new prefix entry containing only completion-entry."
1047 (cons completion-entry-list completion-entry-list))
1049 ;;-----------------------------------------------
1050 ;; Completion Database - Utilities
1051 ;;-----------------------------------------------
1053 (defun clear-all-completions ()
1054 "Initialize the completion storage. All existing completions are lost."
1055 (interactive)
1056 (setq cmpl-prefix-obarray (make-vector cmpl-obarray-length 0))
1057 (setq cmpl-obarray (make-vector cmpl-obarray-length 0))
1058 (cmpl-statistics-block
1059 (record-clear-all-completions)))
1061 (defvar completions-list-return-value)
1063 (defun list-all-completions ()
1064 "Return a list of all the known completion entries."
1065 (let ((completions-list-return-value nil))
1066 (mapatoms 'list-all-completions-1 cmpl-prefix-obarray)
1067 completions-list-return-value))
1069 (defun list-all-completions-1 (prefix-symbol)
1070 (if (boundp prefix-symbol)
1071 (setq completions-list-return-value
1072 (append (cmpl-prefix-entry-head (symbol-value prefix-symbol))
1073 completions-list-return-value))))
1075 (defun list-all-completions-by-hash-bucket ()
1076 "Return list of lists of known completion entries, organized by hash bucket."
1077 (let ((completions-list-return-value nil))
1078 (mapatoms 'list-all-completions-by-hash-bucket-1 cmpl-prefix-obarray)
1079 completions-list-return-value))
1081 (defun list-all-completions-by-hash-bucket-1 (prefix-symbol)
1082 (if (boundp prefix-symbol)
1083 (setq completions-list-return-value
1084 (cons (cmpl-prefix-entry-head (symbol-value prefix-symbol))
1085 completions-list-return-value))))
1088 ;;-----------------------------------------------
1089 ;; Updating the database
1090 ;;-----------------------------------------------
1092 ;; These are the internal functions used to update the datebase
1095 (defvar completion-to-accept nil)
1096 ;;"Set to a string that is pending its acceptance."
1097 ;; this checked by the top level reading functions
1099 (defvar cmpl-db-downcase-string nil)
1100 ;; "Setup by find-exact-completion, etc. The given string, downcased."
1101 (defvar cmpl-db-symbol nil)
1102 ;; "The interned symbol corresponding to cmpl-db-downcase-string.
1103 ;; Set up by cmpl-db-symbol."
1104 (defvar cmpl-db-prefix-symbol nil)
1105 ;; "The interned prefix symbol corresponding to cmpl-db-downcase-string."
1106 (defvar cmpl-db-entry nil)
1107 (defvar cmpl-db-debug-p nil
1108 "Set to t if you want to debug the database.")
1110 ;; READS
1111 (defun find-exact-completion (string)
1112 "Return the completion entry for STRING or nil.
1113 Sets up `cmpl-db-downcase-string' and `cmpl-db-symbol'."
1114 (and (boundp (setq cmpl-db-symbol
1115 (intern (setq cmpl-db-downcase-string (downcase string))
1116 cmpl-obarray)))
1117 (symbol-value cmpl-db-symbol)))
1119 (defun find-cmpl-prefix-entry (prefix-string)
1120 "Return the prefix entry for string.
1121 Sets `cmpl-db-prefix-symbol'.
1122 Prefix-string must be exactly `completion-prefix-min-length' long
1123 and downcased. Sets up `cmpl-db-prefix-symbol'."
1124 (and (boundp (setq cmpl-db-prefix-symbol
1125 (intern prefix-string cmpl-prefix-obarray)))
1126 (symbol-value cmpl-db-prefix-symbol)))
1128 (defvar inside-locate-completion-entry nil)
1129 ;; used to trap lossage in silent error correction
1131 (defun locate-completion-entry (completion-entry prefix-entry)
1132 "Locate the completion entry.
1133 Returns a pointer to the element before the completion entry or nil if
1134 the completion entry is at the head.
1135 Must be called after `find-exact-completion'."
1136 (let ((prefix-list (cmpl-prefix-entry-head prefix-entry))
1137 next-prefix-list)
1138 (cond
1139 ((not (eq (car prefix-list) completion-entry))
1140 ;; not already at head
1141 (while (and prefix-list
1142 (not (eq completion-entry
1143 (car (setq next-prefix-list (cdr prefix-list))))))
1144 (setq prefix-list next-prefix-list))
1145 (cond (;; found
1146 prefix-list)
1147 ;; Didn't find it. Database is messed up.
1148 (cmpl-db-debug-p
1149 ;; not found, error if debug mode
1150 (error "Completion entry exists but not on prefix list - %s"
1151 completion-string))
1152 (inside-locate-completion-entry
1153 ;; recursive error: really scrod
1154 (locate-completion-db-error))
1156 ;; Patch out
1157 (set cmpl-db-symbol nil)
1158 ;; Retry
1159 (locate-completion-entry-retry completion-entry)))))))
1161 (defun locate-completion-entry-retry (old-entry)
1162 (let ((inside-locate-completion-entry t))
1163 (add-completion (completion-string old-entry)
1164 (completion-num-uses old-entry)
1165 (completion-last-use-time old-entry))
1166 (let* ((cmpl-entry (find-exact-completion (completion-string old-entry)))
1167 (pref-entry
1168 (if cmpl-entry
1169 (find-cmpl-prefix-entry
1170 (substring cmpl-db-downcase-string
1171 0 completion-prefix-min-length)))))
1172 (if (and cmpl-entry pref-entry)
1173 ;; try again
1174 (locate-completion-entry cmpl-entry pref-entry)
1175 ;; still losing
1176 (locate-completion-db-error)))))
1178 (defun locate-completion-db-error ()
1179 ;; recursive error: really scrod
1180 (error "Completion database corrupted. Try M-x clear-all-completions. Send bug report"))
1182 ;; WRITES
1183 (defun add-completion-to-tail-if-new (string)
1184 "If STRING is not in the database add it to appropriate prefix list.
1185 STRING is added to the end of the appropriate prefix list with
1186 num-uses = 0. The database is unchanged if it is there. STRING must be
1187 longer than `completion-prefix-min-length'.
1188 This must be very fast.
1189 Returns the completion entry."
1190 (or (find-exact-completion string)
1191 ;; not there
1192 (let (;; create an entry
1193 (entry (make-completion string))
1194 ;; setup the prefix
1195 (prefix-entry (find-cmpl-prefix-entry
1196 (substring cmpl-db-downcase-string 0
1197 completion-prefix-min-length))))
1198 ;; The next two forms should happen as a unit (atomically) but
1199 ;; no fatal errors should result if that is not the case.
1200 (cond (prefix-entry
1201 ;; These two should be atomic, but nothing fatal will happen
1202 ;; if they're not.
1203 (setcdr (cmpl-prefix-entry-tail prefix-entry) entry)
1204 (set-cmpl-prefix-entry-tail prefix-entry entry))
1206 (set cmpl-db-prefix-symbol (make-cmpl-prefix-entry entry))))
1207 ;; statistics
1208 (cmpl-statistics-block
1209 (note-added-completion))
1210 ;; set symbol
1211 (set cmpl-db-symbol (car entry)))))
1213 (defun add-completion-to-head (completion-string)
1214 "If COMPLETION-STRING is not in the database, add it to prefix list.
1215 We add COMPLETION-STRING to the head of the appropriate prefix list,
1216 or it to the head of the list.
1217 COMPLETION-STRING must be longer than `completion-prefix-min-length'.
1218 Updates the saved string with the supplied string.
1219 This must be very fast.
1220 Returns the completion entry."
1221 ;; Handle pending acceptance
1222 (if completion-to-accept (accept-completion))
1223 ;; test if already in database
1224 (if (setq cmpl-db-entry (find-exact-completion completion-string))
1225 ;; found
1226 (let* ((prefix-entry (find-cmpl-prefix-entry
1227 (substring cmpl-db-downcase-string 0
1228 completion-prefix-min-length)))
1229 (splice-ptr (locate-completion-entry cmpl-db-entry prefix-entry))
1230 (cmpl-ptr (cdr splice-ptr)))
1231 ;; update entry
1232 (set-completion-string cmpl-db-entry completion-string)
1233 ;; move to head (if necessary)
1234 (cond (splice-ptr
1235 ;; These should all execute atomically but it is not fatal if
1236 ;; they don't.
1237 ;; splice it out
1238 (or (setcdr splice-ptr (cdr cmpl-ptr))
1239 ;; fix up tail if necessary
1240 (set-cmpl-prefix-entry-tail prefix-entry splice-ptr))
1241 ;; splice in at head
1242 (setcdr cmpl-ptr (cmpl-prefix-entry-head prefix-entry))
1243 (set-cmpl-prefix-entry-head prefix-entry cmpl-ptr)))
1244 cmpl-db-entry)
1245 ;; not there
1246 (let (;; create an entry
1247 (entry (make-completion completion-string))
1248 ;; setup the prefix
1249 (prefix-entry (find-cmpl-prefix-entry
1250 (substring cmpl-db-downcase-string 0
1251 completion-prefix-min-length))))
1252 (cond (prefix-entry
1253 ;; Splice in at head
1254 (setcdr entry (cmpl-prefix-entry-head prefix-entry))
1255 (set-cmpl-prefix-entry-head prefix-entry entry))
1257 ;; Start new prefix entry
1258 (set cmpl-db-prefix-symbol (make-cmpl-prefix-entry entry))))
1259 ;; statistics
1260 (cmpl-statistics-block
1261 (note-added-completion))
1262 ;; Add it to the symbol
1263 (set cmpl-db-symbol (car entry)))))
1265 (defun delete-completion (completion-string)
1266 "Delete the completion from the database.
1267 String must be longer than `completion-prefix-min-length'."
1268 ;; Handle pending acceptance
1269 (if completion-to-accept (accept-completion))
1270 (if (setq cmpl-db-entry (find-exact-completion completion-string))
1271 ;; found
1272 (let* ((prefix-entry (find-cmpl-prefix-entry
1273 (substring cmpl-db-downcase-string 0
1274 completion-prefix-min-length)))
1275 (splice-ptr (locate-completion-entry cmpl-db-entry prefix-entry)))
1276 ;; delete symbol reference
1277 (set cmpl-db-symbol nil)
1278 ;; remove from prefix list
1279 (cond (splice-ptr
1280 ;; not at head
1281 (or (setcdr splice-ptr (cdr (cdr splice-ptr)))
1282 ;; fix up tail if necessary
1283 (set-cmpl-prefix-entry-tail prefix-entry splice-ptr)))
1285 ;; at head
1286 (or (set-cmpl-prefix-entry-head
1287 prefix-entry (cdr (cmpl-prefix-entry-head prefix-entry)))
1288 ;; List is now empty
1289 (set cmpl-db-prefix-symbol nil))))
1290 (cmpl-statistics-block
1291 (note-completion-deleted)))
1292 (error "Unknown completion `%s'" completion-string)))
1294 ;; Tests --
1295 ;; - Add and Find -
1296 ;; (add-completion-to-head "banana") --> ("banana" 0 nil 0)
1297 ;; (find-exact-completion "banana") --> ("banana" 0 nil 0)
1298 ;; (find-exact-completion "bana") --> nil
1299 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1300 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1301 ;; (add-completion-to-head "banish") --> ("banish" 0 nil 0)
1302 ;; (find-exact-completion "banish") --> ("banish" 0 nil 0)
1303 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banish" ...) ("banana" ...))
1304 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1305 ;; (add-completion-to-head "banana") --> ("banana" 0 nil 0)
1306 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...) ("banish" ...))
1307 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banish" ...))
1309 ;; - Deleting -
1310 ;; (add-completion-to-head "banner") --> ("banner" 0 nil 0)
1311 ;; (delete-completion "banner")
1312 ;; (find-exact-completion "banner") --> nil
1313 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...) ("banish" ...))
1314 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banish" ...))
1315 ;; (add-completion-to-head "banner") --> ("banner" 0 nil 0)
1316 ;; (delete-completion "banana")
1317 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banner" ...) ("banish" ...))
1318 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banish" ...))
1319 ;; (delete-completion "banner")
1320 ;; (delete-completion "banish")
1321 ;; (find-cmpl-prefix-entry "ban") --> nil
1322 ;; (delete-completion "banner") --> error
1324 ;; - Tail -
1325 ;; (add-completion-to-tail-if-new "banana") --> ("banana" 0 nil 0)
1326 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1327 ;; (cdr (find-cmpl-prefix-entry "ban")) --> (("banana" ...))
1328 ;; (add-completion-to-tail-if-new "banish") --> ("banish" 0 nil 0)
1329 ;; (car (find-cmpl-prefix-entry "ban")) -->(("banana" ...) ("banish" ...))
1330 ;; (cdr (find-cmpl-prefix-entry "ban")) -->(("banish" ...))
1334 ;;---------------------------------------------------------------------------
1335 ;; Database Update :: Interface level routines
1336 ;;---------------------------------------------------------------------------
1338 ;; These lie on top of the database ref. functions but below the standard
1339 ;; user interface level
1342 (defun interactive-completion-string-reader (prompt)
1343 (let* ((default (symbol-under-or-before-point))
1344 (new-prompt
1345 (if default
1346 (format "%s (default %s): " prompt default)
1347 (format "%s: " prompt)))
1348 (read (completing-read new-prompt cmpl-obarray)))
1349 (if (zerop (length read)) (setq read (or default "")))
1350 (list read)))
1352 (defun check-completion-length (string)
1353 (if (< (length string) completion-min-length)
1354 (error "The string `%s' is too short to be saved as a completion"
1355 string)
1356 (list string)))
1358 (defun add-completion (string &optional num-uses last-use-time)
1359 "Add STRING to completion list, or move it to head of list.
1360 The completion is altered appropriately if num-uses and/or last-use-time is
1361 specified."
1362 (interactive (interactive-completion-string-reader "Completion to add"))
1363 (check-completion-length string)
1364 (let* ((current-completion-source (if (interactive-p)
1365 cmpl-source-interactive
1366 current-completion-source))
1367 (entry (add-completion-to-head string)))
1369 (if num-uses (set-completion-num-uses entry num-uses))
1370 (if last-use-time
1371 (set-completion-last-use-time entry last-use-time))))
1373 (defun add-permanent-completion (string)
1374 "Add STRING if it isn't already listed, and mark it permanent."
1375 (interactive
1376 (interactive-completion-string-reader "Completion to add permanently"))
1377 (let ((current-completion-source (if (interactive-p)
1378 cmpl-source-interactive
1379 current-completion-source)))
1380 (add-completion string nil t)))
1382 (defun kill-completion (string)
1383 (interactive (interactive-completion-string-reader "Completion to kill"))
1384 (check-completion-length string)
1385 (delete-completion string))
1387 (defun accept-completion ()
1388 "Accepts the pending completion in `completion-to-accept'.
1389 This bumps num-uses. Called by `add-completion-to-head' and
1390 `completion-search-reset'."
1391 (let ((string completion-to-accept)
1392 ;; if this is added afresh here, then it must be a cdabbrev
1393 (current-completion-source cmpl-source-cdabbrev)
1394 entry)
1395 (setq completion-to-accept nil)
1396 (setq entry (add-completion-to-head string))
1397 (set-completion-num-uses entry (1+ (completion-num-uses entry)))
1398 (setq cmpl-completions-accepted-p t)))
1400 (defun use-completion-under-point ()
1401 "Add the completion symbol underneath the point into the completion buffer."
1402 (let ((string (and enable-completion (symbol-under-point)))
1403 (current-completion-source cmpl-source-cursor-moves))
1404 (if string (add-completion-to-head string))))
1406 (defun use-completion-before-point ()
1407 "Add the completion symbol before point into the completion buffer."
1408 (let ((string (and enable-completion (symbol-before-point)))
1409 (current-completion-source cmpl-source-cursor-moves))
1410 (if string (add-completion-to-head string))))
1412 (defun use-completion-under-or-before-point ()
1413 "Add the completion symbol before point into the completion buffer."
1414 (let ((string (and enable-completion (symbol-under-or-before-point)))
1415 (current-completion-source cmpl-source-cursor-moves))
1416 (if string (add-completion-to-head string))))
1418 (defun use-completion-before-separator ()
1419 "Add the completion symbol before point into the completion buffer.
1420 Completions added this way will automatically be saved if
1421 `completion-on-separator-character' is non-nil."
1422 (let ((string (and enable-completion (symbol-before-point)))
1423 (current-completion-source cmpl-source-separator)
1424 entry)
1425 (cmpl-statistics-block
1426 (note-separator-character string))
1427 (cond (string
1428 (setq entry (add-completion-to-head string))
1429 (if (and completion-on-separator-character
1430 (zerop (completion-num-uses entry)))
1431 (progn
1432 (set-completion-num-uses entry 1)
1433 (setq cmpl-completions-accepted-p t)))))))
1435 ;; Tests --
1436 ;; - Add and Find -
1437 ;; (add-completion "banana" 5 10)
1438 ;; (find-exact-completion "banana") --> ("banana" 5 10 0)
1439 ;; (add-completion "banana" 6)
1440 ;; (find-exact-completion "banana") --> ("banana" 6 10 0)
1441 ;; (add-completion "banish")
1442 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banish" ...) ("banana" ...))
1444 ;; - Accepting -
1445 ;; (setq completion-to-accept "banana")
1446 ;; (accept-completion)
1447 ;; (find-exact-completion "banana") --> ("banana" 7 10)
1448 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banana" ...) ("banish" ...))
1449 ;; (setq completion-to-accept "banish")
1450 ;; (add-completion "banner")
1451 ;; (car (find-cmpl-prefix-entry "ban"))
1452 ;; --> (("banner" ...) ("banish" 1 ...) ("banana" 7 ...))
1454 ;; - Deleting -
1455 ;; (kill-completion "banish")
1456 ;; (car (find-cmpl-prefix-entry "ban")) --> (("banner" ...) ("banana" ...))
1459 ;;---------------------------------------------------------------------------
1460 ;; Searching the database
1461 ;;---------------------------------------------------------------------------
1462 ;; Functions outside this block must call completion-search-reset followed
1463 ;; by calls to completion-search-next or completion-search-peek
1466 ;; Status variables
1467 ;; Commented out to improve loading speed
1468 (defvar cmpl-test-string "")
1469 ;; "The current string used by completion-search-next."
1470 (defvar cmpl-test-regexp "")
1471 ;; "The current regexp used by completion-search-next.
1472 ;; (derived from cmpl-test-string)"
1473 (defvar cmpl-last-index 0)
1474 ;; "The last index that completion-search-next was called with."
1475 (defvar cmpl-cdabbrev-reset-p nil)
1476 ;; "Set to t when cdabbrevs have been reset."
1477 (defvar cmpl-next-possibilities nil)
1478 ;; "A pointer to the element BEFORE the next set of possible completions.
1479 ;; cadr of this is the cmpl-next-possibility"
1480 (defvar cmpl-starting-possibilities nil)
1481 ;; "The initial list of starting possibilities."
1482 (defvar cmpl-next-possibility nil)
1483 ;; "The cached next possibility."
1484 (defvar cmpl-tried-list nil)
1485 ;; "A downcased list of all the completions we have tried."
1488 (defun completion-search-reset (string)
1489 "Set up the for completion searching for STRING.
1490 STRING must be longer than `completion-prefix-min-length'."
1491 (if completion-to-accept (accept-completion))
1492 (setq cmpl-starting-possibilities
1493 (cmpl-prefix-entry-head
1494 (find-cmpl-prefix-entry
1495 (downcase (substring string 0 completion-prefix-min-length))))
1496 cmpl-test-string string
1497 cmpl-test-regexp (concat (regexp-quote string) "."))
1498 (completion-search-reset-1))
1500 (defun completion-search-reset-1 ()
1501 (setq cmpl-next-possibilities cmpl-starting-possibilities
1502 cmpl-next-possibility nil
1503 cmpl-cdabbrev-reset-p nil
1504 cmpl-last-index -1
1505 cmpl-tried-list nil))
1507 (defun completion-search-next (index)
1508 "Return the next completion entry.
1509 If INDEX is out of sequence, reset and start from the top.
1510 If there are no more entries, try cdabbrev and returns only a string."
1511 (cond
1512 ((= index (setq cmpl-last-index (1+ cmpl-last-index)))
1513 (completion-search-peek t))
1514 ((< index 0)
1515 (completion-search-reset-1)
1516 (setq cmpl-last-index index)
1517 ;; reverse the possibilities list
1518 (setq cmpl-next-possibilities (reverse cmpl-starting-possibilities))
1519 ;; do a "normal" search
1520 (while (and (completion-search-peek nil)
1521 (< (setq index (1+ index)) 0))
1522 (setq cmpl-next-possibility nil))
1523 (cond ((not cmpl-next-possibilities))
1524 ;; If no more possibilities, leave it that way
1525 ((= -1 cmpl-last-index)
1526 ;; next completion is at index 0. reset next-possibility list
1527 ;; to start at beginning
1528 (setq cmpl-next-possibilities cmpl-starting-possibilities))
1530 ;; otherwise point to one before current
1531 (setq cmpl-next-possibilities
1532 (nthcdr (- (length cmpl-starting-possibilities)
1533 (length cmpl-next-possibilities))
1534 cmpl-starting-possibilities)))))
1536 ;; non-negative index, reset and search
1537 ;;(prin1 'reset)
1538 (completion-search-reset-1)
1539 (setq cmpl-last-index index)
1540 (while (and (completion-search-peek t)
1541 (not (< (setq index (1- index)) 0)))
1542 (setq cmpl-next-possibility nil))))
1543 (prog1
1544 cmpl-next-possibility
1545 (setq cmpl-next-possibility nil)))
1548 (defun completion-search-peek (use-cdabbrev)
1549 "Return the next completion entry without actually moving the pointers.
1550 Calling this again or calling `completion-search-next' results in the same
1551 string being returned. Depends on `case-fold-search'.
1552 If there are no more entries, try cdabbrev and then return only a string."
1553 (cond
1554 ;; return the cached value if we have it
1555 (cmpl-next-possibility)
1556 ((and cmpl-next-possibilities
1557 ;; still a few possibilities left
1558 (progn
1559 (while
1560 (and (not (eq 0 (string-match cmpl-test-regexp
1561 (completion-string (car cmpl-next-possibilities)))))
1562 (setq cmpl-next-possibilities (cdr cmpl-next-possibilities))))
1563 cmpl-next-possibilities))
1564 ;; successful match
1565 (setq cmpl-next-possibility (car cmpl-next-possibilities)
1566 cmpl-tried-list (cons (downcase (completion-string cmpl-next-possibility))
1567 cmpl-tried-list)
1568 cmpl-next-possibilities (cdr cmpl-next-possibilities))
1569 cmpl-next-possibility)
1570 (use-cdabbrev
1571 ;; unsuccessful, use cdabbrev
1572 (cond ((not cmpl-cdabbrev-reset-p)
1573 (reset-cdabbrev cmpl-test-string cmpl-tried-list)
1574 (setq cmpl-cdabbrev-reset-p t)))
1575 (setq cmpl-next-possibility (next-cdabbrev)))
1576 ;; Completely unsuccessful, return nil
1579 ;; Tests --
1580 ;; - Add and Find -
1581 ;; (add-completion "banana")
1582 ;; (completion-search-reset "ban")
1583 ;; (completion-search-next 0) --> "banana"
1585 ;; - Discrimination -
1586 ;; (add-completion "cumberland")
1587 ;; (add-completion "cumberbund")
1588 ;; cumbering
1589 ;; (completion-search-reset "cumb")
1590 ;; (completion-search-peek t) --> "cumberbund"
1591 ;; (completion-search-next 0) --> "cumberbund"
1592 ;; (completion-search-peek t) --> "cumberland"
1593 ;; (completion-search-next 1) --> "cumberland"
1594 ;; (completion-search-peek nil) --> nil
1595 ;; (completion-search-next 2) --> "cumbering" {cdabbrev}
1596 ;; (completion-search-next 3) --> nil or "cumming"{depends on context}
1597 ;; (completion-search-next 1) --> "cumberland"
1598 ;; (completion-search-peek t) --> "cumbering" {cdabbrev}
1600 ;; - Accepting -
1601 ;; (completion-search-next 1) --> "cumberland"
1602 ;; (setq completion-to-accept "cumberland")
1603 ;; (completion-search-reset "foo")
1604 ;; (completion-search-reset "cum")
1605 ;; (completion-search-next 0) --> "cumberland"
1607 ;; - Deleting -
1608 ;; (kill-completion "cumberland")
1609 ;; cummings
1610 ;; (completion-search-reset "cum")
1611 ;; (completion-search-next 0) --> "cumberbund"
1612 ;; (completion-search-next 1) --> "cummings"
1614 ;; - Ignoring Capitalization -
1615 ;; (completion-search-reset "CuMb")
1616 ;; (completion-search-next 0) --> "cumberbund"
1620 ;;-----------------------------------------------
1621 ;; COMPLETE
1622 ;;-----------------------------------------------
1624 (defun completion-mode ()
1625 "Toggle whether or not to add new words to the completion database."
1626 (interactive)
1627 (setq enable-completion (not enable-completion))
1628 (message "Completion mode is now %s." (if enable-completion "ON" "OFF")))
1630 (defvar cmpl-current-index 0)
1631 (defvar cmpl-original-string nil)
1632 (defvar cmpl-last-insert-location -1)
1633 (defvar cmpl-leave-point-at-start nil)
1635 (defun complete (&optional arg)
1636 "Fill out a completion of the word before point.
1637 Point is left at end. Consecutive calls rotate through all possibilities.
1638 Prefix args ::
1639 control-u :: leave the point at the beginning of the completion rather
1640 than at the end.
1641 a number :: rotate through the possible completions by that amount
1642 `-' :: same as -1 (insert previous completion)
1643 {See the comments at the top of `completion.el' for more info.}"
1644 (interactive "*p")
1645 ;;; Set up variables
1646 (cond ((eq last-command this-command)
1647 ;; Undo last one
1648 (delete-region cmpl-last-insert-location (point))
1649 ;; get next completion
1650 (setq cmpl-current-index (+ cmpl-current-index (or arg 1))))
1652 (if (not cmpl-initialized-p)
1653 (initialize-completions)) ;; make sure everything's loaded
1654 (cond ((consp current-prefix-arg) ;; control-u
1655 (setq arg 0)
1656 (setq cmpl-leave-point-at-start t))
1658 (setq cmpl-leave-point-at-start nil)))
1659 ;; get string
1660 (setq cmpl-original-string (symbol-before-point-for-complete))
1661 (cond ((not cmpl-original-string)
1662 (setq this-command 'failed-complete)
1663 (error "To complete, point must be after a symbol at least %d character long"
1664 completion-prefix-min-length)))
1665 ;; get index
1666 (setq cmpl-current-index (if current-prefix-arg arg 0))
1667 ;; statistics
1668 (cmpl-statistics-block
1669 (note-complete-entered-afresh cmpl-original-string))
1670 ;; reset database
1671 (completion-search-reset cmpl-original-string)
1672 ;; erase what we've got
1673 (delete-region cmpl-symbol-start cmpl-symbol-end)))
1675 ;; point is at the point to insert the new symbol
1676 ;; Get the next completion
1677 (let* ((print-status-p
1678 (and (>= baud-rate completion-prompt-speed-threshold)
1679 (not (window-minibuffer-p (selected-window)))))
1680 (insert-point (point))
1681 (entry (completion-search-next cmpl-current-index))
1682 string)
1683 ;; entry is either a completion entry or a string (if cdabbrev)
1685 ;; If found, insert
1686 (cond (entry
1687 ;; Setup for proper case
1688 (setq string (if (stringp entry)
1689 entry (completion-string entry)))
1690 (setq string (cmpl-merge-string-cases
1691 string cmpl-original-string))
1692 ;; insert
1693 (insert string)
1694 ;; accept it
1695 (setq completion-to-accept string)
1696 ;; fixup and cache point
1697 (cond (cmpl-leave-point-at-start
1698 (setq cmpl-last-insert-location (point))
1699 (goto-char insert-point))
1700 (t;; point at end,
1701 (setq cmpl-last-insert-location insert-point)))
1702 ;; statistics
1703 (cmpl-statistics-block
1704 (note-complete-inserted entry cmpl-current-index))
1705 ;; Done ! cmpl-stat-complete-successful
1706 ;;display the next completion
1707 (cond
1708 ((and print-status-p
1709 ;; This updates the display and only prints if there
1710 ;; is no typeahead
1711 (sit-for 0)
1712 (setq entry
1713 (completion-search-peek
1714 completion-cdabbrev-prompt-flag)))
1715 (setq string (if (stringp entry)
1716 entry (completion-string entry)))
1717 (setq string (cmpl-merge-string-cases
1718 string cmpl-original-string))
1719 (message "Next completion: %s" string))))
1720 (t;; none found, insert old
1721 (insert cmpl-original-string)
1722 ;; Don't accept completions
1723 (setq completion-to-accept nil)
1724 ;; print message
1725 ;; This used to call cmpl19-sit-for, an undefined function.
1726 ;; I hope that sit-for does the right thing; I don't know -- rms.
1727 (if (and print-status-p (sit-for 0))
1728 (message "No %scompletions."
1729 (if (eq this-command last-command) "more " "")))
1730 ;; statistics
1731 (cmpl-statistics-block
1732 (record-complete-failed cmpl-current-index))
1733 ;; Pretend that we were never here
1734 (setq this-command 'failed-complete)))))
1736 ;;---------------------------------------------------------------------------
1737 ;; Parsing definitions from files into the database
1738 ;;---------------------------------------------------------------------------
1740 ;;-----------------------------------------------
1741 ;; Top Level functions ::
1742 ;;-----------------------------------------------
1744 ;; User interface
1745 (defun add-completions-from-file (file)
1746 "Parse possible completions from a FILE and add them to data base."
1747 (interactive "fFile: ")
1748 (setq file (expand-file-name file))
1749 (let* ((buffer (get-file-buffer file))
1750 (buffer-already-there-p buffer))
1751 (if (not buffer-already-there-p)
1752 (let ((completions-merging-modes nil))
1753 (setq buffer (find-file-noselect file))))
1754 (unwind-protect
1755 (save-excursion
1756 (set-buffer buffer)
1757 (add-completions-from-buffer))
1758 (if (not buffer-already-there-p)
1759 (kill-buffer buffer)))))
1761 (defun add-completions-from-buffer ()
1762 (interactive)
1763 (let ((current-completion-source cmpl-source-file-parsing)
1764 (start-num
1765 (cmpl-statistics-block
1766 (aref completion-add-count-vector cmpl-source-file-parsing)))
1767 mode)
1768 (cond ((memq major-mode '(emacs-lisp-mode lisp-mode))
1769 (add-completions-from-lisp-buffer)
1770 (setq mode 'lisp))
1771 ((memq major-mode '(c-mode))
1772 (add-completions-from-c-buffer)
1773 (setq mode 'c))
1775 (error "Cannot parse completions in %s buffers"
1776 major-mode)))
1777 (cmpl-statistics-block
1778 (record-cmpl-parse-file
1779 mode (point-max)
1780 (- (aref completion-add-count-vector cmpl-source-file-parsing)
1781 start-num)))))
1783 ;; Find file hook
1784 (defun cmpl-find-file-hook ()
1785 (cond (enable-completion
1786 (cond ((and (memq major-mode '(emacs-lisp-mode lisp-mode))
1787 (memq 'lisp completions-merging-modes))
1788 (add-completions-from-buffer))
1789 ((and (memq major-mode '(c-mode))
1790 (memq 'c completions-merging-modes))
1791 (add-completions-from-buffer))))))
1793 ;;-----------------------------------------------
1794 ;; Tags Table Completions
1795 ;;-----------------------------------------------
1797 (defun add-completions-from-tags-table ()
1798 ;; Inspired by eero@media-lab.media.mit.edu
1799 "Add completions from the current tags table."
1800 (interactive)
1801 (visit-tags-table-buffer) ;this will prompt if no tags-table
1802 (save-excursion
1803 (goto-char (point-min))
1804 (let (string)
1805 (condition-case e
1806 (while t
1807 (search-forward "\177")
1808 (backward-char 3)
1809 (and (setq string (symbol-under-point))
1810 (add-completion-to-tail-if-new string))
1811 (forward-char 3))
1812 (search-failed)))))
1815 ;;-----------------------------------------------
1816 ;; Lisp File completion parsing
1817 ;;-----------------------------------------------
1818 ;; This merely looks for phrases beginning with (def.... or
1819 ;; (package:def ... and takes the next word.
1821 ;; We tried using forward-lines and explicit searches but the regexp technique
1822 ;; was faster. (About 100K characters per second)
1824 (defconst *lisp-def-regexp*
1825 "\n(\\(\\w*:\\)?def\\(\\w\\|\\s_\\)*\\s +(*"
1826 "A regexp that searches for Lisp definition form.")
1828 ;; Tests -
1829 ;; (and (string-match *lisp-def-regexp* "\n(defun foo") (match-end 0)) -> 8
1830 ;; (and (string-match *lisp-def-regexp* "\n(si:def foo") (match-end 0)) -> 9
1831 ;; (and (string-match *lisp-def-regexp* "\n(def-bar foo")(match-end 0)) -> 10
1832 ;; (and (string-match *lisp-def-regexp* "\n(defun (foo") (match-end 0)) -> 9
1834 ;; Parses all the definition names from a Lisp mode buffer and adds them to
1835 ;; the completion database.
1836 (defun add-completions-from-lisp-buffer ()
1837 ;;; Benchmarks
1838 ;;; Sun-3/280 - 1500 to 3000 lines of lisp code per second
1839 (let (string)
1840 (save-excursion
1841 (goto-char (point-min))
1842 (condition-case e
1843 (while t
1844 (re-search-forward *lisp-def-regexp*)
1845 (and (setq string (symbol-under-point))
1846 (add-completion-to-tail-if-new string)))
1847 (search-failed)))))
1850 ;;-----------------------------------------------
1851 ;; C file completion parsing
1852 ;;-----------------------------------------------
1853 ;; C :
1854 ;; Looks for #define or [<storage class>] [<type>] <name>{,<name>}
1855 ;; or structure, array or pointer defs.
1856 ;; It gets most of the definition names.
1858 ;; As you might suspect by now, we use some symbol table hackery
1860 ;; Symbol separator chars (have whitespace syntax) --> , ; * = (
1861 ;; Opening char --> [ {
1862 ;; Closing char --> ] }
1863 ;; opening and closing must be skipped over
1864 ;; Whitespace chars (have symbol syntax)
1865 ;; Everything else has word syntax
1867 (defun cmpl-make-c-def-completion-syntax-table ()
1868 (let ((table (make-syntax-table))
1869 (whitespace-chars '(? ?\n ?\t ?\f ?\v ?\r))
1870 ;; unfortunately the ?( causes the parens to appear unbalanced
1871 (separator-chars '(?, ?* ?= ?\( ?\;))
1873 ;; default syntax is whitespace
1874 (setq i 0)
1875 (while (< i 256)
1876 (modify-syntax-entry i "w" table)
1877 (setq i (1+ i)))
1878 (dolist (char whitespace-chars)
1879 (modify-syntax-entry char "_" table))
1880 (dolist (char separator-chars)
1881 (modify-syntax-entry char " " table))
1882 (modify-syntax-entry ?\[ "(]" table)
1883 (modify-syntax-entry ?\{ "(}" table)
1884 (modify-syntax-entry ?\] ")[" table)
1885 (modify-syntax-entry ?\} "){" table)
1886 table))
1888 (defconst cmpl-c-def-syntax-table (cmpl-make-c-def-completion-syntax-table))
1890 ;; Regexps
1891 (defconst *c-def-regexp*
1892 ;; This stops on lines with possible definitions
1893 "\n[_a-zA-Z#]"
1894 ;; This stops after the symbol to add.
1895 ;;"\n\\(#define\\s +.\\|\\(\\(\\w\\|\\s_\\)+\\b\\s *\\)+[(;,[*{=]\\)"
1896 ;; This stops before the symbol to add. {Test cases in parens. below}
1897 ;;"\n\\(\\(\\w\\|\\s_\\)+\\s *(\\|\\(\\(#define\\|auto\\|extern\\|register\\|static\\|int\\|long\\|short\\|unsigned\\|char\\|void\\|float\\|double\\|enum\\|struct\\|union\\|typedef\\)\\s +\\)+\\)"
1898 ;; this simple version picks up too much extraneous stuff
1899 ;; "\n\\(\\w\\|\\s_\\|#\\)\\B"
1900 "A regexp that searches for a definition form.")
1902 ;(defconst *c-cont-regexp*
1903 ; "\\(\\w\\|\\s_\\)+\\b\\s *\\({\\|\\(\\[[0-9\t ]*\\]\\s *\\)*,\\(*\\|\\s \\)*\\b\\)"
1904 ; "This regexp should be used in a looking-at to parse for lists of variables.")
1906 ;(defconst *c-struct-regexp*
1907 ; "\\(*\\|\\s \\)*\\b"
1908 ; "This regexp should be used to test whether a symbol follows a structure definition.")
1910 ;(defun test-c-def-regexp (regexp string)
1911 ; (and (eq 0 (string-match regexp string)) (match-end 0))
1914 ;; Tests -
1915 ;; (test-c-def-regexp *c-def-regexp* "\n#define foo") -> 10 (9)
1916 ;; (test-c-def-regexp *c-def-regexp* "\nfoo (x, y) {") -> 6 (6)
1917 ;; (test-c-def-regexp *c-def-regexp* "\nint foo (x, y)") -> 10 (5)
1918 ;; (test-c-def-regexp *c-def-regexp* "\n int foo (x, y)") -> nil
1919 ;; (test-c-def-regexp *c-cont-regexp* "oo, bar") -> 4
1920 ;; (test-c-def-regexp *c-cont-regexp* "oo, *bar") -> 5
1921 ;; (test-c-def-regexp *c-cont-regexp* "a [5][6], bar") -> 10
1922 ;; (test-c-def-regexp *c-cont-regexp* "oo(x,y)") -> nil
1923 ;; (test-c-def-regexp *c-cont-regexp* "a [6] ,\t bar") -> 9
1924 ;; (test-c-def-regexp *c-cont-regexp* "oo {trout =1} my_carp;") -> 14
1925 ;; (test-c-def-regexp *c-cont-regexp* "truct_p complex foon") -> nil
1927 ;; Parses all the definition names from a C mode buffer and adds them to the
1928 ;; completion database.
1929 (defun add-completions-from-c-buffer ()
1930 ;; Benchmark --
1931 ;; Sun 3/280-- 1250 lines/sec.
1933 (let (string next-point char
1934 (saved-syntax (syntax-table)))
1935 (save-excursion
1936 (goto-char (point-min))
1937 (catch 'finish-add-completions
1938 (unwind-protect
1939 (while t
1940 ;; we loop here only when scan-sexps fails
1941 ;; (i.e. unbalance exps.)
1942 (set-syntax-table cmpl-c-def-syntax-table)
1943 (condition-case e
1944 (while t
1945 (re-search-forward *c-def-regexp*)
1946 (cond
1947 ((= (preceding-char) ?#)
1948 ;; preprocessor macro, see if it's one we handle
1949 (setq string (buffer-substring (point) (+ (point) 6)))
1950 (cond ((or (string-equal string "define")
1951 (string-equal string "ifdef "))
1952 ;; skip forward over definition symbol
1953 ;; and add it to database
1954 (and (forward-word 2)
1955 (setq string (symbol-before-point))
1956 ;;(push string foo)
1957 (add-completion-to-tail-if-new string)))))
1959 ;; C definition
1960 (setq next-point (point))
1961 (while (and
1962 next-point
1963 ;; scan to next separator char.
1964 (setq next-point (scan-sexps next-point 1)))
1965 ;; position the point on the word we want to add
1966 (goto-char next-point)
1967 (while (= (setq char (following-char)) ?*)
1968 ;; handle pointer ref
1969 ;; move to next separator char.
1970 (goto-char
1971 (setq next-point (scan-sexps (point) 1))))
1972 (forward-word -1)
1973 ;; add to database
1974 (if (setq string (symbol-under-point))
1975 ;; (push string foo)
1976 (add-completion-to-tail-if-new string)
1977 ;; Local TMC hack (useful for parsing paris.h)
1978 (if (and (looking-at "_AP") ;; "ansi prototype"
1979 (progn
1980 (forward-word -1)
1981 (setq string
1982 (symbol-under-point))))
1983 (add-completion-to-tail-if-new string)))
1984 ;; go to next
1985 (goto-char next-point)
1986 ;; (push (format "%c" (following-char)) foo)
1987 (if (= (char-syntax char) ?\()
1988 ;; if on an opening delimiter, go to end
1989 (while (= (char-syntax char) ?\()
1990 (setq next-point (scan-sexps next-point 1)
1991 char (char-after next-point)))
1992 (or (= char ?,)
1993 ;; Current char is an end char.
1994 (setq next-point nil)))))))
1995 (search-failed ;;done
1996 (throw 'finish-add-completions t))
1997 (error
1998 ;; Check for failure in scan-sexps
1999 (if (or (string-equal (nth 1 e)
2000 "Containing expression ends prematurely")
2001 (string-equal (nth 1 e) "Unbalanced parentheses"))
2002 ;; unbalanced paren., keep going
2003 ;;(ding)
2004 (forward-line 1)
2005 (message "Error parsing C buffer for completions--please send bug report")
2006 (throw 'finish-add-completions t)))))
2007 (set-syntax-table saved-syntax))))))
2010 ;;---------------------------------------------------------------------------
2011 ;; Init files
2012 ;;---------------------------------------------------------------------------
2014 ;; The version of save-completions-to-file called at kill-emacs time.
2015 (defun kill-emacs-save-completions ()
2016 (if (and save-completions-flag enable-completion cmpl-initialized-p)
2017 (cond
2018 ((not cmpl-completions-accepted-p)
2019 (message "Completions database has not changed - not writing."))
2021 (save-completions-to-file)))))
2023 ;; There is no point bothering to change this again
2024 ;; unless the package changes so much that it matters
2025 ;; for people that have saved completions.
2026 (defconst completion-version "11")
2028 (defconst saved-cmpl-file-header
2029 ";;; Completion Initialization file.
2030 ;; Version = %s
2031 ;; Format is (<string> . <last-use-time>)
2032 ;; <string> is the completion
2033 ;; <last-use-time> is the time the completion was last used
2034 ;; If it is t, the completion will never be pruned from the file.
2035 ;; Otherwise it is in hours since origin.
2036 \n")
2038 (defun completion-backup-filename (filename)
2039 (concat filename ".BAK"))
2041 (defun save-completions-to-file (&optional filename)
2042 "Save completions in init file FILENAME.
2043 If file name is not specified, use `save-completions-file-name'."
2044 (interactive)
2045 (setq filename (expand-file-name (or filename save-completions-file-name)))
2046 (if (file-writable-p filename)
2047 (progn
2048 (if (not cmpl-initialized-p)
2049 (initialize-completions));; make sure everything's loaded
2050 (message "Saving completions to file %s" filename)
2052 (let* ((delete-old-versions t)
2053 (kept-old-versions 0)
2054 (kept-new-versions completions-file-versions-kept)
2055 last-use-time
2056 (current-time (cmpl-hours-since-origin))
2057 (total-in-db 0)
2058 (total-perm 0)
2059 (total-saved 0)
2060 (backup-filename (completion-backup-filename filename)))
2062 (save-excursion
2063 (get-buffer-create " *completion-save-buffer*")
2064 (set-buffer " *completion-save-buffer*")
2065 (setq buffer-file-name filename)
2067 (if (not (verify-visited-file-modtime (current-buffer)))
2068 (progn
2069 ;; file has changed on disk. Bring us up-to-date
2070 (message "Completion file has changed. Merging. . .")
2071 (load-completions-from-file filename t)
2072 (message "Merging finished. Saving completions to file %s" filename)))
2074 ;; prepare the buffer to be modified
2075 (clear-visited-file-modtime)
2076 (erase-buffer)
2077 ;; (/ 1 0)
2078 (insert (format saved-cmpl-file-header completion-version))
2079 (dolist (completion (list-all-completions))
2080 (setq total-in-db (1+ total-in-db))
2081 (setq last-use-time (completion-last-use-time completion))
2082 ;; Update num uses and maybe write completion to a file
2083 (cond ((or;; Write to file if
2084 ;; permanent
2085 (and (eq last-use-time t)
2086 (setq total-perm (1+ total-perm)))
2087 ;; or if
2088 (if (> (completion-num-uses completion) 0)
2089 ;; it's been used
2090 (setq last-use-time current-time)
2091 ;; or it was saved before and
2092 (and last-use-time
2093 ;; save-completions-retention-time is nil
2094 (or (not save-completions-retention-time)
2095 ;; or time since last use is < ...retention-time*
2096 (< (- current-time last-use-time)
2097 save-completions-retention-time)))))
2098 ;; write to file
2099 (setq total-saved (1+ total-saved))
2100 (insert (prin1-to-string (cons (completion-string completion)
2101 last-use-time)) "\n"))))
2103 ;; write the buffer
2104 (condition-case e
2105 (let ((file-exists-p (file-exists-p filename)))
2106 (if file-exists-p
2107 (progn
2108 ;; If file exists . . .
2109 ;; Save a backup(so GNU doesn't screw us when we're out of disk)
2110 ;; (GNU leaves a 0 length file if it gets a disk full error!)
2112 ;; If backup doesn't exit, Rename current to backup
2113 ;; {If backup exists the primary file is probably messed up}
2114 (or (file-exists-p backup-filename)
2115 (rename-file filename backup-filename))
2116 ;; Copy the backup back to the current name
2117 ;; (so versioning works)
2118 (copy-file backup-filename filename t)))
2119 ;; Save it
2120 (save-buffer)
2121 (if file-exists-p
2122 ;; If successful, remove backup
2123 (delete-file backup-filename)))
2124 (error
2125 (set-buffer-modified-p nil)
2126 (message "Couldn't save completion file `%s'" filename)))
2127 ;; Reset accepted-p flag
2128 (setq cmpl-completions-accepted-p nil) )
2129 (cmpl-statistics-block
2130 (record-save-completions total-in-db total-perm total-saved))))))
2132 ;;(defun auto-save-completions ()
2133 ;; (if (and save-completions-flag enable-completion cmpl-initialized-p
2134 ;; *completion-auto-save-period*
2135 ;; (> cmpl-emacs-idle-time *completion-auto-save-period*)
2136 ;; cmpl-completions-accepted-p)
2137 ;; (save-completions-to-file)))
2139 ;;(add-hook 'cmpl-emacs-idle-time-hooks 'auto-save-completions)
2141 (defun load-completions-from-file (&optional filename no-message-p)
2142 "Load a completion init file FILENAME.
2143 If file is not specified, then use `save-completions-file-name'."
2144 (interactive)
2145 (setq filename (expand-file-name (or filename save-completions-file-name)))
2146 (let* ((backup-filename (completion-backup-filename filename))
2147 (backup-readable-p (file-readable-p backup-filename)))
2148 (if backup-readable-p (setq filename backup-filename))
2149 (if (file-readable-p filename)
2150 (progn
2151 (if (not no-message-p)
2152 (message "Loading completions from %sfile %s . . ."
2153 (if backup-readable-p "backup " "") filename))
2154 (save-excursion
2155 (get-buffer-create " *completion-save-buffer*")
2156 (set-buffer " *completion-save-buffer*")
2157 (setq buffer-file-name filename)
2158 ;; prepare the buffer to be modified
2159 (clear-visited-file-modtime)
2160 (erase-buffer)
2162 (let ((insert-okay-p nil)
2163 (buffer (current-buffer))
2164 (current-time (cmpl-hours-since-origin))
2165 string num-uses entry last-use-time
2166 cmpl-entry cmpl-last-use-time
2167 (current-completion-source cmpl-source-init-file)
2168 (start-num
2169 (cmpl-statistics-block
2170 (aref completion-add-count-vector cmpl-source-file-parsing)))
2171 (total-in-file 0) (total-perm 0))
2172 ;; insert the file into a buffer
2173 (condition-case e
2174 (progn (insert-file-contents filename t)
2175 (setq insert-okay-p t))
2177 (file-error
2178 (message "File error trying to load completion file %s."
2179 filename)))
2180 ;; parse it
2181 (if insert-okay-p
2182 (progn
2183 (goto-char (point-min))
2185 (condition-case e
2186 (while t
2187 (setq entry (read buffer))
2188 (setq total-in-file (1+ total-in-file))
2189 (cond
2190 ((and (consp entry)
2191 (stringp (setq string (car entry)))
2192 (cond
2193 ((eq (setq last-use-time (cdr entry)) 'T)
2194 ;; handle case sensitivity
2195 (setq total-perm (1+ total-perm))
2196 (setq last-use-time t))
2197 ((eq last-use-time t)
2198 (setq total-perm (1+ total-perm)))
2199 ((integerp last-use-time))))
2200 ;; Valid entry
2201 ;; add it in
2202 (setq cmpl-last-use-time
2203 (completion-last-use-time
2204 (setq cmpl-entry
2205 (add-completion-to-tail-if-new string))))
2206 (if (or (eq last-use-time t)
2207 (and (> last-use-time 1000);;backcompatibility
2208 (not (eq cmpl-last-use-time t))
2209 (or (not cmpl-last-use-time)
2210 ;; more recent
2211 (> last-use-time cmpl-last-use-time))))
2212 ;; update last-use-time
2213 (set-completion-last-use-time cmpl-entry last-use-time)))
2215 ;; Bad format
2216 (message "Error: invalid saved completion - %s"
2217 (prin1-to-string entry))
2218 ;; try to get back in sync
2219 (search-forward "\n("))))
2220 (search-failed
2221 (message "End of file while reading completions."))
2222 (end-of-file
2223 (if (= (point) (point-max))
2224 (if (not no-message-p)
2225 (message "Loading completions from file %s . . . Done."
2226 filename))
2227 (message "End of file while reading completions."))))))
2229 (cmpl-statistics-block
2230 (record-load-completions
2231 total-in-file total-perm
2232 (- (aref completion-add-count-vector cmpl-source-init-file)
2233 start-num)))
2234 ))))))
2236 (defun initialize-completions ()
2237 "Load the default completions file.
2238 Also sets up so that exiting Emacs will automatically save the file."
2239 (interactive)
2240 (cond ((not cmpl-initialized-p)
2241 (load-completions-from-file)))
2242 (setq cmpl-initialized-p t))
2244 ;;-----------------------------------------------
2245 ;; Kill region patch
2246 ;;-----------------------------------------------
2248 (defun completion-kill-region (&optional beg end)
2249 "Kill between point and mark.
2250 The text is deleted but saved in the kill ring.
2251 The command \\[yank] can retrieve it from there.
2252 /(If you want to kill and then yank immediately, use \\[copy-region-as-kill].)
2254 This is the primitive for programs to kill text (as opposed to deleting it).
2255 Supply two arguments, character positions indicating the stretch of text
2256 to be killed.
2257 Any command that calls this function is a \"kill command\".
2258 If the previous command was also a kill command,
2259 the text killed this time appends to the text killed last time
2260 to make one entry in the kill ring.
2261 Patched to remove the most recent completion."
2262 (interactive "r")
2263 (cond ((eq last-command 'complete)
2264 (delete-region (point) cmpl-last-insert-location)
2265 (insert cmpl-original-string)
2266 (setq completion-to-accept nil)
2267 (cmpl-statistics-block
2268 (record-complete-failed)))
2270 (kill-region beg end))))
2273 ;;-----------------------------------------------
2274 ;; Patches to self-insert-command.
2275 ;;-----------------------------------------------
2277 ;; Need 2 versions: generic separator chars. and space (to get auto fill
2278 ;; to work)
2280 ;; All common separators (eg. space "(" ")" """) characters go through a
2281 ;; function to add new words to the list of words to complete from:
2282 ;; COMPLETION-SEPARATOR-SELF-INSERT-COMMAND (arg).
2283 ;; If the character before this was an alpha-numeric then this adds the
2284 ;; symbol before point to the completion list (using ADD-COMPLETION).
2286 (defun completion-separator-self-insert-command (arg)
2287 (interactive "p")
2288 (use-completion-before-separator)
2289 (self-insert-command arg))
2291 (defun completion-separator-self-insert-autofilling (arg)
2292 (interactive "p")
2293 (use-completion-before-separator)
2294 (self-insert-command arg)
2295 (and auto-fill-function
2296 (funcall auto-fill-function)))
2298 ;;-----------------------------------------------
2299 ;; Wrapping Macro
2300 ;;-----------------------------------------------
2302 ;; Note that because of the way byte compiling works, none of
2303 ;; the functions defined with this macro get byte compiled.
2305 (defmacro def-completion-wrapper (function-name type &optional new-name)
2306 "Add a call to update the completion database before function execution.
2307 TYPE is the type of the wrapper to be added. Can be :before or :under."
2308 (cond ((eq type :separator)
2309 (list 'put (list 'quote function-name) ''completion-function
2310 ''use-completion-before-separator))
2311 ((eq type :before)
2312 (list 'put (list 'quote function-name) ''completion-function
2313 ''use-completion-before-point))
2314 ((eq type :backward-under)
2315 (list 'put (list 'quote function-name) ''completion-function
2316 ''use-completion-backward-under))
2317 ((eq type :backward)
2318 (list 'put (list 'quote function-name) ''completion-function
2319 ''use-completion-backward))
2320 ((eq type :under)
2321 (list 'put (list 'quote function-name) ''completion-function
2322 ''use-completion-under-point))
2323 ((eq type :under-or-before)
2324 (list 'put (list 'quote function-name) ''completion-function
2325 ''use-completion-under-or-before-point))
2326 ((eq type :minibuffer-separator)
2327 (list 'put (list 'quote function-name) ''completion-function
2328 ''use-completion-minibuffer-separator))))
2330 (defun use-completion-minibuffer-separator ()
2331 (let ((cmpl-syntax-table cmpl-standard-syntax-table))
2332 (use-completion-before-separator)))
2334 (defun use-completion-backward-under ()
2335 (use-completion-under-point)
2336 (if (eq last-command 'complete)
2337 ;; probably a failed completion if you have to back up
2338 (cmpl-statistics-block (record-complete-failed))))
2340 (defun use-completion-backward ()
2341 (if (eq last-command 'complete)
2342 ;; probably a failed completion if you have to back up
2343 (cmpl-statistics-block (record-complete-failed))))
2345 (defun completion-before-command ()
2346 (funcall (or (and (symbolp this-command)
2347 (get this-command 'completion-function))
2348 'use-completion-under-or-before-point)))
2350 ;; C mode diffs.
2352 (defvar c-mode-map)
2354 (defun completion-c-mode-hook ()
2355 (def-completion-wrapper electric-c-semi :separator)
2356 (define-key c-mode-map "+" 'completion-separator-self-insert-command)
2357 (define-key c-mode-map "*" 'completion-separator-self-insert-command)
2358 (define-key c-mode-map "/" 'completion-separator-self-insert-command))
2359 ;; Do this either now or whenever C mode is loaded.
2360 (if (featurep 'cc-mode)
2361 (completion-c-mode-hook)
2362 (add-hook 'c-mode-hook 'completion-c-mode-hook))
2364 ;; FORTRAN mode diffs. (these are defined when fortran is called)
2366 (defvar fortran-mode-map)
2368 (defun completion-setup-fortran-mode ()
2369 (define-key fortran-mode-map "+" 'completion-separator-self-insert-command)
2370 (define-key fortran-mode-map "-" 'completion-separator-self-insert-command)
2371 (define-key fortran-mode-map "*" 'completion-separator-self-insert-command)
2372 (define-key fortran-mode-map "/" 'completion-separator-self-insert-command))
2374 ;;; Enable completion mode.
2376 ;;;###autoload
2377 (defun dynamic-completion-mode ()
2378 "Enable dynamic word-completion."
2379 (interactive)
2380 (add-hook 'find-file-hook 'cmpl-find-file-hook)
2381 (add-hook 'pre-command-hook 'completion-before-command)
2383 ;; Install the appropriate mode tables.
2384 (add-hook 'lisp-mode-hook
2385 (lambda ()
2386 (setq cmpl-syntax-table cmpl-lisp-syntax-table)))
2387 (add-hook 'c-mode-hook
2388 (lambda ()
2389 (setq cmpl-syntax-table cmpl-c-syntax-table)))
2390 (add-hook 'fortran-mode-hook
2391 (lambda ()
2392 (setq cmpl-syntax-table cmpl-fortran-syntax-table)
2393 (completion-setup-fortran-mode)))
2395 ;; "Complete" Key Keybindings.
2397 (global-set-key "\M-\r" 'complete)
2398 (global-set-key [?\C-\r] 'complete)
2399 (define-key function-key-map [C-return] [?\C-\r])
2401 ;; Tests -
2402 ;; (add-completion "cumberland")
2403 ;; (add-completion "cumberbund")
2404 ;; cum
2405 ;; Cumber
2406 ;; cumbering
2407 ;; cumb
2409 ;; Save completions when killing Emacs.
2411 (add-hook 'kill-emacs-hook
2412 (lambda ()
2413 (kill-emacs-save-completions)
2414 (cmpl-statistics-block
2415 (record-cmpl-kill-emacs))))
2417 ;; Patches to standard keymaps insert completions
2418 (substitute-key-definition 'kill-region 'completion-kill-region
2419 global-map)
2421 ;; Separators
2422 ;; We've used the completion syntax table given as a guide.
2424 ;; Global separator chars.
2425 ;; We left out <tab> because there are too many special cases for it. Also,
2426 ;; in normal coding it's rarely typed after a word.
2427 (global-set-key " " 'completion-separator-self-insert-autofilling)
2428 (global-set-key "!" 'completion-separator-self-insert-command)
2429 (global-set-key "%" 'completion-separator-self-insert-command)
2430 (global-set-key "^" 'completion-separator-self-insert-command)
2431 (global-set-key "&" 'completion-separator-self-insert-command)
2432 (global-set-key "(" 'completion-separator-self-insert-command)
2433 (global-set-key ")" 'completion-separator-self-insert-command)
2434 (global-set-key "=" 'completion-separator-self-insert-command)
2435 (global-set-key "`" 'completion-separator-self-insert-command)
2436 (global-set-key "|" 'completion-separator-self-insert-command)
2437 (global-set-key "{" 'completion-separator-self-insert-command)
2438 (global-set-key "}" 'completion-separator-self-insert-command)
2439 (global-set-key "[" 'completion-separator-self-insert-command)
2440 (global-set-key "]" 'completion-separator-self-insert-command)
2441 (global-set-key ";" 'completion-separator-self-insert-command)
2442 (global-set-key "\"" 'completion-separator-self-insert-command)
2443 (global-set-key "'" 'completion-separator-self-insert-command)
2444 (global-set-key "#" 'completion-separator-self-insert-command)
2445 (global-set-key "," 'completion-separator-self-insert-command)
2446 (global-set-key "?" 'completion-separator-self-insert-command)
2448 ;; We include period and colon even though they are symbol chars because :
2449 ;; - in text we want to pick up the last word in a sentence.
2450 ;; - in C pointer refs. we want to pick up the first symbol
2451 ;; - it won't make a difference for lisp mode (package names are short)
2452 (global-set-key "." 'completion-separator-self-insert-command)
2453 (global-set-key ":" 'completion-separator-self-insert-command)
2455 ;; Lisp Mode diffs
2456 (define-key lisp-mode-map "!" 'self-insert-command)
2457 (define-key lisp-mode-map "&" 'self-insert-command)
2458 (define-key lisp-mode-map "%" 'self-insert-command)
2459 (define-key lisp-mode-map "?" 'self-insert-command)
2460 (define-key lisp-mode-map "=" 'self-insert-command)
2461 (define-key lisp-mode-map "^" 'self-insert-command)
2463 ;; Avoid warnings.
2464 (defvar c-mode-map)
2465 (defvar fortran-mode-map)
2467 ;;-----------------------------------------------
2468 ;; End of line chars.
2469 ;;-----------------------------------------------
2470 (def-completion-wrapper newline :separator)
2471 (def-completion-wrapper newline-and-indent :separator)
2472 (def-completion-wrapper comint-send-input :separator)
2473 (def-completion-wrapper exit-minibuffer :minibuffer-separator)
2474 (def-completion-wrapper eval-print-last-sexp :separator)
2475 (def-completion-wrapper eval-last-sexp :separator)
2476 ;;(def-completion-wrapper minibuffer-complete-and-exit :minibuffer)
2478 ;;-----------------------------------------------
2479 ;; Cursor movement
2480 ;;-----------------------------------------------
2482 (def-completion-wrapper next-line :under-or-before)
2483 (def-completion-wrapper previous-line :under-or-before)
2484 (def-completion-wrapper beginning-of-buffer :under-or-before)
2485 (def-completion-wrapper end-of-buffer :under-or-before)
2486 (def-completion-wrapper beginning-of-line :under-or-before)
2487 (def-completion-wrapper end-of-line :under-or-before)
2488 (def-completion-wrapper forward-char :under-or-before)
2489 (def-completion-wrapper forward-word :under-or-before)
2490 (def-completion-wrapper forward-sexp :under-or-before)
2491 (def-completion-wrapper backward-char :backward-under)
2492 (def-completion-wrapper backward-word :backward-under)
2493 (def-completion-wrapper backward-sexp :backward-under)
2495 (def-completion-wrapper delete-backward-char :backward)
2496 (def-completion-wrapper delete-backward-char-untabify :backward)
2498 ;; Tests --
2499 ;; foobarbiz
2500 ;; foobar
2501 ;; fooquux
2502 ;; fooper
2504 (cmpl-statistics-block
2505 (record-completion-file-loaded))
2507 (initialize-completions))
2509 (mapc (lambda (x) (add-to-list 'debug-ignored-errors x))
2510 '("^To complete, the point must be after a symbol at least [0-9]* character long\\.$"
2511 "^The string \".*\" is too short to be saved as a completion\\.$"))
2513 (provide 'completion)
2515 ;;; arch-tag: 6990dafe-4abd-4a1f-8c42-ffb25e120f5e
2516 ;;; completion.el ends here