I may copy some code from other file, the format is mess, like
fun()
{
for(...)
{
for(...)
{
if(...)
{
}
}
}
}
Is there any possible way to auto format it in the vim?
Best Regards,
|
I may copy some code from other file, the format is mess, like
Is there any possible way to auto format it in the vim? Best Regards, |
||||
|
|
|
Try the following keystrokes:
Explanation: |
|||||||||||||||||||||
|
|
I like to use the program Artistic Style. According to their website:
It runs in Window, Linux and Mac. It will do things like indenting, replacing tabs with spaces or vice-versa, putting spaces around operations however you like (converting if(x<2) to if ( x<2 ) if that's how you like it), putting braces on the same line as function definitions, or moving them to the line below, etc. All the options are controlled by command line parameters. In order to use it in vim, just set the formatprg option to it, and then use the gq command. So, for example, I have in my .vimrc:
so that whenever I open a .cpp file, formatprg is set with the options I like. Then, I can type gg to go to the top of the file, and gqG to format the entire file according to my standards. If I only need to reformat a single function, I can go to the top of the function, then type gq][ and it will reformat just that function. The options I have for astyle, -T4pb, are just my preferences. You can look through their docs, and change the options to have it format the code however you like. Here's a demo. Before astyle:
After astyle (gggqG):
Hope that helps. |
|||
|
The OP asked for auto-formatting, but accepted an answer that does auto-indenting only. Here is the difference:
|
|||||||||||||
|
|
The builtin command for properly indenting the code has already been mentioned (
|
|||
|
|
The plugin vim-autoformat let's you format your buffer with only one button press: https://github.com/Chiel92/vim-autoformat. FYI, it uses external format programs for that, with a fallback to vim's indentation functionality. |
||||
|
|