Vim has handy Ctrl-N key that autocompletes word under the cursor with word in current file or any included file. If Once I include boost library, this feature becomes absolutely useless because it takes dozens of seconds to read whole boost includes and I really do not want to complete anything which is defined in boost anyway. So how can I tell vim to ignore /usr/include/boost directory when looking for include files? Oh how I can set 'include' option to ignore any #include <boost/.*> ?
|
feedback
|
|
The option you're looking for is 'complete', but it doesn't define the granularity you're asking for. All you can do is specify whether or not to scan included files. To disable scanning of all included files, you can
Otherwise, setting
Note that, as I mentioned in my other comment, you shouldn't use | |||
|
feedback
|
|
Ok, I found answer to second part:
| |||
feedback
|