Add support for temporary filename substitution, for replacing stdin_wrapper

This commit is contained in:
w0rp
2017-02-11 18:14:18 +00:00
parent 88192e8662
commit 03ab963d1a
4 changed files with 176 additions and 17 deletions

View File

@@ -0,0 +1,33 @@
Before:
let g:output = []
function! TestCallback(buffer, output)
let g:output = a:output
return []
endfunction
call ale#linter#Define('foobar', {
\ 'name': 'testlinter',
\ 'callback': 'TestCallback',
\ 'executable': 'cat',
\ 'command': 'cat %t',
\})
After:
unlet! g:output
delfunction TestCallback
call ale#linter#Reset()
Given foobar (Some imaginary filetype):
foo
bar
baz
Execute(ALE should be able to read the %t file):
AssertEqual 'foobar', &filetype
call ale#Lint()
call ale#engine#WaitForJobs(2000)
AssertEqual ['foo', 'bar', 'baz'], g:output