Should be trivial, and it might even be in the help, but I can't figure out how to navigate it.
Thanks in advance.
|
20
|
|
|
|
|
|
Use the > command. To indent 5 lines, 5>>. To mark a block of lines and indent it, Vjjj> to indent 3 lines (vim only). To indent a curly-braces block, put your cursor on one of the curly braces and use >%. If you're copying blocks of text around and need to align the indent of a block in its new location, use ]p instead of just p. This aligns the pasted block with the surrounding text. |
||||||||||||
|
|
|
Also try this for "C-indenting" indentation, do ":help =" for more info: ={ That will auto-indent the current code block you're in. Or just: == to auto-indent the current line. |
||
|
|
|
|
In addition to the answer already given and accepted, it is also possible to place a marker and then indent everything from the current cursor to the marker. Thus, enter |
||
|
|
|
|
As well as the offered solutions, I like to do things a paragraph at a time with |
||
|
|
|
|
A big selection would be gg=G it is really fast, and everything gets indented ;-) |
||
|
|
|
|
when you select a block and use > to indent, it indents then goes back to normal mode. I have this in my .vimrc :
It lets you indent your selection as many time as you want. |
||
|
|
|
||||
|
|
|
Key-Presses for more visual people:
|
||
|
|
|
|
do this $vi .vimrc and add this line autocmd FileType cpp setlocal expandtab shiftwidth=4 softtabstop=4 cindent this is only for cpp file you can do this for another file type also just by modifying the filetype... |
||
|
|