FooSoft/vim-argwrap

Add support for languages that requires line continuation

paulhybryant opened this issue · 1 comments

One example is vimscript

foo = ['a', 'b', 'c'] need to be formatted like this
foo = [
\ 'a'
\ 'b'
\ 'c'
\ ]

This has been implemented, check out the docs 😃