Shougo / neocomplcache.vim

Ultimate auto-completion system for Vim.
http://www.vim.org/scripts/script.php?script_id=2620
1.72k stars 135 forks source link

filename_include source not working in Neovim #502

Closed ajpaulson closed 9 years ago

ajpaulson commented 9 years ago

I am using neocomplcache in neovim (it's the best autocomplete option for Neovim) with your recommended config settings.

When I write a C or CPP file no suggestions for header files are suggested.

example: #include <std

There are no [FI] suggestions (stdio.h for instance) only 2 [S] suggestions.

I have vimproc installed to automatically build cache.

Is this a known issue? (System: Debian Jessie)

Shougo commented 9 years ago

Please check your 'path' configuration. I think it does be not set properly.

ajpaulson commented 9 years ago

The path is set correctly and if I use neocomplete in regular vim it suggests [FI] completions.

My compilers also find header files.

Shougo commented 9 years ago

Fixed it.

ajpaulson commented 9 years ago

Thank you, it works perfectly now.