Skip to content

Commit efed015

Browse files
committed
Merge pull request neomake#308 from sbdchd/vint
added neovim flag for vim's vint maker
2 parents c725d11 + 063e74f commit efed015

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

autoload/neomake/makers/ft/vim.vim

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ function! neomake#makers#ft#vim#EnabledMakers() abort
55
endfunction
66

77
function! neomake#makers#ft#vim#vint() abort
8+
if has('nvim')
9+
return {
10+
\ 'args': ['--style-problem', '--enable-neovim'],
11+
\ 'errorformat':
12+
\ '%f:%l:%c: %m,'
13+
\ }
14+
endif
15+
816
return {
917
\ 'args': ['--style-problem'],
1018
\ 'errorformat':

0 commit comments

Comments
 (0)