Turn off snippet jump points #470
-
is there a way to turn off jump points for snippets? (i.e. no need to use Especially in the case of methods and functions that are not snippets, it almost feels like extra work in case of functions that really just take one argument. Apologies if I missed a config option for this |
Beta Was this translation helpful? Give feedback.
Answered by
telemachus
Dec 19, 2024
Replies: 1 comment 4 replies
-
maybe you need: capabilities.textDocument.completion.completionItem.snippetSupport = false set it for your lspserver capabilities |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This may or may not help, but I had the same problem, and it turns out that not every language server handles turning off snippets in the same way. For the Lua language server, for example, this works for me (as opposed to the standard that Parsifa1 mentions above).