You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that method completion fail to show for STL's variable, however it works when in /tmp. Methods for struct and class and all other type of completions I can think of work everywhere though.
For example the following:
#include <vector>
using namespace std;
int main(void)
{
vector<int> vec;
vec.
}
Expected
Completion of methods for vector pops out. However there's none when current working directory is folders like ~ or ~/anynamesitried; but when pwd is /tmp it works as expected. (I noticed this occasionally)
The file structure for clang's include path seems to be changed if I remember correctly. Now it looks like:
λ /u/i/clang ls
Analysis AST Basic Config Edit Frontend Index Parse Sema StaticAnalyzer
ARCMigrate ASTMatchers CodeGen Driver Format FrontendTool Lex Rewrite Serialization Tooling
which is different from what is show in README.md, the path contains those files is /usr/lib/clang/4.0.1/include, I tried this path for clang_header but its the same.
There's no path looks like something/clang/<version> which also contains those header files in my system. Can this possibly the reason for this strange behavior? I have no clue why the above happens.
Feel free to ask if you need any further information :)
The text was updated successfully, but these errors were encountered:
Problems summary
I noticed that method completion fail to show for STL's variable, however it works when in /tmp. Methods for struct and class and all other type of completions I can think of work everywhere though.
For example the following:
Expected
Completion of methods for vector pops out. However there's none when current working directory is folders like
~
or~/anynamesitried
; but when pwd is /tmp it works as expected. (I noticed this occasionally)Environment Information
NVIM v0.2.1-824-g5566f3000
Build type: Release
Provide a minimal init.vim with less than 50 lines and not plugin manager (Required!)
The reproduce ways from neovim starting (Required!)
init.vim in ~/test
cd ~/test
nvim -u init.vim asdf.cpp # above contents
cd /tmp
nvim -u ~/test/init.vim ~/test/asdf.cpp
Generate a logfile if appropriate
when in /tmp: http://lpaste.net/358100
when not in /tmp: http://lpaste.net/358101
extra information
The file structure for clang's include path seems to be changed if I remember correctly. Now it looks like:
which is different from what is show in README.md, the path contains those files is
/usr/lib/clang/4.0.1/include
, I tried this path for clang_header but its the same.There's no path looks like
something/clang/<version>
which also contains those header files in my system. Can this possibly the reason for this strange behavior? I have no clue why the above happens.Feel free to ask if you need any further information :)
The text was updated successfully, but these errors were encountered: