mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 12:44:23 +08:00
Fix #912 - Close lists automatically when g:ale_open_list is set to 'on_save' again
This commit is contained in:
@@ -189,12 +189,19 @@ Execute(The ale_open_list='on_save' option should work):
|
||||
" The list shouldn't open yet, the event wasn't fired.
|
||||
Assert !ale#list#IsQuickfixOpen()
|
||||
|
||||
" Turn this option off, to ensure that we update lists immediately when we
|
||||
" save buffers.
|
||||
let g:ale_set_lists_synchronously = 0
|
||||
let b:ale_save_event_fired = 1
|
||||
|
||||
call ale#list#SetLists(bufnr('%'), g:loclist)
|
||||
" Now the list should have opened.
|
||||
Assert ale#list#IsQuickfixOpen()
|
||||
|
||||
call ale#list#SetLists(bufnr('%'), [])
|
||||
" The window should close again when the loclist is empty.
|
||||
Assert !ale#list#IsQuickfixOpen()
|
||||
|
||||
Execute(The window shouldn't open on save when ale_open_list=0):
|
||||
let b:ale_open_list = 0
|
||||
let b:ale_save_event_fired = 1
|
||||
|
||||
Reference in New Issue
Block a user