Everytime I type out periods in a comment, vscode attempts to autocomplete with some code suggestion.
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"
}
