mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 09:44:31 +00:00 
			
		
		
		
	closes: vim/vim#15645
077d1d2cff
Co-authored-by: Konfekt <Konfekt@users.noreply.github.com>
Co-authored-by: K.Takata <kentkt@csc.jp>
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			394 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			394 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
" Vim compiler plugin
 | 
						|
"
 | 
						|
" Maintainer:	The Vim Project <https://github.com/vim/vim>
 | 
						|
" Last Change:	2024 Sep 10
 | 
						|
" Original Author: Konfekt
 | 
						|
"
 | 
						|
" This compiler plugin is used to reset previously set compiler options.
 | 
						|
 | 
						|
if exists("g:current_compiler") | unlet g:current_compiler | endif
 | 
						|
if exists("b:current_compiler") | unlet b:current_compiler | endif
 | 
						|
 | 
						|
CompilerSet makeprg&
 | 
						|
CompilerSet errorformat&
 |