1
Fork 0

Merge pull request #18 from jeetsukumaran/master

Seamless Toggling of Wrapped/Unwrapped States
This commit is contained in:
Alex Yatskov 2018-05-26 09:49:49 -07:00 committed by GitHub
commit f0f360e86a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -257,8 +257,10 @@ function! argwrap#toggle()
let l:container = argwrap#extractContainer(l:range)
if l:range.lineStart == l:range.lineEnd
call argwrap#wrapContainer(l:range, l:container, l:arguments, l:wrapBrace, l:tailComma, l:tailCommaBraces, l:tailIndentBraces, l:linePrefix, l:commaFirst, l:commaFirstIndent)
let l:cursor[1] = l:range.lineStart + 1
else
call argwrap#unwrapContainer(l:range, l:container, l:arguments, l:padded)
let l:cursor[1] = l:range.lineStart
endif
call setpos('.', l:cursor)