1
This is from Intellisense you can see more options here https://code.visualstudio.com/docs/editor/intellisense#_customizing-Intellisense
But basically this code will make the suggestions disappear while you type, you have to save this code on JSON
of Settings
okay
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
}
I had to add "editor.parameterHints.enabled": false, this code also worked. Thanks.
– Cristian Benites