VSCode: how to disable all suggestions/autocomplete for text in a comment

Viewed 17

Everytime I type out periods in a comment, vscode attempts to autocomplete with some code suggestion.

undesirable autocomplete

As a result, I always have to type out some extra keys (eg esc) before pressing enter to complete my line, so that vscode doesn't mistakingly add some irrelevant and undesired auto-completion.

How do I disable all suggestions, snippets, autocomplete, intellisense, etc.. for comments in vscode?

I've tried many different settings for suggest and snippet, I still cannot disable them.

The oft-quoted setting is editor.quickSuggestions.comments, but this has not worked for me:

"editor.quickSuggestions": {
  "other": "on",
  "comments": "off",
  "strings": "off"
}
0 Answers
Related