summaryrefslogtreecommitdiffstats
path: root/runtime/compiler/jshint.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-08-15 18:55:18 +0200
committerBram Moolenaar <Bram@vim.org>2020-08-15 18:55:18 +0200
commit3d1cde8a2f28dce2c82d2b2b4c5e35e6662030e0 (patch)
tree997f03c1bd793148efe3387f64c9e3efdcb44be9 /runtime/compiler/jshint.vim
parente3c37d8ebf9dbbf210fde4a5fb28eb1f2a492a34 (diff)
Update runtime files.
Diffstat (limited to 'runtime/compiler/jshint.vim')
-rw-r--r--runtime/compiler/jshint.vim25
1 files changed, 25 insertions, 0 deletions
diff --git a/runtime/compiler/jshint.vim b/runtime/compiler/jshint.vim
new file mode 100644
index 0000000000..865591cd2b
--- /dev/null
+++ b/runtime/compiler/jshint.vim
@@ -0,0 +1,25 @@
+" Vim compiler file
+" Compiler: JSHint
+" Maintainer: Doug Kearns <dougkearns@gmail.com>
+" Last Change: 2019 Jul 10
+
+if exists("current_compiler")
+ finish
+endif
+let current_compiler = "jshint"
+
+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=npx\ jshint\ --verbose
+
+CompilerSet makeprg=jshint\ --verbose
+CompilerSet errorformat=%f:\ line\ %l\\,\ col\ %c\\,\ %m\ (%t%n),
+ \%-G%.%#
+
+let &cpo = s:cpo_save
+unlet s:cpo_save