Fix the empty echo fixer test on Windows

This commit is contained in:
w0rp 2017-11-22 12:41:16 +00:00
parent 074a011b08
commit e7865d2f94
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ Before:
" echo will output a single blank line, and we should ingore it.
function! IgnoredEmptyOutput(buffer, output)
return {'command': 'echo'}
return {'command': has('win32') ? 'echo(' : 'echo'}
endfunction
function! SetUpLinters()