Fix #461 - Allow multiple loclist windows to be opened, and replace some split windows

This commit is contained in:
w0rp 2017-06-06 17:31:13 +01:00
parent e88eb6c415
commit 9dadde190e
1 changed files with 6 additions and 6 deletions

View File

@ -44,12 +44,12 @@ function! ale#list#SetLists(buffer, loclist) abort
if len(a:loclist) > 0 || g:ale_keep_list_window_open
let l:winnr = winnr()
if !ale#list#IsQuickfixOpen()
if g:ale_set_quickfix
execute 'copen ' . str2nr(ale#Var(a:buffer, 'list_window_size'))
elseif g:ale_set_loclist
execute 'lopen ' . str2nr(ale#Var(a:buffer, 'list_window_size'))
endif
if g:ale_set_quickfix
if !ale#list#IsQuickfixOpen()
execute 'copen ' . str2nr(ale#Var(a:buffer, 'list_window_size'))
endif
elseif g:ale_set_loclist
execute 'lopen ' . str2nr(ale#Var(a:buffer, 'list_window_size'))
endif
" If focus changed, restore it (jump to the last window).