Get more of the tests to pass on Windows

This commit is contained in:
w0rp
2017-10-23 01:26:31 +01:00
parent c4579e1809
commit 231398dddc
11 changed files with 105 additions and 48 deletions

View File

@@ -10,8 +10,8 @@ Before:
call ale#linter#Define('foobar', {
\ 'name': 'testlinter',
\ 'callback': 'TestCallback',
\ 'executable': 'cat',
\ 'command': 'cat %t',
\ 'executable': has('win32') ? 'cmd' : 'cat',
\ 'command': has('win32') ? 'type %t' : 'cat %t',
\})
After: