When using VSCode you get a bunch of unnecessary items when you Ctrl+Space inside of a React component.
Any idea how to remove them?
When using VSCode you get a bunch of unnecessary items when you Ctrl+Space inside of a React component.
Any idea how to remove them?
It looks like this is supported now, just add the following to your VS Code settings.
{
"editor.snippetSuggestions": "none" // or "top", "bottom", "inline", etc.
}
See also this question: Hide snippets when showing the intellisense to get properties in VsCode