mirror of
				https://github.com/vim/vim.git
				synced 2025-10-30 09:47:20 -04:00 
			
		
		
		
	runtime(compiler): improve cppcheck
Properly escape the values for makeprg according to the :set rules closes: #16014 Signed-off-by: Konfekt <Konfekt@users.noreply.github.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
		
				
					committed by
					
						 Christian Brabandt
						Christian Brabandt
					
				
			
			
				
	
			
			
			
						parent
						
							07c9ab8c05
						
					
				
				
					commit
					0f60fbf679
				
			| @@ -1,7 +1,7 @@ | |||||||
| " vim compiler file | " vim compiler file | ||||||
| " Compiler:	cppcheck (C++ static checker) | " Compiler:	cppcheck (C++ static checker) | ||||||
| " Maintainer:   Vincent B. (twinside@free.fr) | " Maintainer:   Vincent B. (twinside@free.fr) | ||||||
| " Last Change:  2024 Oct 17 by @Konfekt | " Last Change:  2024 Nov 08 by @Konfekt | ||||||
|  |  | ||||||
| if exists("current_compiler") | finish | endif | if exists("current_compiler") | finish | endif | ||||||
| let current_compiler = "cppcheck" | let current_compiler = "cppcheck" | ||||||
| @@ -25,7 +25,7 @@ let &l:makeprg = 'cppcheck --quiet' | |||||||
|       \	          (filereadable('compile_commands.json') ? '--project=compile_commands.json' : |       \	          (filereadable('compile_commands.json') ? '--project=compile_commands.json' : | ||||||
|       \           (!empty(glob('*'..s:slash..'compile_commands.json', 1, 1)) ? '--project='..glob('*'..s:slash..'compile_commands.json', 1, 1)[0] : |       \           (!empty(glob('*'..s:slash..'compile_commands.json', 1, 1)) ? '--project='..glob('*'..s:slash..'compile_commands.json', 1, 1)[0] : | ||||||
|       \	          (empty(&path) ? '' : '-I')..join(map(filter(split(&path, ','), 'isdirectory(v:val)'),'shellescape(v:val)'), ' -I'))))) |       \	          (empty(&path) ? '' : '-I')..join(map(filter(split(&path, ','), 'isdirectory(v:val)'),'shellescape(v:val)'), ' -I'))))) | ||||||
| silent CompilerSet makeprg | exe 'CompilerSet makeprg='..escape(&l:makeprg, ' "') | ||||||
|  |  | ||||||
| CompilerSet errorformat= | CompilerSet errorformat= | ||||||
|   \%f:%l:%c:\ %tarning:\ %m, |   \%f:%l:%c:\ %tarning:\ %m, | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user