Merge pull request #294 from tpict/master

Add vint support for Neovim commands
This commit is contained in:
w0rp 2017-02-05 15:58:15 +00:00 committed by GitHub
commit 744d7d789f
1 changed files with 2 additions and 0 deletions

View File

@ -6,6 +6,7 @@ let g:ale_vim_vint_show_style_issues =
\ get(g:, 'ale_vim_vint_show_style_issues', 1)
let s:warning_flag = g:ale_vim_vint_show_style_issues ? '-s' : '-w'
let s:enable_neovim = has('nvim') ? ' --enable-neovim ' : ''
let s:format = '-f "{file_path}:{line_number}:{column_number}: {severity}: {description} (see {reference})"'
call ale#linter#Define('vim', {
@ -15,6 +16,7 @@ call ale#linter#Define('vim', {
\ . ' .vim vint '
\ . s:warning_flag
\ . ' --no-color '
\ . s:enable_neovim
\ . s:format,
\ 'callback': 'ale#handlers#HandleGCCFormat',
\})