mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 01:34:25 +00:00 
			
		
		
		
	runtime(arduino): Add Arduino ftplugin and indent files (vim/vim#14811)
We already have Arduino syntax file, but we didn't have ftplugin and
indent files.
This commit adds a basic ftplugin file and a basic indent file.
Both of them are derived from {ftplugin,indent}/c.vim.
957d903cb7
Co-authored-by: K.Takata <kentkt@csc.jp>
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			356 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			356 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
" Vim indent file
 | 
						|
" Language:	Arduino
 | 
						|
" Maintainer:	The Vim Project <https://github.com/vim/vim>
 | 
						|
"		Ken Takata <https://github.com/k-takata>
 | 
						|
" Last Change:	2024 Apr 03
 | 
						|
 | 
						|
" Only load this indent file when no other was loaded.
 | 
						|
if exists("b:did_indent")
 | 
						|
  finish
 | 
						|
endif
 | 
						|
let b:did_indent = 1
 | 
						|
 | 
						|
" Use C indenting.
 | 
						|
setlocal cindent
 | 
						|
 | 
						|
let b:undo_indent = "setl cin<"
 |