Auto Indention paste with python code in Visual Studio 2019

  • Thread starter Thread starter PavlosTi
  • Start date Start date
P

PavlosTi

Guest
Hi all,

I am new to visual studio with python and i try to copy paste this:

x = 1

y = 2



on this:

if True:

a = 8


and that's how it's pasting:

if True:

a = 8

x = 1

y = 2 #wrong


how can i get this:

if True:

a = 8

x = 1

y = 2

Continue reading...
 
Back
Top