diff options
author | Andrew Crites <acrites@mobiquityinc.com> | 2019-03-16 21:39:11 -0400 |
---|---|---|
committer | Andrew Crites <acrites@mobiquityinc.com> | 2019-03-16 21:39:11 -0400 |
commit | a3a052b55a484a67c613f2a12dabdf85dc47bf8a (patch) | |
tree | ed2f46a13b5364460239730db1ea672d72d6224e /autoload | |
parent | 80ef7ea2d0b22f0d8de7387a3d5bf6e9e5b72e9d (diff) | |
download | ale-a3a052b55a484a67c613f2a12dabdf85dc47bf8a.zip |
Fix #2368 - Open vertical list to the right
This was normal behavior before, and it also stops ale from stealing focus.
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/list.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/list.vim b/autoload/ale/list.vim index 3417575c..63d97f35 100644 --- a/autoload/ale/list.vim +++ b/autoload/ale/list.vim @@ -115,7 +115,7 @@ function! s:SetListsImpl(timer_id, buffer, loclist) abort let l:open_type = '' if ale#Var(a:buffer, 'list_vertical') == 1 - let l:open_type = 'vert ' + let l:open_type = 'vert rightbelow ' endif if g:ale_set_quickfix |