Jacob Dufault
Jacob Dufault
Ack, looks like [procmon](https://docs.microsoft.com/en-us/sysinternals/downloads/procmon) will be useful for figuring out why.
Sure, this sounds reasonable.
This function handles loading from `.cquery`: https://github.com/cquery-project/cquery/blob/1fa36852b5dbe0d8e8207b1362a150c722a077c7/src/project.cc#L456-L514
For linux, what about reading `$XDG_CONFIG_HOME` and defaulting to `$HOME/.cquery` if not present? A single global config SGTM. Adding a function `GetGlobalConfigDir` to platform.h is one potential approach.
I believe your project configuration is not correct, likely due to a missing include directory; try using `cquery --check ` until you find the missing include directory. Can you include...
Does `clang -working-directory=/path/to/build/applications/example_with_ext_dep -DOPENCV_TRAITS_ENABLE_DEPRECATED -isystem /path/to/3rdparty/eigen3 -isystem /usr/local/include -isystem /usr/local/include/opencv -Wall -Wpedantic -Wextra -g -std=gnu++14 /path/to/applications/example_with_ext_dep/src/main.cpp -resource-dir= -Wno-unknown-warning-option -fparse-all-comments -isystem/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0 -isystem/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/x86_64-linux-gnu/c++/5.4.0 -isystem/usr/bin/../lib/gcc/x86_64-linux-gnu/5.4.0/../../../../include/c++/5.4.0/backward -isystem/usr/local/include -isystem/usr/lib/llvm-3.8/bin/../lib/clang/3.8.0/include -isystem/usr/include/x86_64-linux-gnu -isystem/usr/include` run without errors? It...
This means the file is not indexed, does any .cc file in your project include it?
I didn't think anyone was using it and since it is not in LSP spec, I opted to remove it. Happy to re-add if you're actively using it though.
Thanks! This seems like a nice improvement, what about we just make this standard behavior and add an option to disable the automatic filtering in settings?
I'll try to test this out and figure out the right behavior as well.