Should be trivial, and it might even be in the help, but I can't figure out how to navigate it.
|
Use the If you’re copying blocks of text around and need to align the indent of a block in its new location, use Also, the |
|||||||||||||||||||
|
|
This answer summarises the other answers and comments of this question, and adds extra information based on the Vim documentation and the Vim wiki. For conciseness, this answer doesn't distinguish between Vi and Vim-specific commands. In the commands below, "re-indent" means "indent lines according to your indentation settings." General Commands
You can replace Also, remember that
, so indentation commands can be easily and conveniently repeated. Re-indenting complete files Another common situation is requiring indentation to be fixed throughout a source file:
You can extend this idea to multiple files:
Or multiple buffers:
In Visual Mode
In insert mode These commands apply to the current line:
Ex commands These are useful when you want to indent a specific range of lines, without moving your cursor.
Indenting using markers Another approach is via markers:
...move cursor to end location
Variables that govern indentation You can set these in your .vimrc file.
Vim has intelligent indentation based on filetype. Try adding this to your .vimrc:
References |
|||||||||||||||||
|
|
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. |
|||||
|
|
|
A big selection would be gg=G it is really fast, and everything gets indented ;-) |
|||
|
|
|
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 |
|||
|
|
Key-Presses for more visual people:
|
|||||||||||||
|
|
As well as the offered solutions, I like to do things a paragraph at a time with |
|||||
|
|
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. |
|||
|
The beauty of vim's UI is that it's consistent. Editing commands are made up of the command and a cursor move. The cursor moves are always the same:
So, in order to use vim you have to learn to move the cursor and remember a repertoire of commands like, for example, > to indent (and < to "outdent"). If, instead of typing >H, you type dH then you are deleting the same block of lines, cH for replacing it, etc. Some cursor movements fit better with specific commands. In particular, the % command is handy to indent a whole HTML or XML block. This is how vim works: one has to remember only the cursor movements and the commands, and how to mix them. |
||||
|
|
do this
and add this line
this is only for cpp file you can do this for another file type also just by modifying the filetype... |
||||
|
|
|
I like to mark text for indentation:
PS: you can use :'a,'z technique to mark a range for any operation (d,y,s///, etc) where you might use lines, numbers, or % |
|||
|
|
|
A quick way to do this using This is useful if you would prefer not to change your
|
|||
|
|
|
For me, the MacVim (Visual) solution was, select with mouse and press ">", but after putting the following lines in "~/.vimrc" since I like spaces instead of tabs:
Also it's useful to be able to call MacVim from the command-line (Terminal.app), so since I have the following helper directory "~/bin", where I place a script called "macvim":
And of course in "~/.bashrc":
Macports messes with "~/.profile" a lot, so the PATH environment variable can get quite long. |
|||
|
|
|
5 == will indent 5 lines from current cursor position. so you can type any number before == , it will indent number of lines. This is in command mode. gg=G will indent whole file from top to bottom. |
|||
|
|
