aboutsummaryrefslogtreecommitdiff
path: root/vim/compiler/bash.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-08-21 14:14:41 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-08-21 14:14:41 +1200
commit8802414345b8f6656f6455431b8a56aa40db0ee0 (patch)
tree748105f13738851ba659eb265dc219304d2b5ffd /vim/compiler/bash.vim
parentMerge branch 'release/v1.55.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-74bf481454fc0186409e3db44685df87986ec59c.tar.gz (sig)
dotfiles-74bf481454fc0186409e3db44685df87986ec59c.zip
Merge branch 'release/v1.56.0'v1.56.0
* release/v1.56.0: Bump VERSION Don't clear away g:loaded_gzip Add option terminators or equivs to :compilers Revert "Let's try leaving netrw on again for a ...
Diffstat (limited to 'vim/compiler/bash.vim')
-rw-r--r--vim/compiler/bash.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/vim/compiler/bash.vim b/vim/compiler/bash.vim
index 70997f92..832e9120 100644
--- a/vim/compiler/bash.vim
+++ b/vim/compiler/bash.vim
@@ -10,8 +10,8 @@ endif
" 7.4.191 is the earliest version with the :S file name modifier, which we
" really should use if we can
if v:version >= 704 || v:version == 704 && has('patch191')
- CompilerSet makeprg=bash\ -n\ %:S
+ CompilerSet makeprg=bash\ -n\ --\ %:S
else
- CompilerSet makeprg=bash\ -n\ %
+ CompilerSet makeprg=bash\ -n\ --\ %
endif
CompilerSet errorformat=%f:\ line\ %l:\ %m