[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Identing in Vim
- From: beo wulf <beowulf@...>
- Date: Sat, 8 Jan 2011 14:27:16 -0800
I'm using the default lua.vim, ... and indenting seems to work for
everything (function/end, do/end, ...) except for multiline function
arguments. For example, lua.vim wants to indent
foo(
a,
b,
c);
whereas, I would prefer the identing to be:
foo(
a,
b,
c);
Anyone else have this problem? Basicaly, when there's a function call,
I'd prefer the args to be indented), whereas lua.vim justifies it to
the left with the "f" in function.
Thanks!