vim-argwrap/sample.txt

38 lines
219 B
Plaintext
Raw Normal View History

2014-12-01 03:31:53 +00:00
Foo(a, [b, z], c)
2014-11-28 07:37:23 +00:00
Foo(
a,
b
)
Foo(
a,
[b, c],
d
)
Foo(
a,
[
b,
2014-12-01 03:31:53 +00:00
"c"
2014-11-28 07:37:23 +00:00
],
d
)
)
Foo(
a,
[b, c],
d
)
Foo(
a,
[
b,
c
],
d
)