I'm writing a lot of python code recently, and i used the tab-to-space mode in vim. I was just wondering how would i unindent in vim without leaving edit mode for example after i finished if...: block. Normally I can just type << to unindent, but it takes too many keystorkes, anyone have a better idea?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Type Ctrl-D on your keyboard, removes one tabstop at a time, works for space-replaced tabs. |
|||||||||||
|
|
Backspace will remove one level of indent at a time. |
|||