diff options
author | w0rp <devw0rp@gmail.com> | 2017-02-14 23:44:37 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-02-14 23:44:37 +0000 |
commit | ed370667c8f45a349ed76e4283593b13cfe68c44 (patch) | |
tree | 087941a331909403e0972bfb386901851e16ba52 /plugin/ale.vim | |
parent | c460602cbbf80c1b1b3f006ae3dd28528a80c17c (diff) | |
download | ale-ed370667c8f45a349ed76e4283593b13cfe68c44.zip |
#254 Add command history to ALEInfo
Diffstat (limited to 'plugin/ale.vim')
-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 45b0b908..7074e468 100644 --- a/plugin/ale.vim +++ b/plugin/ale.vim @@ -131,6 +131,9 @@ let g:ale_statusline_format = get(g:, 'ale_statusline_format', let g:ale_warn_about_trailing_whitespace = \ get(g:, 'ale_warn_about_trailing_whitespace', 1) +" A flag for controlling the maximum size of the command history to store. +let g:ale_max_buffer_history_size = get(g:, 'ale_max_buffer_history_size', 20) + function! s:ALEInitAuGroups() abort augroup ALERunOnTextChangedGroup autocmd! |