Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hide snippets when showing the intellisense to get properties in VsCode

Is there any way to hide all snippets in the CTRL+SPACE list?

If I have place the cursor between two { } in a typescript file the intellisense gets all cluddered with snippets even tho I only want the properties of the object im about to create.

like image 494
midnightsyntax Avatar asked Aug 01 '16 16:08

midnightsyntax


1 Answers

Visual Studio Code does indeed give you the ability to prevent snippets from being shown in the Quick Suggestions list.

This can be done, by adding the "editor.snippetSuggestions" property to your settings file, and setting its value to "none".

Example:

{
    "editor.snippetSuggestions": "none"
}
like image 132
Brynden Bielefeld Avatar answered Sep 28 '22 02:09

Brynden Bielefeld