One utterly annoying thing when you begin to use VSCode is the disturbance created by hover/pop-ups that barely let you type code.
You can disable them by adding this to your settings by
goint to View->Command Palette and searching for Preferences: Open User Settings (JSON).
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
},
"editor.hover.enabled": false,
Should it be false or "off". Both terms are found in the file, I could not make
More information here IntelliSense Documentation.