[]
1. IntroductionAuto Complete Mode (aka auto-complete.el, auto-complete-mode) is a extension that automates and advances completion-system of . This is superior than old system:
- Visual interface
- Reduce overhead of completion by using statistic method
- Extensibility
This user manual covers from how to install and how to use to how to extend. Please contact me if you have question.
Auto Complete Mode is licensed under the term of . And this document is licensed under the term of .
2. DownloadsYou can download from .
3. Installation 3.1. Requirements- 800MHz or higher CPU
- 256MB or higher RAM
- GNU Emacs 22 or later
It is easy to install by using a installation script called etc/install.el that is located in the package directory.
Type M-x load-file RET in the running Emacs or newly launched Emacs. Note that if you want to upgrade auto-complete-mode, you have to install in a newly launched Emacs with -q option. Then input a file name to load which is a path string with adding /etc/install.el to the package directory. For example, if the package directory is ~/tmp/auto-complete-1.2, the file name will be ~/tmp/auto-complete-1.2/etc/install.el.
Then input a directory where Auto Complete will be installed. You need to add a directory to load-path later if load-path doesn't include the directory. The directory is to be ~/.emacs.d by default.
Finally type RET to start installation. After installation, you may see the following buffer and follow instructions to edit .emacs.
You can also install from terminal like:
$ make install $ # or with directory specified $ make install DIR=$HOME/.emacs.d/If you don't have GNU Make, run emacs like:
$ emacs -batch -l etc/install.elExample message after installation (*Installation Result* Buffer)
Successfully installed! Add the following code to your .emacs: (add-to-list 'load-path "~/.emacs.d") ; This may not be appeared if you have already added. (add-to-list 'ac-dictionary-directories "~/.emacs.d/ac-dict") (require 'auto-complete-config) (ac-config-default) 3.3. Manual InstallationIt is also possible to install manually if you follow a directory configuration. First, do byte-compile all .el files in the package directory. You may use Makefile in UNIX OS.
$ make byte-compileIf you can't use Makefile, open the directory from Emacs by C-x d and type * . el RET B RET to do byte-compile.
Then copy all .el files and .elc files to a directory which is added to load-path. You may do such the following command if the directory is ~/.emacs.d
$ cp *.el *.elc ~/.emacs.dAnd then install dictionary files. They are optional to run Auto Complete Mode, but you should install if you don't have any reason. Dictionary files are located in called dict directory, it is needed that they are installed to a directory which is auto-complete.el has been installed. If you installed auto-complete.el to a directory called ~/.emacs.d, you also have to install dictionary files to ~/.emacs.d. Please be careful not to overwrite existed files. It may be rare case, but the installation script above avoids overwrite by renaming dict directory to ac-dict directory.
$ cp -r dict ~/.emacs.dFinally add the following code to .emacs.
(add-to-list 'ac-dictionary-directories "~/.emacs.d/dict") (require 'auto-complete-config) (ac-config-default)If you haven't added the directory to load-path, you need to add the following code too.
(add-to-list 'load-path "~/.emacs.d") 3.4. CheckType some characters in *scratch* buffer in a restarted Emacs or newly launched Emacs. It is successful if you see completion menu. If you have error or no completion is started, it is failure maybe. Please contact me in such case with confirmation following:
Using correct load-path?
A directory which auto-complete.el is installed to is in load-path.
Characters AC in mode-line?
If you don't see characters AC in mode-line (a gray line of bottom of buffer), auto-complete-mode is not enabled. Type M-x auto-complete-mode to enable and try again.
Error occurred
If you have *Backtrace* with errors or errors in minibuffer (bottom of frame), please contact me with the errors.
First, in a meaning, auto-complete-mode has no "usage". Because auto-complete-mode is designed to fade into Emacs editing system. Users will be received a highly-developed completion-system automatically without any difficulty. Ultimately, a goal of auto-complete-mode is to provide a system that does what users want without any command, but it is impossible to accomplish 100% accuracy actually. So there is "usage" to cover that points.
4.1. Input CharactersInputting characters is basic. Any completion will never be shown without any character. So when completion will be started, in other others, what character causes completion to be started? It is good question but it is difficult to answer here. In simple words, completion will be started when just character is inserted. See for more details.
4.2. Completion by TABAfter completion is started, completion by TAB will be enabled temporarily. Completion by TAB is the most important and most frequent used command. TAB has several meanings.
Case that only one candidate remains
If only on candidate remains, the candidate will be used to complete.
Case that there is common part among candidates
For example, if all candidates start with "set", it means they have common part "set". So TAB completes "set" at first.
Otherwise
Otherwise, select candidates in cycle by typing TAB.
It may be different a little according to settings, but basically completion by TAB works as we wrote above. A reason why TAB has several meanings is that we want users to do anything with TAB.
4.3. Completion by RETLike completion by TAB but some points are different:
- Complete a selected candidate immediately
- Execute an action if a selected candidate has the action
It is necessary to type TAB a few times for completion by TAB. Completion by RET instead complete a selected candidate immediately, so when you see a candidate you want, just type RET. If the candidate has an action, the action will be executed. Take a example of builtin abbrev completion. In completion by TAB, an abbrev which expands "www" to "World Wide Web" will be completed to "www", but in completion by RET, the abbrev will be expanded to "World Wide Web" as completion.
4.4. Candidate SelectionFollowing auto-complete-mode philosophy, it is not recommended to select candidates. Because, it means it has been failed to guess completion, and also it requires for users to do candidate selection which is a high cost operation. We think there is so many cases that requires to do candidate selection, because completion by TAB will help candidate selection somehow and in recent version, a statistic method contributes to make a candidate suggestion more accurate. However, actually, this is such cases. So we also think it is not bad idea to remember how to select candidates.
Selecting candidates is not a complex operation. You can select candidates forward or backward by cursor key or M-p and M-n. According to setting, a behavior of completion by TAB will be changed as a behavior of completion by RET. See for more details.
There is other ways to select candidates. M-1 to select candidate 1, M-2 to select candidate 2, and so on.
4.5. Helpauto-complete-mode has two type of help functionalities called Quick Help and Buffer Help. They are different in a point of displaying. Quick help will appear at the side of completion menu, so you can easily see that, but there is a problem if there is no space to displaying the help. Quick help will be shown automatically. To use quick help, you need to set to t. Delay time show quick help is given by .
On other side, buffer help will not be shown without any instructions from users. Buffer help literally display a help in a buffer of other window. It costs much to see than quick help, but it has more readability. To show buffer help, press C-? or f1. By pressing C-M-v or C-M-S-v after showing buffer help, you can scroll forward or backward for help buffer. Other commands will be fallbacked and buffer help will be closed.
4.6. SummaryCompletion will be started by inserting characters. After completion is started, operations in the following table will be enabled temporarily. After completion is finished, these operations will be disable.
Key | Command | Description |
---|---|---|
TAB, C-i | ac-expand | Completion by TAB |
RET, C-m | ac-complete | Completion by RET |
down, M-n | ac-next | Select next candidate |
up, M-p | ac-previous | Select previous candidate |
C-?, f1 | ac-help | Show buffer help |
To stop completion, use C-g simply.
5. Advanced Usage 5.1. auto-complete commandBasically there is assumption that auto-complete-mode will be started automatically, but there is also exception. For example, that is a case that an user wants to complete without inserting any character or a case not to start auto-complete-mode automatically by settings. A command called auto-complete is useful in such cases, which is used with key binding in general. The following code changes a default completion command to more advanced feature that auto-complete-mode provides.
(define-key ac-mode-map (kbd "M-TAB") 'auto-complete)So, as of auto-complete command, it is a little different from an original automatic completion.
Case that only one candidate remains
Complete immediately without showing completion menu.
Case that no candidates remains
Attempt to complete with fuzzy matching. See for more details.
Otherwise
Otherwise start completion with/without expanding a whole common part and showing completion menu. See also and .
In a case that there is no candidates by auto-complete command or a case that ac-fuzzy-complete command is executed, auto-complete-mode attempts to complete with fuzzy matching instead of usual exact matching. Parameters of fuzzy matching has already been optimized for use, so users don't need to change them. However if you want to know the internals, see fuzzy.el. Using completion by fuzzy matching, typo will be fixed as a series of completion. For instance, input "messaeg" in a buffer, and then do M-x auto-complete or M-x ac-fuzzy-complete. The cursor color will be changed to red if completion has been successful, and then you can continue to complete with regarding of "messaeg" as "message". It is not bad idea to bind auto-complete command to some key in a meaning of handling such cases.
5.3. Filtering Completion CandidatesYou can start filtering by C-s. The cursor color will be changed to blue. Then input characters to filter. It is possible to do completion by TAB or select candidates, which changes the cursor color to original so that telling filtering completion candidates has done. The filtering string will be restored when C-s again. To delete the filter string, press DEL or C-h. Other general operations is not allowed there.
5.4. Trigger KeyIt is difficult what key auto-complete command is bound to. It should be bound to a key which is easy to press as much as possible because completion operation is often happened. However, it is a major problem that there is no empty key to press easily. auto-complete-mode provides a feature called Trigger Key that handles such the problem. Using trigger key, you can use an arbitrary key temporarily if necessary. The following code uses TAB as trigger key.
(ac-set-trigger-key "TAB")Trigger key will be enabled after inserting characters. Otherwise it is dealt as an usual command (TAB will be indent). Generally, trigger key is used with auto-auto-start being nil.
(setq ac-auto-start nil)As of ac-auto-start, see or for more details.
5.5. Candidate Suggestionauto-complete-mode analyzes completion operations one by one and reduces overheads of completion as much as possible. For example, having a candidate "foobar" been completed few times, auto-complete-mode arranges it to top of the candidates next time and make a situation that allows users to complete the word with one time TAB or few times TAB. It is called comphist internally, and you can use it by setting ac-use-comphist to t. It is enabled by default. Collection operations data will be stored in user-emacs-directory or ~/.emacs.d/ with a name ac-comphist.dat.
auto-complete-mode collects two types of data to accomplish accurate candidate suggestion.
- Count of completion
- Position of completion
Simply saying, it collects not only a completion count but also a position of completion. A completion candidate will be scored with the count and the point. If you complete find-file with a word f few times, in next time find-file will be arranged to top of candidates. However it is too simple. Actually find-file with find- will not have the same score, because a distance between f and find- will reduce a weight of scoring. It means that if you often complete find-library after find-, find-library will get high score than find-file at that position. So auto-complete-mode can guess find-file will be top after f and find-library will be top after find- as it seems to learn from users' operations.
5.6. Completion by DictionaryDictionary is a simple list of string. There is three types of dictionary: user defined dictionary, major mode dictionary, and extension dictionary. You need to add ac-source-dictionary to ac-sources (default). See for more details.
5.6.1. User Defined DictionaryUser defined dictionary is composed of a list of string specified ac-user-dictionary and dictionary files specified by ac-user-dictionary-files. Dictionary file is a word list separated with newline. User defined dictionary is shared with all buffers. Here is example adding your mail address to dictionary.
(add-to-list 'ac-user-dictionary "foobar@example.com")Setting will be applied immediately. Try to input "foo" in a buffer. You may see foobar@example.com as a completion candidate. This setting will be cleared if Emacs will quit. You need to write the following code to keep setting in next Emacs launching.
(setq ac-user-dictionary '("foobar@example.com" "hogehoge@example.com"))There is more easy way to add word to dictionary. Files specified by ac-user-dictionary-files will be treated as dictionary files. By default, ~/.dict will be a dictionary file, so edit ~/.dict like:
foobar@example.com hogehoge@example.comAs we said, words are separated with newline. They are not applied immediately, because auto-complete-mode uses cache not to load every time from a dictionary file. It may be high cost. To clear cache, do M-x ac-clear-dictionary-cache. After that, dictionary files will be load absolutely.
No need to say perhaps, you can use other files as dictionary file by adding to ac-user-dictionary-files.
5.6.2. Major Mode Dictionary and Extension DictionaryYou can use other dictionaries for every major-modes and extensions. A dictionary will loaded from a directory specified with ac-dictionary-directories. ac-dictionary-directories may be the following setting if you followed instructions.
(add-to-list 'ac-dictionary-directories "~/.emacs.d/ac-dict")A dictionary named c++-mode for specific major-mode and a dictionary named txt for specific extension will be stored in the directory. For instance, you complete in a buffer named a.cpp with dictionary completion, following the setting above, ~/.emacs.d/ac-dict/c++-mode and ~/.emacs.d/ac-dict/cpp will be loaded as dictionary file. You can edit the dictionary files and make a new one. In addition, you can add a new dictionary file to a directory that has same configuration.
As same as user defined dictionary, after editing and adding dictionary, you should do M-x ac-clear-dictionary-cache to apply changes.
6. SourceSource is a concept that insures a extensibility of auto-complete-mode. Simply saying, source is a description about:
- How to generate completion candidates
- How to complete
- How to show
Anybody who know about Emacs Lisp a little can define a source easily. See for how to define a source. Here we can explain how to use builtin sources.
Usually a name of source starts with ac-source-. So you can list up sources with apropos (M-x apropos RET ^ac-source-). You may see ac-source-filename and ac-source-dictionary which are entities of sources.
6.1. Using SourceIf you wrote (ac-config-default) in your .emacs, it is rare to change a source setting because it is already optimized to use. Here is a short explanation about source however. Sources will be used by setting ac-sources to a list of sources. You can see the setting by evaluating ac-sources in *scratch* buffer:
;; Formatted (ac-source-filename ac-source-functions ac-source-yasnippet ac-source-variables ac-source-symbols ac-source-features ac-source-abbrev ac-source-words-in-same-mode-buffers ac-source-dictionary)As you see, ac-sources in *scratch* buffer has six sources. We explain each source for detail, you can guess meanings of sources. It is worth to remember that ac-sources is a buffer local variable, which means each ac-sources for buffers will be different.
Here is an example. Think you are at *scratch* buffer. As we said, this buffer has many sources. Some people think it is too many. So try to change ac-sources to reduce functionalities. It is easy to change. Just evaluate the following code in *scratch* buffer or with M-::
(setq ac-sources '(ac-source-symbols ac-source-words-in-same-mode-buffers))This example changes ac-source setting and enable only symbol completion and word completion among same major modes. Then, how can we enable this setting in next Emacs launching? We can change settings by adding a hook which is called when *scratch* buffer is created.
(defun my-ac-emacs-lisp-mode () (setq ac-sources '(ac-source-symbols ac-source-words-in-same-mode-buffers))) (add-hook 'emacs-lisp-mode-hook 'my-ac-emacs-lisp-mode)If a code (ac-config-default) is written in .emacs, the code above may not be worked correctly. It is because of (ac-config-default) will overwrite the setting. In such case, you can redefine a function which is used in (ac-config-default). The function name is ac-emacs-lisp-mode-setup in emacs-lisp-mode. See auto-complete-config.el for more details.
(defun ac-emacs-lisp-mode-setup () (setq ac-sources '(ac-source-symbols ac-source-words-in-same-mode-buffers)))So, now you know how to change sources in a specific major mode. Summary is:
- Define a function changing ac-sources
- Register the function to proper mode hooks (c++-mode-hook, ruby-mode-hook, and python-mode-hook, etc)
By the way, how can we change a setting for all buffers? We use setq-default to change ac-sources instead of setq in such case. Then the default value of ac-sources will be changed to the value you specified.
(setq-default ac-sources '(ac-source-words-in-all-buffer))There is other ways to do that. (ac-config-default) changes the default value of ac-sources by registering a hook for auto-complete-mode. The registered function is ac-common-setup that adds ac-source-filename to the first of ac-sources by default. So all auto-complete-mode enabled buffer will have ac-source-filename at the first of ac-sources. A reason why adding to the first is relating to . Anyway you don't care about it here. So if you want to change ac-sources of all buffer, you can redefine ac-common-setup function to do that.
;; Add ac-source-dictionary to ac-sources of all buffer (defun ac-common-setup () (setq ac-sources (append ac-sources '(ac-source-dictionary)))) 6.2. Builtin SourcesHere are defined sources in auto-complete.el and auto-complete-config.el.
6.2.1. ac-source-abbrevA source for Emacs abbreviation function. See info emacs Abbrevs about abbreviation function.
6.2.2. ac-source-css-propertyA source for CSS property.
6.2.3. ac-source-dictionaryA source for dictionary. See about dictionary.
6.2.4. ac-source-eclimA source for .
6.2.5. ac-source-featuresA source for completing features which are available with (require '.
6.2.6. ac-source-filenameA source for completing file name. Completion will be started after inserting /.
6.2.7. ac-source-files-in-current-dirA source for completing files in a current directory. It may be useful with eshell.
6.2.8. ac-source-functionsA source for completing Emacs Lisp functions. It is available only after (.
6.2.9. ac-source-gtagsA source for completing tags of .
6.2.10. ac-source-imenuA source for completing imenu nodes. See info emacs imenu for details.
6.2.11. ac-source-semanticA source for . It can be used for completing member name for C/C++.
6.2.12. ac-source-semantic-rawUnlike ac-source-semantic, this source is for completing symbols in a raw namespace.
6.2.13. ac-source-symbolsA source for completing Emacs Lisp symbols.
6.2.14. ac-source-variablesA source for completing Emacs Lisp symbols.
6.2.15. ac-source-words-in-all-bufferA source for completing words in all buffer. Unlikely , it doesn't regard major-mode.
6.2.16. ac-source-words-in-bufferA source for completing words in a current buffer.
6.2.17. ac-source-words-in-same-mode-buffersA source for completing words which are collected over buffers whom major-mode is same to of a current buffer. For example, words will shared among a.cpp and b.cpp, but not shared among a.pl and b.cpp because they are different major-mode buffers. Usually this source is more useful than .
6.2.18. ac-source-yasnippetA source for to complete and expand snippets.
7. Tips 7.1. Not to complete automaticallyIf you are being annoyed with displaying completion menu, you can disable automatic starting completion by setting ac-auto-start to nil.
(setq ac-auto-start nil)You need to bind some key to auto-complete command (because you need to complete anyway). For example, bind to ac-mode-map, which is a key map for auto-complete-mode enabled buffer:
(define-key ac-mode-map (kbd "M-TAB") 'auto-complete)Or bind to global key map.
(global-set-key "\M-/" 'auto-complete)In addition, if you allow to start completion automatically but also want to be silent as much as possible, you can do it by setting ac-auto-start to an prefix length integer. For example, if you want to start completion automatically when you has inserted 4 or more characters, just set ac-auto-start to 4:
(setq ac-auto-start 4)Setting ac-auto-start to large number will result in good for performance. Lesser ac-auto-start, more high cost to produce completion candidates, because there will be so many candidates necessarily. If you feel auto-complete-mode is stalling, change ac-auto-start to a larger number or nil.
See for more details.
And consider to use .
7.2. Not to show completion menu automaticallyThere is another approach to solve the annoying problem is that not to show completion menu automatically. Not to show completion menu automatically, set to nil.
(setq ac-auto-show-menu nil)When you select or filter candidates, completion menu will be shown.
In other way, you can delay showing completion menu by setting ac-auto-show-menu to seconds in real number.
;; Show 0.8 second later (setq ac-auto-show-menu 0.8)This interface has both good points of completely automatic completion and completely non-automatic completion. This may be default in the future.
7.3. Stop completionYou can stop completion by pressing C-g. However you won't press C-g while defining a macro. In such case, it is a good idea to bind some key to ac-completing-map.
(define-key ac-completing-map "\M-/" 'ac-stop)Now you can stop completion by pressing M-/.
7.4. Finish completion by TABAs we described above, there is many behaviors in TAB. You need to use TAB and RET properly, but there is a simple interface that bind RET to original and TAB to finish completion:
(define-key ac-completing-map "\t" 'ac-complete) (define-key ac-completing-map "\r" nil) 7.5. Select candidates with C-n/C-p only when completion menu is displayedBy evaluating the following code, you can select candidates with C-n/C-p, but it might be annoying sometimes.
;; Bad config (define-key ac-completing-map "\C-n" 'ac-next) (define-key ac-completing-map "\C-p" 'ac-previous)In this case, it is better that selecting candidates is enabled only when completion menu is displayed so that the key input will not be taken as much as possible. ac-menu-map is a keymap for completion on completion menu which is enabled when ac-use-menu-map is t.
(setq ac-use-menu-map t) ;; Default settings (define-key ac-menu-map "\C-n" 'ac-next) (define-key ac-menu-map "\C-p" 'ac-previous)See and for more details.
7.6. Not to use quick helpA tooltip help that is shown when completing is called quick help. You can disable it if you don't want to use it:
(setq ac-use-quick-help nil) 7.7. Change a height of completion menuSet ac-menu-height to number of lines.
;; 20 lines (setq ac-menu-height 20) 7.8. Enable auto-complete-mode automatically for specific modesauto-complete-mode won't be enabled automatically for modes that are not in ac-modes. So you need to set if necessary:
(add-to-list 'ac-modes 'brandnew-mode) 7.9. Ignore caseThere is three ways to distinguish upper case and lower case.
;; Just ignore case (setq ac-ignore-case t) ;; Ignore case if completion target string doesn't include upper characters (setq ac-ignore-case 'smart) ;; Distinguish case (setq ac-ignore-case nil)Default is smart.
7.10. Stop completion automatically after inserting specific wordsSet ac-ignores to words that stops completion automatically. In ruby, some people want to stop completion automatically after inserting "end":
(add-hook 'ruby-mode-hook (lambda () (make-local-variable 'ac-ignores) (add-to-list 'ac-ignores "end")))Note that ac-ignores is not a buffer local variable, so you need to make it buffer local with make-local-variable if it is buffer specific setting.
7.11. Change colorsColors settings are following:
Face | Description |
---|---|
ac-completion-face | Foreground color of inline completion |
ac-candidate-face | Color of completion menu |
ac-selection-face | Selection color of completion menu |
To change face background color, use set-face-background. To change face foreground color, use set-face-foreground. To set underline, use set-face-underline.
;; Examples (set-face-background 'ac-candidate-face "lightgray") (set-face-underline 'ac-candidate-face "darkgray") (set-face-background 'ac-selection-face "steelblue") 7.12. Change default sourcesRead first if you don't familiar with sources. To change default of sources, use setq-default:
(setq-default ac-sources '(ac-source-words-in-all-buffer)) 7.13. Change sources for specific major modesFor example, you may want to use specific sources for C++ buffers. To do that, register a hook by add-hook and change ac-sources properly:
(add-hook 'c++-mode (lambda () (add-to-list 'ac-sources 'ac-source-semantic))) 7.14. Completion with specific sourceYou can start completion with specific source. For example, if you want to complete file name, do M-x ac-complete-filename at point. Or if you want to complete C/C++ member name, do M-x ac-complete-semantic at point. Usually, you may bind them to some key like:
;; Complete member name by C-c . for C++ mode. (add-hook 'c++-mode-hook (lambda () (local-set-key (kbd "C-c .") 'ac-complete-semantic))) ;; Complete file name by C-c / (global-set-key (kbd "C-c /") 'ac-complete-filename)Generally, such commands will be automatically available when sources are defined. Assume that a source named ac-source-foobar is being defined for example, a command called ac-complete-foobar will be also defined automatically. See also for available commands.
If you want to use multiple sources for a command, you need to define a command for it like:
(defun semantic-and-gtags-complete () (interactive) (auto-complete '(ac-source-semantic ac-source-gtags)))auto-complete function can take an alternative of ac-sources.
7.15. Show help persistentlyUse ac-persist-help instead of ac-help, which is bound to M-
ac-last-help command shows a lastly completed candidate help in a ac-help (buffer help) form. If you give an argument by C-u or just call ac-last-persist-help, its help buffer will not disappear automatically.
ac-last-quick-help command show a lastly completed candidate help in a ac-quick-help (quick help) form. It is useful if you want to see a function documentation, for example.
You may bind keys to these command like:
(define-key ac-mode-map (kbd "C-c h") 'ac-last-quick-help) (define-key ac-mode-map (kbd "C-c H") 'ac-last-help) 7.17. Show help beautifullyIf is installed, auto-complete-mode uses its native rendering engine for displaying quick help instead of legacy one.
8. ConfigurationAny configuration item will be set in .emacs or with M-x customize-group RET auto-complete RET.
8.1. ac-delayDelay time to start completion in real number seconds. It is a trade off of responsibility and performance.
8.2. ac-auto-show-menuShow completion menu automatically if t specified. t means always automatically showing completion menu. nil means never showing completion menu. Real number means delay time in seconds.
8.3. ac-show-menu-immediately-on-auto-completeWhether or not to show completion menu immediately on auto-complete command. If inline completion has already been showed, this configuration will be ignored.
8.4. ac-expand-on-auto-completeWhether or not to expand a common part of whole candidates.
8.5. ac-disable-facesSpecify a list of face symbols for disabling auto completion. Auto completion will not be started if a face text property at a point is included in the list.
8.6. ac-stop-flymake-on-completingWhether or not to stop Flymake on completion.
8.7. ac-use-fuzzyWhether or not to use .
8.8. ac-fuzzy-cursor-colorChange cursor color to specified color when is started. nil means never changed. Available colors can be seen with M-x list-colors-display.
8.9. ac-use-comphistWhether or not to use . nil means never using it and get performance better maybe.
8.10. ac-comphist-thresholdSpecify a percentage of limiting lower scored candidates. 100% for whole scores.
8.11. ac-comphist-fileSpecify a file stores data of .
8.12. ac-use-quick-helpWhether or not to use quick help.
8.13. ac-quick-help-delayDelay time to show quick help in real number seconds.
8.14. ac-menu-heightSpecify an integer of lines of completion menu.
8.15. ac-quick-help-heightSpecify an integer of lines of quick help.
8.16. ac-candidate-limitLimit a number of candidates. Specifying an integer, the value will be a limit of candidates. nil means no limit.
8.17. ac-modesSpecify major modes as a list of symbols that will be enabled automatically if global-auto-complete-mode is enabled.
8.18. ac-compatible-packages-regexpSpecify a regexp that identifies starting completion or not for that package.
8.19. ac-trigger-commandsSpecify commands as a list of symbols that starts completion automatically. self-insert-command is one of default.
8.20. ac-trigger-commands-on-completingSame as expect this will be used on completing.
8.21. ac-trigger-keySpecify a .
8.22. ac-auto-startSpecify how completion will be started. t means always starting completion automatically. nil means never started automatically. An integer means completion will not be started until the value is more than a length of the completion target string.
8.23. ac-ignoresSpecify a list of strings that stops completion.
8.24. ac-ignore-caseSpecify how distinguish case. t means always ignoring case. nil means never ignoring case. smart in symbol means ignoring case only when the completion target string doesn't include upper characters.
8.25. ac-dwim"Do What I Mean" function. t means:
- After selecting candidates, TAB will behave as RET
- TAB will behave as RET only on candidate remains
Specify a special keymap (ac-menu-map) should be enabled when completion menu is displayed. ac-menu-map will be enabled when it is t and satisfy one of the following conditions:
- ac-auto-start and ac-auto-show-menu are not nil, and completion menu is displayed after starting completion
- Completion menu is displayed by auto-complete command
- Completion menu is displayed by ac-isearch command
Use only when operations is not affected. Internally it uses overriding-local-map, which is too powerful to use with keeping orthogonality. So don't use as much as possible.
8.28. ac-completion-faceFace of inline completion.
8.29. ac-candidate-faceFace of completion menu background.
8.30. ac-selection-faceFace of completion menu selection.
8.31. global-auto-complete-modeWhether or not to use auto-complete-mode globally. It is t in general.
8.32. ac-user-dictionarySpecify a dictionary as a list of string for .
8.33. ac-user-dictionary-filesSpecify a dictionary files as a list of string for .
8.34. ac-dictionary-directoriesSpecify a dictionary directories as a list of string for .
8.35. ac-sourcesSpecify sources as a list of . This is a buffer local variable.
8.36. ac-completing-mapKeymap for completion.
8.37. ac-menu-mapKeymap for completion on completion menu. See also .
8.38. ac-mode-mapKeymap for auto-complete-mode enabled buffers.
9. ExtendA meaning to extend auto-complete-mode is just defining a . This section describe how to define a source.
9.1. PrototypeSource basically takes a form of the following:
(defvar ac-source-mysource1 '((prop . value) ...))As you see, source is just an associate list. You can define a source by combining pairs of defined property and its value.
9.2. ExampleThe most important property for source is property. This property describes how to generate completion candidates by giving a function, an expression, or a variable. A result of evaluation should be a list of strings. Here is an example to generate candidates "Foo", "Bar", and "Baz":
(defvar ac-source-mysource1 '((candidates . (list "Foo" "Bar" "Baz"))))Then add this source to ac-sources and use:
(setq ac-sources '(ac-source-mysource1))It is successful if you have "Bar" and "Baz" by inserting "B". The example above has an expression (list ...) in candidates property. The expression specified there will not be byte-compiled, so you should not use an expression unless it is too simple, because it has a bad affection on performance. You should use a function instead maybe:
(defun mysource1-candidates () '("Foo" "Bar" "Baz")) (defvar ac-source-mysource1 '((candidates . mysource1-candidates)))The function specified in candidates property will be called without any arguments on every time candidates updated. There is another way: a variable.
9.3. InitializationYou may want to initialize a source at first time to complete. Use init property in these cases. As same as candidates property, specify a function without any parameters or an expression. Here is an example:
(defvar mysource2-cache nil) (defun mysource2-init () (setq mysource2-cache '("Huge" "Processing" "Is" "Done" "Here"))) (defvar ac-source-mysource2 '((init . mysource2-init) (candidates . mysource2-cache)))In this example, mysource2-init function does huge processing, and stores the result into mysource2-cache variable. Then specifying the variable in candidates property, this source prevents huge processing on every time update completions. There are possible usage:
- Do require
- Open buffers first of all
Caching strategy is important for auto-complete-mode. There are two major ways: init property and cache property that is described in this section. Specifying cache property in source definition, a result of evaluation of candidates property will be cached and reused the result as the result of evaluation of candidates property next time.
Rewrite the example in previous section by using cache property.
(defun mysource2-candidates () '("Huge" "Processing" "Is" "Done" "Here")) (defvar ac-source-mysource2 '((candidates . mysource2-candidates) (cache)))There is no performance problem because this source has cache property even if candidates property will do huge processing.
9.4.1. Cache ExpirationIt is possible to keep among more wider scope than init property and cache property. It may be useful for remembering all function names which is rarely changed. In these cases, how can we clear cache property not at the expense of performance? This is true time use that functionality.
Use ac-clear-variable-after-save to clear cache every time a buffer saved. Here is an example:
(defvar mysource3-cache nil) (ac-clear-variable-after-save 'mysource3-cache) (defun mysource3-candidates () (or mysource3-cache (setq mysource3-cache (list (format "Time %s" (current-time-string)))))) (defvar ac-source-mysource3 '((candidates . mysource3-candidates)))Add this source to ac-sources and complete with "Time". You may see a time when completion has been started. After that, you also see the same time, because mysource3-candidates returns the cache as much as possible. Then, save the buffer once and complete with "Time" again. In this time, you may find a new time. An essence of this source is to use ac-clear-variable-after-save to manage a variable for cache.
It is also possible to clear cache periodically. Use ac-clear-variable-every-minute to do that. A way to use is same to ac-clear-variable-after-save except its cache will be cleared every minutes. A builtin source ac-source-functions uses this functionality.
9.5. Actionwill evaluate a function or an expression specified in action property. A builtin sources ac-source-abbrev and ac-source-yasnippet use this property.
9.6. Omni CompletionOmni Completion is a type of completion which regards of a context of editing. A file name completion which completes with slashed detected and a member name completion in C/C++ with dots detected are omni completions. To make a source support for omni completion, use prefix property. A result of evaluation of prefix property must be a beginning point of completion target string. Retuning nil means the source is disabled within the context.
Consider a source that completes mail addresses only after "To: ". First of all, define a mail address completion source as same as above.
(defvar ac-source-to-mailaddr '((candidates . (list "foo1@example.com" "foo2@example.com" "foo3@example.com")))) (setq ac-sources '(ac-source-to-mailaddr))Then enable completions only after "To: " by using prefix property. prefix property must be one of:
- Regexp
- Function
- Expression
Specifying a regexp, auto-complete-mode thinks of a point of start of group 1 or group 0 as a beginning point of completion target string by doing re-search-backward with the regexp. If you want to do more complicated, use a function or an expression instead. The beginning point that is evaluated here will be stored into . In above example, regexp is enough.
^To: \(.*\)A reason why capturing group 1 is skipping "To: ". By adding this into the source definition, the source looks like:
(defvar ac-source-to-mailaddr '((candidates . (list "foo1@example.com" "foo2@example.com" "foo3@example.com")) (prefix . "^To: \\(.*\\)")))Add this source to ac-sources and then type "To: ". You will be able to complete mail addresses.
9.7. ac-define-sourceYou may use an utility macro called ac-define-source which defines a source and a command.
(ac-define-source mysource3 '((candidates . (list "Foo" "Bar" "Baz"))))This expression will be expanded like:
(defvar ac-source-mysource3 '((candidates . (list "Foo" "Bar" "Baz")))) (defun ac-complete-mysource3 () (interactive) (auto-complete '(ac-source-mysource3)))A source will be defined as usual and in addition a command that completes with the source will be defined. Calling auto-complete without arguments will use ac-sources as default sources and with arguments will use the arguments as default sources. Considering compatibility, it is difficult to answer which you should use defvar and ac-define-source. Builtin sources are defined with ac-define-sources, so you can use them alone by binding some key to these commands such like ac-complete-filename. See also [this tips](#Completionwithspecific_source].
9.8. Source Properties 9.8.1. initSpecify a function or an expression that is evaluated only once when completion is started.
9.8.2. candidatesSpecify a function, an expression, or a variable to calculate candidates. Candidates should be a list of string. If property is enabled, this property will be ignored twice or later.
9.8.3. prefixSpecify a regexp, a function, or an expression to find a point of completion target string for . This source will be ignored when nil returned. If a regexp is specified, a start point of group 1 or group 2 will be used as a value.
9.8.4. requiresSpecify a required number of characters of completion target string. If nothing is specified, auto-complete-mode uses instead.
9.8.5. actionSpecify a function or an expression that is executed on .
9.8.6. limitSpecify a limit of candidates. It overrides ac-candidate-limit partially.
9.8.7. symbolSpecify a symbol of candidate meaning in one character string. The symbol will be any character, but you should follow the rule:
Symbol | Meaning |
---|---|
s | Symbol |
f | Function, Method |
v | Variable |
c | Constant |
a | Abbreviation |
d | Dictionary |
Specify a summary of candidate in string. It should be used for summarizing the candidate in short string.
9.8.9. cacheUse .
9.8.10. requireSpecify an integer or nil. This source will be ignored when the integer value is lager than a length of completion target string. nil means nothing ignored.
9.8.11. candidate-faceSpecify a face of candidate. It overrides partially.
9.8.12. selection-faceSpecify a face of selection. It overrides partially.
9.8.13. dependsSpecify a list of features (which are required) that the source is depending.
9.8.14. availableSpecify a function or an expression that describe the source is available or not.
9.9. VariablesHere is a list of often used variables.
9.9.1. ac-bufferA buffer where completion started.
9.9.2. ac-pointA start point of completion target string.
9.9.3. ac-prefixA string of completion target.
9.9.4. ac-limitA limit of candidates. Its value may be one of and property.
9.9.5. ac-candidatesA list of candidates.
10. Trouble Shooting10.1. Response Latency
To keep much responsibility is very important for auto-complete-mode. However it is well known fact that a performance is a trade off of functionalities. List up options related to the performance.
10.1.1. ac-auto-startFor a larger number, it reduces a cost of generating completion candidates. Or you can remove the cost by setting nil and you can use when you truly need. See for more details.
10.1.2. ac-delayFor a larger number, it reduces a cost of starting completion.
10.1.3. ac-auto-show-menuFor a larger number, it reduces a displaying cost of completion menu.
10.1.4. ac-use-comphistSetting to nil to disable , it reduces a cost of suggestion.
10.1.5. ac-candidate-limitFor a property number, it reduces much computation of generating candidates.
10.2. Completion menu is disruptedThere is two major cases.
10.2.1. Column Computation Caseauto-complete-mode tries to reduce a cost of computation of columns to show completion menu correctly by using a optimized function at the expense of accuracy. However, it probably causes a menu to be disrupted. Not to use the optimized function, evaluate the following code:
(setq popup-use-optimized-column-computation nil)10.2.2. Font Case
There is a problem when render with Xft in Ubuntu 9.10. Use , which renders more suitably. Or disable Xft, then it can render correctly.
We don't good answers now, but you may shot the troubles by changing font size with set-face-font. For instance, completion menu may be disrupted when displaying the menu including Japanese in NTEmacs. In such case, it is worth to try to evaluate the following code to fix it:
(set-face-font 'ac-candidate-face "MS Gothic 11") (set-face-font 'ac-selection-face "MS Gothic 11")11. Known Bugs
11.1. Auto completion will not be started in a buffer flyspell-mode enabled
A way of delaying processes of flyspell-mode disables auto completion. You can avoid this problem by M-x ac-flyspell-workaround. You can write the following code into your ~/.emacs.
(ac-flyspell-workaround)12. Reporting Bugs
Visit and create a new ticket.
-
Strictly re-search-backward with the added adding 28d397e87306b8631f3ed80d858d35f0= at the end