diff options
author | w0rp <devw0rp@gmail.com> | 2017-02-16 23:18:57 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-02-16 23:18:57 +0000 |
commit | eac0a41ae1aba77e1d017833425fa8132130df13 (patch) | |
tree | 1bd9b6f30a43b3066236937df5e88341559fae33 /plugin | |
parent | 843370b96f9a92a2298ed7985a8f620784fc9421 (diff) | |
download | ale-eac0a41ae1aba77e1d017833425fa8132130df13.zip |
#254 Add an option for logging the output of commands
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 321bff89..fd598d4c 100644 --- a/plugin/ale.vim +++ b/plugin/ale.vim @@ -137,6 +137,9 @@ let g:ale_max_buffer_history_size = get(g:, 'ale_max_buffer_history_size', 20) " A flag for enabling or disabling the command history. let g:ale_history_enabled = get(g:, 'ale_history_enabled', 1) +" A flag for storing the full output of commands in the history. +let g:ale_history_log_output = get(g:, 'ale_history_log_output', 0) + function! s:ALEInitAuGroups() abort augroup ALERunOnTextChangedGroup autocmd! |