-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoc-config.json
50 lines (50 loc) · 1.25 KB
/
coc-config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"languageserver": {
"ccls": {
"command": "ccls",
"filetypes": ["c", "cpp", "cuda", "objc", "objcpp"],
"rootPatterns": [".ccls-root", "compile_commands.json"],
"initializationOptions": {
"cache": {
"directory": ".ccls-cache"
},
"highlight": { "lsRanges": true },
"client": {
"snippetSupport": true
}
},
"disableDiagnostics": true,
"disableCompletion": true,
}
},
"diagnostic.checkCurrentLine": true,
"diagnostic.virtualText": true,
"diagnostic.virtualTextCurrentLineOnly": false,
"suggest.completionItemKindLabels": {
"function": "FUNCTION",
"method": "METHOD",
"variable": "VARIABLE",
"constant": "CONSTANT",
"struct": "STRUCT",
"class": "CLASS",
"interface": "INTERFACE",
"text": "TEXT",
"enum": "ENUM",
"enumMember": "ENUMMEMBER",
"module": "MODULE",
"color": "COLOR",
"property": "PROPERTY",
"field": "FIELD",
"unit": "UNIT",
"file": "FILE",
"value": "VALUE",
"event": "EVENT",
"folder": "FOLDER",
"keyword": "KEYWORD",
"snippet": "SNIPPET",
"operator": "OPERATOR",
"reference": "REFERENCE",
"typeParameter": "TYPEPARAMETER",
"default": "DEFAULT"
}
}