aboutsummaryrefslogtreecommitdiff
path: root/runtime/compiler/shellcheck.vim
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-05-01 01:39:00 -0400
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2021-05-01 02:01:25 -0400
commite1171cf1d2e4cfb02b5ea1328310612a2e6548ec (patch)
tree3d9a06073ae5eb811c5999e4ce69c5be218e0a42 /runtime/compiler/shellcheck.vim
parentd1a2523f6c98f4113e1859830ae448f34d89012c (diff)
downloadrneovim-e1171cf1d2e4cfb02b5ea1328310612a2e6548ec.tar.gz
rneovim-e1171cf1d2e4cfb02b5ea1328310612a2e6548ec.tar.bz2
rneovim-e1171cf1d2e4cfb02b5ea1328310612a2e6548ec.zip
vim-patch:d58a3bf7dac8
Update runtime files. https://github.com/vim/vim/commit/d58a3bf7dac8d53faf42e13cc1152b110f12c404 Omit syntax/man.vim.
Diffstat (limited to 'runtime/compiler/shellcheck.vim')
-rw-r--r--runtime/compiler/shellcheck.vim25
1 files changed, 25 insertions, 0 deletions
diff --git a/runtime/compiler/shellcheck.vim b/runtime/compiler/shellcheck.vim
new file mode 100644
index 0000000000..7550439aa2
--- /dev/null
+++ b/runtime/compiler/shellcheck.vim
@@ -0,0 +1,25 @@
+" Vim compiler file
+" Compiler: ShellCheck
+" Maintainer: Doug Kearns <dougkearns@gmail.com>
+" Last Change: 2020 Sep 4
+
+if exists("current_compiler")
+ finish
+endif
+let current_compiler = "shellcheck"
+
+if exists(":CompilerSet") != 2 " older Vim always used :setlocal
+ command -nargs=* CompilerSet setlocal <args>
+endif
+
+let s:cpo_save = &cpo
+set cpo&vim
+
+CompilerSet makeprg=shellcheck\ -f\ gcc
+CompilerSet errorformat=%f:%l:%c:\ %trror:\ %m\ [SC%n],
+ \%f:%l:%c:\ %tarning:\ %m\ [SC%n],
+ \%f:%l:%c:\ %tote:\ %m\ [SC%n],
+ \%-G%.%#
+
+let &cpo = s:cpo_save
+unlet s:cpo_save