-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
183 lines (183 loc) · 5.11 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
176
177
178
179
180
181
182
183
{
"name": "coc-clangd",
"version": "0.31.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": "git+https://github.com/clangd/coc-clangd.git"
},
"scripts": {
"build": "node esbuild.js",
"watch": "node esbuild.js --watch",
"format": "biome format --write src/**",
"check": "biome check src/**",
"prepare": "node esbuild.js"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@clangd/install": "^0.1.18",
"@types/node": "16",
"coc.nvim": "^0.0.83-next.18",
"esbuild": "^0.24.0",
"fs-jetpack": "^5.1.0",
"typescript": "^5.5.3"
},
"activationEvents": [
"onLanguage:c",
"onLanguage:cpp",
"onLanguage:cuda",
"onLanguage:objc",
"onLanguage:objcpp",
"onLanguage:opencl",
"onLanguage:objective-c",
"onLanguage:objective-cpp"
],
"rootPatterns": [
{
"patterns": [
".clangd",
".clang-tidy",
".clang-format",
"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.disableProgressNotifications": {
"type": "boolean",
"default": false,
"description": "Disable indexing progress notifications from clangd"
},
"clangd.disableFileStatus": {
"type": "boolean",
"default": false,
"description": "Disable fileStatus from clangd"
},
"clangd.compilationDatabasePath": {
"type": "string",
"default": "",
"description": "Specifies the directory containing the compilation database"
},
"clangd.compilationDatabaseCandidates": {
"type": "array",
"default": [],
"description": "Specifies the directories that may contain a compilation database"
},
"clangd.path": {
"type": "string",
"default": "",
"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.file": {
"type": "string",
"default": "",
"description": "Names a file that clangd should log a performance trace to, in chrome trace-viewer JSON format, can be loaded in `chrome://tracing`."
},
"clangd.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Trace requests to clangd"
},
"clangd.fallbackFlags": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Extra clang flags used to parse files when no compilation database is found."
},
"clangd.showDBChangedNotification": {
"type": "boolean",
"default": true,
"description": "Show notifications while DB files changed"
},
"clangd.checkUpdates": {
"type": "boolean",
"default": false,
"description": "Check for clangd language server updates on startup."
}
}
},
"commands": [
{
"command": "clangd.ast",
"title": "Show AST"
},
{
"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"
}
]
}
}