Disable autoexpansion of snippets when completing #4955
Unanswered
asmodeus812
asked this question in
Q&A
Replies: 1 comment 5 replies
-
The "languageserver": {
"clangd": {
"command": "clangd",
"disableSnippetCompletion": true,
"rootPatterns": ["compile_flags.txt", "compile_commands.json"],
"filetypes": ["c", "cc", "cpp", "c++", "objc", "objcpp"]
}
} |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
According to the docs we could do that with
However having this in my coc settings, does not work
What is the correct way to disable the expansion on functions/symbols arguments/paramters, but retain / keep the expansion of snippets.
I would like to avoid the null arguments (see below) being automatically added by coc
Beta Was this translation helpful? Give feedback.
All reactions