We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d73725 commit c3b6662Copy full SHA for c3b6662
src/cm/lsp/serverRegistry.js
@@ -314,6 +314,28 @@ function registerBuiltinServers() {
314
},
315
enabled: false,
316
317
+ {
318
+ id: "clangd",
319
+ label: "C / C++ (clangd)",
320
+ languages: ["c", "cpp"],
321
+ transport: {
322
+ kind: "websocket",
323
+ url: "ws://127.0.0.1:2094",
324
+ },
325
+ launcher: {
326
+ bridge: {
327
+ kind: "axs",
328
+ port: 2094,
329
+ command: "clangd",
330
331
+ checkCommand: "which clangd",
332
+ install: {
333
+ command: "apk add --no-cache clang-extra-tools",
334
+ prompt: "clangd is not installed. Install it now?",
335
336
337
+ enabled: false,
338
339
{
340
id: "html",
341
label: "HTML",
0 commit comments