Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 416
mikeysee Avatar asked Feb 22 '16 02:02

mikeysee


People also ask

How do I remove snippets?

To delete a snippet, simply highlight that snippet and click Delete.


1 Answers

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

like image 90
jeremyalan Avatar answered Oct 13 '22 15:10

jeremyalan