added missing visual reselection after quick/location list update (#788)
Reset visual selection after opening loclist or quickfix windows
This commit is contained in:
parent
2c4700ab7f
commit
c18451fba9
1 changed files with 15 additions and 0 deletions
|
@ -39,6 +39,14 @@ function! ale#list#SetLists(buffer, loclist) abort
|
|||
if (g:ale_open_list && !empty(a:loclist)) || g:ale_keep_list_window_open
|
||||
let l:winnr = winnr()
|
||||
|
||||
let l:reset_visual_selection = 0
|
||||
let l:reset_character_selection = 0
|
||||
if mode() ==? 'v' || mode() ==# "\<c-v>"
|
||||
let l:reset_visual_selection = 1
|
||||
elseif mode() ==? 's' || mode() ==# "\<c-s>"
|
||||
let l:reset_character_selection = 1
|
||||
endif
|
||||
|
||||
if g:ale_set_quickfix
|
||||
if !ale#list#IsQuickfixOpen()
|
||||
execute 'copen ' . str2nr(ale#Var(a:buffer, 'list_window_size'))
|
||||
|
@ -51,6 +59,13 @@ function! ale#list#SetLists(buffer, loclist) abort
|
|||
if l:winnr !=# winnr()
|
||||
wincmd p
|
||||
endif
|
||||
|
||||
if l:reset_visual_selection || l:reset_character_selection
|
||||
normal! gv
|
||||
if l:reset_character_selection
|
||||
normal! "\<c-g>"
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endfunction
|
||||
|
||||
|
|
Reference in a new issue