diff options
author | w0rp <devw0rp@gmail.com> | 2017-05-12 21:16:15 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-05-12 21:16:15 +0100 |
commit | 5a947933d727503482776b9459e8680b7f29324a (patch) | |
tree | 234e9605d49330410151b8a8a6db04163750967f /test/smoke_test.vader | |
parent | 2bafdb7e5a5cb96cb8263ed1b7bb79be021e4350 (diff) | |
download | ale-5a947933d727503482776b9459e8680b7f29324a.zip |
Refactor jobs into a Vim version agnostic API which can be used for other purposes
Diffstat (limited to 'test/smoke_test.vader')
-rw-r--r-- | test/smoke_test.vader | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/smoke_test.vader b/test/smoke_test.vader index 18b74cf0..30f32534 100644 --- a/test/smoke_test.vader +++ b/test/smoke_test.vader @@ -11,11 +11,12 @@ Before: \}] endfunction + " Running the command in another subshell seems to help here. call ale#linter#Define('foobar', { \ 'name': 'testlinter', \ 'callback': 'TestCallback', \ 'executable': 'echo', - \ 'command': 'echo foo bar', + \ 'command': '/bin/sh -c ''echo foo bar''', \}) After: |