0

In Visual Studio Code when a highlighted quick suggestion appears, if I press SPACE, the suggestion is accepted and auto-completed.

How do I disable this feature so autocomplete only occurs on TAB and ENTER (the other default completion keybinds as of 2022.7.16)?

no_one
  • 73
  • 6

1 Answers1

0

Add the following line to your VS Code settings JSON file.

"editor.acceptSuggestionOnCommitCharacter": false

Sourced from a similiar question about Visual Studio - source answer.

no_one
  • 73
  • 6