I am a fresh python programmer. I started using VS Code because of its built-in terminal. (Before that I was using IDLE as an editor.)
My problem is, when I writing the code below in IDLE, all I need to do is to press enter to indent the new line to align with the previous variable.
someFunction(longVariable,
longString,
longWhatever)
In VS Code, it does this when I press enter:
someFunction(longVariable,
longString,
longWhatever)
Funny thing is when I align the "longString" by myself, It goes to the exact point where I want it to be as I press enter after comma. Like this:
someFunction(longVariable,
longString,
longWhatever)
How can I make it behave like IDLE? I use it a lot.