mikeysee
mikeysee

Reputation: 1763

How to remove snippets from intellisense?

enter image description here

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

Answers (1)

jeremyalan
jeremyalan

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

Related Questions