summaryrefslogtreecommitdiffstats
path: root/runtime/compiler
diff options
context:
space:
mode:
authorVito <vito.blog@gmail.com>2024-04-26 22:36:20 +0200
committerChristian Brabandt <cb@256bit.org>2024-04-26 22:39:41 +0200
commit79952b9c6774d30f248a0ecf9ea84318be947fc4 (patch)
tree33ddb54a8f2fbb9eb250c761ca10ddf0b7010dff /runtime/compiler
parent9525f62136047225f4dca8ba68ab2023600ec522 (diff)
runtime(jq): include syntax, ftplugin and compiler plugin
closes: #14619 Signed-off-by: Vito <vito.blog@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
Diffstat (limited to 'runtime/compiler')
-rw-r--r--runtime/compiler/jq.vim25
1 files changed, 25 insertions, 0 deletions
diff --git a/runtime/compiler/jq.vim b/runtime/compiler/jq.vim
new file mode 100644
index 0000000000..a656223e51
--- /dev/null
+++ b/runtime/compiler/jq.vim
@@ -0,0 +1,25 @@
+" Vim compiler file
+" Compiler: jq
+" Maintainer: Vito <vito.blog@gmail.com>
+" Last Change: 2024 Apr 17
+" Upstream: https://github.com/vito-c/jq.vim
+
+if exists('b:current_compiler')
+ finish
+endif
+let b:current_compiler = 'jq'
+
+let s:save_cpoptions = &cpoptions
+set cpoptions&vim
+
+if has('unix')
+ CompilerSet makeprg=jq\ -f\ %:S\ /dev/null
+else
+ CompilerSet makeprg=jq\ -f\ %:S\ nul
+endif
+CompilerSet errorformat=%E%m\ at\ \\<%o\\>\\,\ line\ %l:,
+ \%Z,
+ \%-G%.%#
+
+let &cpoptions = s:save_cpoptions
+unlet s:save_cpoptions