When I'm working with a function that has long parameters, for example:
foo_bar(foo,
bar);
The web-indent plugin automatically formats the JS files like:
foo_bar(foo,
<tab>bar;
However, what I actually want is:
foo_bar(foo,
bar);
I have already checked vim.org but couldn't find an easy solution.
Any suggestions or ideas?