Search code examples
autocompletevisual-studio-code

VS Code Autocomplete Doesn't show after using it


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


Solution

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

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

    enter image description here