Reputation: 1763
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?
Upvotes: 9
Views: 1996
Reputation: 4786
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
Upvotes: 10