aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-05 15:51:06 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-05 15:51:06 +1300
commit7a6dff3c000096e414adb11ca2a66315a827ede8 (patch)
tree285b00ffe30e6fdfbd4c71dbef904c8743a4c708 /vim/ftplugin
parentBump version number to 0.9.1 (diff)
downloaddotfiles-7a6dff3c000096e414adb11ca2a66315a827ede8.tar.gz
dotfiles-7a6dff3c000096e414adb11ca2a66315a827ede8.zip
Put missing exclamation mark back into shell check
Looks like this was mistakenly omitted in commit 09f8635.
Diffstat (limited to 'vim/ftplugin')
-rw-r--r--vim/ftplugin/sh.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/ftplugin/sh.vim b/vim/ftplugin/sh.vim
index d13f34da..8990f0fa 100644
--- a/vim/ftplugin/sh.vim
+++ b/vim/ftplugin/sh.vim
@@ -39,7 +39,7 @@ nnoremap <buffer> <silent>
" Map linter based on shell family
if exists('b:is_bash') && b:is_bash
- let b:lint = 'write shellcheck -s bash -'
+ let b:lint = 'write !shellcheck -s bash -'
elseif exists('b:is_ksh') && b:is_ksh
let b:lint = 'write !shellcheck -s ksh -'
else