mirror of
				https://github.com/neovim/neovim.git
				synced 2025-10-26 12:27:24 +00:00 
			
		
		
		
	 d3771e68a2
			
		
	
	d3771e68a2
	
	
	
		
			
			runtime(json5): add basic indent support (vim/vim#14298)
63833bb021
Co-authored-by: Rocco Mao <dapeng.mao@qq.com>
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			231 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			231 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
| " Vim indent file
 | |
| " Language:     JSON5
 | |
| " Maintainer:   The Vim Project <https://github.com/vim/vim>
 | |
| " Last Change:  2024-03-26
 | |
| 
 | |
| if exists("b:did_indent")
 | |
|   finish
 | |
| endif
 | |
| 
 | |
| " Same as jsonc indenting for now
 | |
| runtime! indent/jsonc.vim
 |