mirror of
				https://github.com/vim/vim.git
				synced 2025-11-03 09:44:48 -05:00 
			
		
		
		
	See newly added help entry referring to option-backslash closes: #16084 Signed-off-by: Konfekt <Konfekt@users.noreply.github.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
		
			
				
	
	
		
			20 lines
		
	
	
		
			554 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			554 B
		
	
	
	
		
			VimL
		
	
	
	
	
	
" Vim compiler file
 | 
						|
" Compiler:	Mypy (Python static checker)
 | 
						|
" Maintainer:   @Konfekt
 | 
						|
" Last Change:	2024 Nov 19
 | 
						|
 | 
						|
if exists("current_compiler") | finish | endif
 | 
						|
let current_compiler = "mypy"
 | 
						|
 | 
						|
let s:cpo_save = &cpo
 | 
						|
set cpo&vim
 | 
						|
 | 
						|
" CompilerSet makeprg=mypy
 | 
						|
let &l:makeprg = 'mypy --show-column-numbers '
 | 
						|
	    \ ..get(b:, 'mypy_makeprg_params', get(g:, 'mypy_makeprg_params', '--strict --ignore-missing-imports'))
 | 
						|
exe 'CompilerSet makeprg='..escape(&l:makeprg, ' \|"')
 | 
						|
CompilerSet errorformat=%f:%l:%c:\ %t%*[^:]:\ %m
 | 
						|
 | 
						|
let &cpo = s:cpo_save
 | 
						|
unlet s:cpo_save
 |