We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9afcc08 commit 0cca394Copy full SHA for 0cca394
syntax_checkers/fish/fish.vim
@@ -3,14 +3,8 @@ if exists('g:loaded_syntastic_fish_fish_checker')
3
endif
4
let g:loaded_syntastic_fish_fish_checker = 1
5
6
-function! SyntaxCheckers_fish_fish_IsAvailable()
7
- return executable('fish')
8
-endfunction
9
-
10
-function! SyntaxCheckers_fish_fish_GetLocList()
11
- let l:makeprg = syntastic#makeprg#build({'exe': 'fish',
12
- \'args': '--no-execute',
13
- \'subchecker': 'fish'})
+function! SyntaxCheckers_fish_fish_GetLocList() dict
+ let l:makeprg = self.makeprgBuild({'args': '--no-execute'})
14
return SyntasticMake({'makeprg': l:makeprg,
15
\'errorformat': fish#errorformat()})
16
endfunction
0 commit comments