diff options
author | w0rp <devw0rp@gmail.com> | 2017-06-01 10:39:21 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-06-01 10:39:21 +0100 |
commit | d5ae9b50eacc8560ab95dfc3105ce3e40696e1ff (patch) | |
tree | ac7befc353f3695b24cce1f0c966a2f65281c28f /plugin | |
parent | 81f27a99c882fde3dfa004e6494efcd27b5d5e96 (diff) | |
download | ale-d5ae9b50eacc8560ab95dfc3105ce3e40696e1ff.zip |
Fix #499 Set an explicit height for the quickfix list, and make the height configurable
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/ale.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugin/ale.vim b/plugin/ale.vim index 85930f3d..25622318 100644 --- a/plugin/ale.vim +++ b/plugin/ale.vim @@ -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')) |