Fixing conflicting options #5

This commit is contained in:
Alex Yatskov 2016-05-19 09:21:17 -07:00
parent 4057c955bc
commit cfe10c45a8

View File

@ -163,12 +163,15 @@ function! argwrap#wrapContainer(range, container, arguments, wrapBrace, tailComm
call setline(l:line, a:container.indent . a:container.prefix)
for l:index in range(l:argCount)
let l:text = a:container.indent . a:linePrefix . a:arguments[l:index]
if l:index < l:argCount - 1 || a:tailComma
let l:text = a:container.indent . a:linePrefix . a:arguments[l:index]
let l:last = l:index == l:argCount - 1
if !l:last || a:tailComma
let l:text .= ','
elseif !a:wrapBrace
end
if l:last && !a:wrapBrace
let l:text .= a:container.suffix
endif
end
call append(l:line, l:text)
let l:line += 1