File doc/inccomplete.txt changed (mode: 100644) (index 50b5c67..31fb52b) |
1 |
|
*inccomplete.txt* For Vim version 7.3. Last change: 2015 Aug 29 |
|
|
1 |
|
*inccomplete.txt* For Vim version 7.3. Last change: 2015 Dec 30 |
2 |
2 |
|
|
3 |
3 |
|
|
4 |
4 |
inccomplete plugin documentation by xaizek |
inccomplete plugin documentation by xaizek |
|
... |
... |
License: Same terms as Vim itself (see |license|) |
19 |
19 |
This is a completion plugin for C/C++/ObjC/ObjC++ preprocessors include |
This is a completion plugin for C/C++/ObjC/ObjC++ preprocessors include |
20 |
20 |
directive. It can be used along with clang_complete plugin |
directive. It can be used along with clang_complete plugin |
21 |
21 |
(http://www.vim.org/scripts/script.php?script_id=3302). |
(http://www.vim.org/scripts/script.php?script_id=3302). |
22 |
|
And maybe with some others that I haven't tested. |
|
|
22 |
|
And maybe with some others that haven't been tested. clang_complete |
|
23 |
|
dependency is optional, though even if you don't use it you still can set its |
|
24 |
|
options so that they affect this plugin. |
|
25 |
|
|
|
26 |
|
It has been reported to work with neocomplete plugin and for neovim+deoplete |
|
27 |
|
provided that: |
|
28 |
|
* g:inccomplete_showdirs is set |
|
29 |
|
* g:deoplete#omni#input_patterns.cpp is set to > |
|
30 |
|
['[^. *\t]\.\w*', '[^. *\t]\::\w*', '[^. *\t]\->\w*', '[<"].*/'] |
|
31 |
|
< I.e., add the last item to trigger omnifunc on `<../` and `"../` patterns. |
|
32 |
|
(see |
|
33 |
|
https://github.com/Rip-Rip/clang_complete/issues/466#issuecomment-167975065). |
23 |
34 |
|
|
24 |
35 |
It can complete both "" and <> forms of #include. |
It can complete both "" and <> forms of #include. |
25 |
36 |
|
|