I’ve try to using this config to disable the clangd’s snippets support but seems don’t have any effects.
"clients": {
"clangd": {
"enabled": true,
"command": [
"clangd"
],
"selector": "source.c | source.c++ | source.objc | source.objc++",
"auto_complete_selector": "punctuation.accessor | (meta.preprocessor.include string - punctuation.definition.string.end)",
"disabled_capabilities": {
"hoverProvider": false,
"snippetsSupport": false,
}
},
},