Fix #499 Set an explicit height for the quickfix list, and make the height configurable

This commit is contained in:
w0rp 2017-06-01 10:39:21 +01:00
parent 81f27a99c8
commit d5ae9b50ea
4 changed files with 82 additions and 9 deletions

View file

@ -106,6 +106,9 @@ let g:ale_open_list = get(g:, 'ale_open_list', 0)
" This flag dictates if ale keeps open loclist even if there is no error in loclist
let g:ale_keep_list_window_open = get(g:, 'ale_keep_list_window_open', 0)
" The window size to set for the quickfix and loclist windows
call ale#Set('list_window_size', 10)
" This flag can be set to 0 to disable setting signs.
" This is enabled by default only if the 'signs' feature exists.
let g:ale_set_signs = get(g:, 'ale_set_signs', has('signs'))