-
Notifications
You must be signed in to change notification settings - Fork 203
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how to complete the include files in C++ #435
Comments
It is bug. Fixed. |
Hello, I have downloaded the newest version of neocomplete.vim, but it still not work for me. Is there any config should I do? thanks |
Please upload your configuration. |
Hello! my configuration is copyed from
|
I will fix it later. |
Fixed. Please install neoinclude. |
Hello!
I work with C and C++, and I like your plugin very much. But I find a issue now.
when I type


#include <std>
in C program, the C include files would be completed automatically, like this#include <stdio.h>
.But when I type
#include <iost>
in C++ program, I want the include file to be completed like this#include <iostream>
, but it is not completed at all.Even if the file type is C++, the include files completion is still the same with C Mode. Only the include files in
/usr/include/
can pop up automatically. the files in/usr/include/c++/4.8.4
can not be completed in C++ program.How should I do with it ?
Best regards
The text was updated successfully, but these errors were encountered: