81c73da3b9
A new function is added here which will later be modified for public use in linter and fixer callbacks. All linting and fixing now goes through this new function, to prove that it works in all cases.
16 lines
318 B
Text
16 lines
318 B
Text
Before:
|
|
let g:ale_buffer_info = {}
|
|
|
|
After:
|
|
call ale#engine#Cleanup(bufnr(''))
|
|
|
|
let g:ale_buffer_info = {}
|
|
|
|
Given unite (A Unite.vim file):
|
|
anything
|
|
|
|
Execute(Running ALE on a blacklisted file shouldn't change anything):
|
|
call ale#Queue(0)
|
|
call ale#test#WaitForJobs(2000)
|
|
|
|
AssertEqual {}, g:ale_buffer_info
|