I want to disable the [abc] suggestion on the vs-code editor I tried some solution but it doesn\'t work. Help me to disable it.
oh yes I did it!
"javascript.suggest.names": false
For me what worked was:
"editor.wordBasedSuggestions": false,
After doing all the things suggested here, I still see abc suggestions for all the entries in my snippet file, not just the ones appropriate to the language I am using.
I did manage to make that acceptable, by setting the value of Settings > Editor > SnippetSuggestions to top ( "editor.snippetSuggestions": "top"
). Like that at least the proper snippets are on top, making it easier to ignore the rest.