#2132 Change (buffer, lines) fixer functions to (buffer, done, lines)

This commit is contained in:
w0rp
2018-12-18 11:13:28 +00:00
parent 0e3778e335
commit f1ed654ca5
9 changed files with 36 additions and 32 deletions

View File

@@ -23,7 +23,7 @@ Before:
return [{'lnum': 1, 'col': 1, 'text': 'xxx'}]
endfunction
function AddLine(buffer, lines) abort
function AddLine(buffer, done, lines) abort
return a:lines + ['x']
endfunction