From dbdde67ebce4f78932a0da284b432d606ef208da Mon Sep 17 00:00:00 2001 From: Emily St Date: Mon, 18 Sep 2017 23:39:29 +0000 Subject: [PATCH] Allow overriding '-Ystop-after:parser' flag on compiler This matches behavior with 'fsc' as committed in c73673e0f33a6b00e927ff65f366ba25735ad70f last year. Allows knowledgeable users to supply additional or alternative flags to get diffferent results from the compiler. --- syntax_checkers/scala/scalac.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax_checkers/scala/scalac.vim b/syntax_checkers/scala/scalac.vim index 9eafda02..5d7776d9 100644 --- a/syntax_checkers/scala/scalac.vim +++ b/syntax_checkers/scala/scalac.vim @@ -21,7 +21,7 @@ set cpo&vim function! SyntaxCheckers_scala_scalac_GetLocList() dict call syntastic#log#deprecationWarn('scala_options', 'scala_scalac_args') - let makeprg = self.makeprgBuild({ 'args_after': '-Ystop-after:parser' }) + let makeprg = self.makeprgBuild({ 'args': '-Ystop-after:parser' }) let errorformat = \ '%E%f:%l: %trror: %m,' .