blob: d25883640b2374a9113abc92bb2a30db7ec38660 [file] [log] [blame]
Vito79952b92024-04-26 22:36:20 +02001" Vim compiler file
2" Language: jq
3" Maintainer: Vito <vito.blog@gmail.com>
GodFatherdc5c9052024-04-29 20:16:29 +02004" Last Change: 2024 Apr 29
Riley Bruins0a083062024-06-03 20:40:45 +02005" 2024 May 23 by Riley Bruins <ribru17@gmail.com> ('commentstring')
Vito79952b92024-04-26 22:36:20 +02006" Upstream: https://github.com/vito-c/jq.vim
7
8if exists('b:did_ftplugin')
9 finish
10endif
11let b:did_ftplugin = 1
12
GodFatherdc5c9052024-04-29 20:16:29 +020013setlocal include=^\\s*\\%(import\\\|include\\)
Riley Bruins0a083062024-06-03 20:40:45 +020014setlocal commentstring=#\ %s
Vito79952b92024-04-26 22:36:20 +020015compiler jq
16
GodFatherdc5c9052024-04-29 20:16:29 +020017let b:undo_ftplugin = 'setl commentstring< include<'