vim-argwrap/sample.txt

34 lines
213 B
Plaintext
Raw Normal View History

2014-12-01 09:21:05 +00:00
a = Foo(a, [b, z], "hello, world", c)
2014-11-28 07:37:23 +00:00
Foo(
a,
b
)
Foo(
a,
[b, c],
d
)
Foo(
2014-12-01 09:53:00 +00:00
a
[b, "c"]
2014-11-28 07:37:23 +00:00
d
)
Foo(
a,
[b, c],
d
)
Foo(
a,
[
b,
c
],
d
)