mirror of
https://github.com/neovim/neovim.git
synced 2025-12-01 14:33:11 +00:00
runtime(jq): include syntax, ftplugin and compiler plugin
closes: vim/vim#14619
79952b9c67
Co-authored-by: Vito <vito.blog@gmail.com>
19 lines
358 B
VimL
19 lines
358 B
VimL
" Vim compiler file
|
|
" Language: jq
|
|
" Maintainer: Vito <vito.blog@gmail.com>
|
|
" Last Change: 2024 Apr 17
|
|
" Upstream: https://github.com/vito-c/jq.vim
|
|
|
|
if exists('b:did_ftplugin')
|
|
finish
|
|
endif
|
|
let b:did_ftplugin = 1
|
|
|
|
let b:undo_ftplugin = 'setl commentstring<'
|
|
|
|
setlocal commentstring=#%s
|
|
compiler jq
|
|
|
|
let &cpoptions = s:save_cpoptions
|
|
unlet s:save_cpoptions
|