diff options
author | w0rp <devw0rp@gmail.com> | 2018-05-26 11:41:52 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2018-05-26 11:41:52 +0100 |
commit | 6fce8ddc5ab5228afacc4c77ade1912fd3a7fe93 (patch) | |
tree | 8b9d5a237bc544d3ad49491cef9557ba36b85576 /autoload | |
parent | b67c9a83b2545d4b67a1c60c2048dee6d6eebc12 (diff) | |
download | ale-6fce8ddc5ab5228afacc4c77ade1912fd3a7fe93.zip |
#1600 Alias vimwiki to markdown
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/linter.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/autoload/ale/linter.vim b/autoload/ale/linter.vim index 1e0ec304..c791ba46 100644 --- a/autoload/ale/linter.vim +++ b/autoload/ale/linter.vim @@ -8,11 +8,14 @@ let s:linters = {} " Default filetype aliases. " The user defined aliases will be merged with this Dictionary. +" +" NOTE: Update the g:ale_linter_aliases documentation when modifying this. let s:default_ale_linter_aliases = { \ 'Dockerfile': 'dockerfile', \ 'csh': 'sh', \ 'plaintex': 'tex', \ 'systemverilog': 'verilog', +\ 'vimwiki': 'markdown', \ 'zsh': 'sh', \} |