Add --nowrap to ispc options

This commit is contained in:
Martino Pilia
2018-11-21 10:40:07 +01:00
parent 9e8f2b0840
commit 66212966dd
3 changed files with 22 additions and 300 deletions

View File

@@ -6,15 +6,15 @@ After:
Execute(The executable should be configurable):
AssertLinter 'ispc',
\ ale#Escape('ispc') . ' %s'
\ ale#Escape('ispc') . ' --nowrap %s'
let b:ale_ispc_ispc_executable = 'foo'
AssertLinter 'foo',
\ ale#Escape('foo') . ' %s'
\ ale#Escape('foo') . ' --nowrap %s'
Execute(The options should be configurable):
let g:ale_ispc_ispc_options = '--foo'
AssertLinter 'ispc',
\ ale#Escape('ispc') . ' --foo' . ' %s'
\ ale#Escape('ispc') . ' --nowrap --foo' . ' %s'