VS Code Autocomplete Doesn't show after using it

Viewed 249

it's a simple problem that has been bothering me for a long time, when I use autocomplete, the text I write after it becomes highlighted and suggestions don't show up anymore, does anyone know how to disable it?

example

it goes back to normal after pressing ESC

Video Example

1 Answers

The Solution is to go to VS Code Settings and disable following setting:

"editor.suggest.snippetsPreventQuickSuggestions": false // enables suggestions

enter image description here

Related