aboutsummaryrefslogtreecommitdiff
path: root/.vimrc
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2020-06-12 19:46:15 -0400
committertdro <tdro@users.noreply.github.com>2020-06-12 19:46:15 -0400
commitbe6ce9edb7d162d3da3df61b3f49c7bfddb869c6 (patch)
treecad5820f689a6f12b8e7cbc9caab0618ae68144a /.vimrc
parentafeff294bfa9bde63dcccc8734fedbe5721ed028 (diff)
downloaddotfiles-be6ce9edb7d162d3da3df61b3f49c7bfddb869c6.tar.gz
dotfiles-be6ce9edb7d162d3da3df61b3f49c7bfddb869c6.tar.bz2
dotfiles-be6ce9edb7d162d3da3df61b3f49c7bfddb869c6.zip
.vimrc: Update shellcheck notification
Notify if everything checks out
Diffstat (limited to '.vimrc')
-rw-r--r--.vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/.vimrc b/.vimrc
index 206e2bd..afdec25 100644
--- a/.vimrc
+++ b/.vimrc
@@ -162,7 +162,7 @@ endfunction
" Shell Check
function! ShellCheck()
- :silent !notify-send -t 10000 "$(shellcheck -x --exclude=SC1090,SC1091 %)" >/dev/null 2>&1 &
+ :silent !notify-send -t 10000 "$(shellcheck -x --exclude=SC1090,SC1091 % && echo 'Shellcheck OK: %')" >/dev/null 2>&1 &
endfunction