Duplicate:
Sometimes I want to indent a block of C code in Vim. I usually ended up tabbing it line by line.
What is a better/faster way?
|
|
Duplicate:Sometimes I want to indent a block of C code in Vim. I usually ended up tabbing it line by line. What is a better/faster way? |
||||||
|
closed as exact duplicate by Brian, Kent Fredric, Outlaw Programmer, Alex Fort, Dana Mar 11 at 17:42 |
|
|
I'm suprised no one came up with =% yet.
All code within this block will be correctly indented. |
||||||||||
|
|
|
Enter visual mode, select to the next matching bracket, indent:
|
||
|
|
|
|
Use '>' to tab a block |
||
|
|
|
|
Try :set cindent This will turn on C indenting magic in vim. So as soon as you open a brace, it will automatically tab until you close the brace. |
||
|
|
|
|
While insert: C-d, C-t In any of this modes use '.' to indent further. |
||
|
|
|
|
If you have unindented code that looks like this...
...place your cursor on "line 1" in command mode and type |
||
|
|
|
|
I think this will do it without any indent switches being set.
should add a tab space at beginning of line between the line number range you provide unindent with:
|
||
|
|
|
|
In addition to what skinp said, if you have:
and for whatever reason wish it to look like this (i.e. you want everything indented 4 spaces* from where they were previously, rather than indenting 'correctly' according to the cindent rules):
anywhere within the block, do viB> (visualselection innerBlock indent)**
Also, va}, va), etc. select the {}, (), etc in addition to what's contained within the block. |
|||
|
|