mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-23 08:05:07 +00:00
d3bd31604e
- Hide declaration from list of refs on types and variables (so now they will show as '0 refs') - Let the user hide code lens on parameter and function-local variables
16 lines
252 B
C++
16 lines
252 B
C++
extern int global;
|
|
/*
|
|
OUTPUT:
|
|
{
|
|
"vars": [{
|
|
"id": 0,
|
|
"usr": "c:@global",
|
|
"short_name": "global",
|
|
"detailed_name": "int global",
|
|
"declaration": "1:12-1:18",
|
|
"is_local": false,
|
|
"uses": ["1:12-1:18"]
|
|
}]
|
|
}
|
|
*/
|