6c240beb01
For example in VimL with the following declaration: autocmd FileType vim let b:argwrap_line_prefix = '\ ' The following line will be properly wrapped: let t = {'one': 'whatever', 'two': 'whatever'} Into: let t = { \ 'one': 'whatever', \ 'two': 'whatever', \ } But when trying to unwrap it will do: let t = {'one': 'whatever', 'two': 'whatever', \} This is caused by the "trim" done for each "extracted" piece of text, which result in having '\' instead of '\ ' for the last line. |
||
---|---|---|
.. | ||
argwrap.vim |