aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin/sh.vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-11-05 00:26:41 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-11-05 00:26:41 +1300
commitd1d039f3444f85b6c6e53a7ac69e6588c2e78fba (patch)
treee11c11a7d116045489e7e43fa8d8c2ec71236278 /vim/ftplugin/sh.vim
parentMerge branch 'feature/vim61-backport' into develop (diff)
parentAdd short-circuit boilerplate to plugins (diff)
downloaddotfiles-d1d039f3444f85b6c6e53a7ac69e6588c2e78fba.tar.gz
dotfiles-d1d039f3444f85b6c6e53a7ac69e6588c2e78fba.zip
Merge branch 'feature/plugin-shor...' into develop
* feature/plugin-short-circuit: Add short-circuit boilerplate to plugins Simplify shell linting code with single vars
Diffstat (limited to 'vim/ftplugin/sh.vim')
-rw-r--r--vim/ftplugin/sh.vim16
1 files changed, 8 insertions, 8 deletions
diff --git a/vim/ftplugin/sh.vim b/vim/ftplugin/sh.vim
index ae1974a0..d13f34da 100644
--- a/vim/ftplugin/sh.vim
+++ b/vim/ftplugin/sh.vim
@@ -27,24 +27,24 @@ endif
" Map checker based on shell family
if exists('b:is_bash') && b:is_bash
- let b:check = 'bash -n'
+ let b:check = 'write !bash -n'
elseif exists('b:is_ksh') && b:is_ksh
- let b:check = 'ksh -n'
+ let b:check = 'write !ksh -n'
else
- let b:check = 'sh -n'
+ let b:check = 'write !sh -n'
endif
nnoremap <buffer> <silent>
\ <LocalLeader>c
- \ :<C-U>execute ':write !' . b:check<CR>
+ \ :<C-U>execute b:check<CR>
" Map linter based on shell family
if exists('b:is_bash') && b:is_bash
- let b:lint = 'shellcheck -s bash -'
+ let b:lint = 'write shellcheck -s bash -'
elseif exists('b:is_ksh') && b:is_ksh
- let b:lint = 'shellcheck -s ksh -'
+ let b:lint = 'write !shellcheck -s ksh -'
else
- let b:lint = 'shellcheck -s sh -'
+ let b:lint = 'write !shellcheck -s sh -'
endif
nnoremap <buffer> <silent>
\ <LocalLeader>l
- \ :<C-U>execute ':write !' . b:lint<CR>
+ \ :<C-U>execute b:lint<CR>