When coding in Matlab, I had the ability to intelligently indent my code using the Ctrl+ shortcut i. Is there a similar option for Pythonusing Notepad++?
In particular, I am looking for a solution to the following problem:
I want a block
line 1
line 2
line 3
to convert to
line 1
line 2
line 3
On a side note, I found this surprisingly simple with the SE editor (keyboard shortcut: Ctrl+ k). I want this feature to be available for other languages ββas well (in my experience, a good indentation didn't kill anyone, regardless of language).
source
share