diff options
author | Andrew Crites <ajcrites@gmail.com> | 2018-03-02 15:22:29 -0500 |
---|---|---|
committer | w0rp <w0rp@users.noreply.github.com> | 2018-03-02 20:22:29 +0000 |
commit | acbe527e15f1f388b8dbc9889216e9368d98e6c6 (patch) | |
tree | ad72db49a1fc7ef8c3028f2b97819ec76d24b1c2 /plugin | |
parent | 2096562899aa0994a2c6d2c30320810001d98591 (diff) | |
download | ale-acbe527e15f1f388b8dbc9889216e9368d98e6c6.zip |
Option to open lists vertically (#1381)
* Add configuration option to open lists vertically
* Add tests, clean up vertical list config
* Vertical list option cleanup
* Use is# for tests
* Order properties in documentation alphabetically
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 d75d33b0..1a473df1 100644 --- a/plugin/ale.vim +++ b/plugin/ale.vim @@ -118,6 +118,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) +" This flag dictates that quickfix windows should be opened vertically +let g:ale_list_vertical = get(g:, 'ale_list_vertical', 0) + " The window size to set for the quickfix and loclist windows call ale#Set('list_window_size', 10) |