How to avoid this annoying autocomplete in Visual Studio Code

When I type import tensorflow as tf

, it automatically completes the block tf

before try/finally

when I press the enter key, which is annoying and not smart at all, how to avoid this?

enter image description here enter image description here

+3


source to share


1 answer


These are snippet suggestions. Try to install:

"editor.snippetSuggestions": "none"

      



to disable them.

0


source







All Articles