diff options
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/ale.vim | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugin/ale.vim b/plugin/ale.vim index 4f59f79a..9b45cd7c 100644 --- a/plugin/ale.vim +++ b/plugin/ale.vim @@ -30,9 +30,12 @@ let g:ale_buffer_sign_dummy_map = {} " User Configuration -" This list configures which linters are enabled for which languages. +" This Dictionary configures which linters are enabled for which languages. let g:ale_linters = get(g:, 'ale_linters', {}) +" This Dictionary allows users to set up filetype aliases for new filetypes. +let g:ale_linter_aliases = get(g:, 'ale_linter_aliases', {}) + " This flag can be set with a number of milliseconds for delaying the " execution of a linter when text is changed. The timeout will be set and " cleared each time text is changed, so repeated edits won't trigger the |