mirror of
				https://github.com/vim/vim.git
				synced 2025-10-28 09:27:14 -04:00 
			
		
		
		
	closes: #14619 Signed-off-by: Vito <vito.blog@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
		
			
				
	
	
		
			26 lines
		
	
	
		
			544 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
		
			544 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
| " 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
 |