Vito | 79952b9 | 2024-04-26 22:36:20 +0200 | [diff] [blame] | 1 | " Vim compiler file |
2 | " Language: jq | ||||
3 | " Maintainer: Vito <vito.blog@gmail.com> | ||||
4 | " Last Change: 2024 Apr 17 | ||||
5 | " Upstream: https://github.com/vito-c/jq.vim | ||||
6 | |||||
7 | if exists('b:did_ftplugin') | ||||
8 | finish | ||||
9 | endif | ||||
10 | let b:did_ftplugin = 1 | ||||
11 | |||||
12 | let b:undo_ftplugin = 'setl commentstring<' | ||||
13 | |||||
14 | setlocal commentstring=#%s | ||||
15 | compiler jq | ||||
16 | |||||
17 | let &cpoptions = s:save_cpoptions | ||||
18 | unlet s:save_cpoptions |