DEV Community

py.talk()
py.talk()

Posted on

How to set correctly snipets? [solved]

Hi, I have a qestion about setting up snipets in VSCode.

First of all I use standard Python extention by MS.
There are several points when just after pressing space or enter.

I don't like situations when I get:

import pandas as import import pdb; pdb.set_trace()

insted

import pandas as import import pd

Ist there possibility to turn off some snippets or choose acceptance button?

Thanks in advance

[edit]
I've found solution. Just add following line to your settings



"editor.acceptSuggestionOnEnter": "off"





Ok. I think I've found solution. Just add following line do your settings

"editor.acceptSuggestionOnEnter": "off"

Top comments (0)