Jacob Dufault

Results 74 comments of Jacob Dufault

The init changes and propagating the set of folders to all handlers sound good to me. For the cache changes, I think modifying GetCachePath to resolve the correct cache directory...

If you edit your compile_commands.json folder to have `clang` instead of `g++`, does that fix the issue? I wonder if using `g++` as the compiler driver when invoking libclang is...

So long as the library is relatively light-weight and self contained I'll most likely be fine with adding it. Yea, include completion uses FilterAndSortCompletionResponse.

From the log file, cquery is crashing very soon after startup. Likely you'll need to open a debugger on cquery and try to determine why. I'd recommend compiling with the...

Does cquery/asan show any errors when you run using vim? Pressing ctrl+d when running cquery directly will cause cquery to exit; it probably shouldn't do so via a crash, but...

cquery currently always indexes files that are opened in the editor. The blacklist is meant for maintaining performance on large projects, when not everything can be indexed.

Yes, PRs for this are welcome (including a config option). I haven't played with the blacklists in a while and there have been some changes in those files; I would...

You should be able to add a config option in config.h[1], and then handle that config in ShouldIgnoreFileForIndexing[2] 1: https://github.com/cquery-project/cquery/blob/master/src/config.h 2: https://github.com/cquery-project/cquery/blob/master/src/message_handler.cc#L285-L287