forked from clangd/coc-clangd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
175 lines (175 loc) · 5.21 KB
/
package.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
{
"name": "coc-clangd",
"version": "0.11.0",
"description": "clangd extension for coc.nvim",
"author": "Heyward Fann <[email protected]>",
"license": "Apache-2.0 WITH LLVM-exception",
"main": "lib/index.js",
"keywords": [
"coc.nvim"
],
"engines": {
"coc": "^0.0.80"
},
"repository": {
"type": "git",
"url": "https://github.com/clangd/coc-clangd.git"
},
"scripts": {
"clean": "rimraf lib",
"build": "node esbuild.js",
"lint": "eslint src --ext ts",
"prepare": "node esbuild.js"
},
"devDependencies": {
"@clangd/install": "^0.1.3",
"@types/node": "10.12.0",
"@types/which": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"coc.nvim": "^0.0.81-next.2",
"esbuild": "^0.12.1",
"eslint": "^7.11.0",
"rimraf": "^3.0.1",
"typescript": "^4.2.3",
"vscode-languageserver-protocol": "^3.15.3"
},
"activationEvents": [
"onLanguage:c",
"onLanguage:cpp",
"onLanguage:cuda",
"onLanguage:objc",
"onLanguage:objcpp",
"onLanguage:arduino",
"onLanguage:objective-c",
"onLanguage:objective-cpp",
"workspaceContains:**/compile_commands.json",
"workspaceContains:**/compile_flags.txt"
],
"rootPatterns": [
{
"patterns": [
"compile_commands.json",
"compile_flags.txt"
]
}
],
"contributes": {
"configuration": {
"type": "object",
"title": "coc-clangd configuration",
"properties": {
"clangd.enabled": {
"type": "boolean",
"default": true,
"description": "Enable coc-clangd extension"
},
"clangd.disableDiagnostics": {
"type": "boolean",
"default": false,
"description": "Disable diagnostics from clangd"
},
"clangd.disableCompletion": {
"type": "boolean",
"default": false,
"description": "Disable completion source from clangd"
},
"clangd.disableSnippetCompletion": {
"type": "boolean",
"default": false,
"description": "Disable completion snippet from clangd"
},
"clangd.compilationDatabasePath": {
"type": "string",
"default": "",
"description": "Specifies the directory containing the compilation database"
},
"clangd.path": {
"type": "string",
"default": "clangd",
"description": "The path to clangd executable, e.g.: /usr/bin/clangd"
},
"clangd.arguments": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "Arguments for clangd server"
},
"clangd.trace": {
"type": "string",
"description": "Names a file that clangd should log a performance trace to, in chrome trace-viewer JSON format."
},
"clangd.fallbackFlags": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Extra clang flags used to parse files when no compilation database is found."
},
"clangd.semanticHighlighting": {
"type": "boolean",
"default": false,
"description": "Enable semantic highlighting in clangd, requires jackguo380/vim-lsp-cxx-highlight to work"
},
"clangd.showDBChangedNotification": {
"type": "boolean",
"default": true,
"description": "Show notifications while DB files changed"
},
"clangd.serverCompletionRanking": {
"type": "boolean",
"default": true,
"description": "Always rank completion items on the server as you type. This produces more accurate results at the cost of higher latency than client-side filtering."
},
"clangd.checkUpdates": {
"type": "boolean",
"default": false,
"description": "Check for clangd language server updates on startup."
},
"suggest.detailMaxLength": {
"type": "number",
"description": "Max length of detail that should be shown in popup menu.",
"default": 50
},
"diagnostic.format": {
"type": "string",
"description": "Define the diagnostic format. Available parts: source, code, severity, message",
"default": "%message\n[%source:%code]"
}
}
},
"commands": [
{
"command": "clangd.switchSourceHeader",
"title": "Switch between source/header"
},
{
"command": "clangd.symbolInfo",
"title": "Resolve symbol info under the cursor"
},
{
"command": "clangd.memoryUsage",
"title": "Show memory usage"
},
{
"command": "clangd.projectConfig",
"title": "Open project configuration file"
},
{
"command": "clangd.userConfig",
"title": "Open user configuration file"
},
{
"command": "clangd.install",
"title": "Install latest clangd language server binary release"
},
{
"command": "clangd.update",
"title": "Check for updates to clangd language server"
}
]
}
}