visual studio code - Hide snippets when showing the intellisense to get properties in VsCode -


is there way hide snippets in ctrl+space list?

if have place cursor between 2 { } in typescript file intellisense gets cluddered snippets tho want properties of object im create.

visual studio code indeed give ability prevent snippets being shown in quick suggestions list.

this can done, adding "editor.snippetsuggestions" property settings file, , setting value "none".

example:

{     "editor.snippetsuggestions": "none" } 

Comments