Getting rid of annoying log message

This commit is contained in:
Alex Yatskov 2014-12-02 12:18:15 +09:00
parent 897535d60b
commit a5f67f6213

View File

@ -161,7 +161,7 @@ endfunction
function! argwrap#unwrapContainer(range, container, arguments)
let l:text = repeat(' ', a:container.indent) . a:container.prefix . join(a:arguments, ', ') . a:container.suffix
call setline(a:range.lineStart, l:text)
exec printf('%d,%dd_', a:range.lineStart + 1, a:range.lineEnd)
exec printf('silent %d,%dd_', a:range.lineStart + 1, a:range.lineEnd)
endfunction
function! argwrap#adjustCursor()