Add ale_fix_on_save and ale_fixers to debug output (#731)

* Add ale_fix_on_save and ale_fixers to debug output

* Fix test by adding new ale-fix vars
This commit is contained in:
Gregory Einfrank 2017-07-06 01:27:09 -07:00 committed by w0rp
parent 871ce1c8f5
commit af02fb5183
2 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,8 @@ let s:global_variable_list = [
\ 'ale_echo_msg_format',
\ 'ale_echo_msg_warning_str',
\ 'ale_enabled',
\ 'ale_fix_on_save',
\ 'ale_fixers',
\ 'ale_keep_list_window_open',
\ 'ale_lint_delay',
\ 'ale_lint_on_enter',

View File

@ -19,6 +19,8 @@ Before:
\ 'let g:ale_echo_msg_format = ''%s''',
\ 'let g:ale_echo_msg_warning_str = ''Warning''',
\ 'let g:ale_enabled = 1',
\ 'let g:ale_fix_on_save = 0',
\ 'let g:ale_fixers = {}',
\ 'let g:ale_keep_list_window_open = 0',
\ 'let g:ale_lint_delay = 200',
\ 'let g:ale_lint_on_enter = 1',