Hi,
Is there an easy way to change the indentation of parentences in C code when they are split across multiple lines?
Example on how it is currently
void thisIsAVeryLongFunctionWithManyArgs(int *foo,
          int bar,
          int baz);

I would like it to be    (args aligned vertically):
void thisIsAVeryLongFunctionWithManyArgs(int *foo,
int bar, int baz);

Is this possible?
--
Kim Schulz

--
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

Reply via email to