Misc changes

This commit is contained in:
Jacob Dufault 2017-04-20 23:47:17 -07:00
parent 5ef4f55053
commit 1fcefb5262
4 changed files with 28 additions and 6 deletions

View File

@ -1,5 +1,5 @@
// Place your settings in this file to overwrite default and user settings. // Place your settings in this file to overwrite default and user settings.
{ {
"editor.lineNumbers": "on", "editor.lineNumbers": "on",
"cquery.cacheDirectory": "C:/Users/jacob/Desktop/superindex/indexer/CACHE" "cquery.cacheDirectory": "C:/Users/jacob/Desktop/superindex/indexer/foo/CACHE"
} }

19
foo/a.h
View File

@ -1,3 +1,22 @@
void foobar() {} void foobar() {}

View File

@ -1,8 +1,11 @@
#include "a.h" #include "a.h"
enum Foo {
struct Baz {
}; };
void faz() { void foo() {
foobar(); Baz b;
} }

View File

@ -1,10 +1,10 @@
// Place your settings in this file to overwrite default and user settings. // Place your settings in this file to overwrite default and user settings.
{ {
"cquery.cacheDirectory": "C:/Users/jacob/Desktop/superindex/indexer/CACHE",
"cquery.blacklist": [ "cquery.blacklist": [
// ".*libclangmm/.*" // ".*libclangmm/.*"
], ],
"cquery.whitelist": [ "cquery.whitelist": [
// ".*platform.*.cc" // ".*platform.*.cc"
], ]
"cquery.cacheDirectory": "C:/Users/jacob/Desktop/superindex/indexer/CACHE"
} }