Mercurial > vim
changeset 36499:b77d8e9fa36d draft
runtime(compiler): improve cppcheck
Commit: https://github.com/vim/vim/commit/0f60fbf6796b72111184a6734b702a93f8f8944b
Author: Konfekt <Konfekt@users.noreply.github.com>
Date: Fri Nov 8 18:49:43 2024 +0100
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>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Fri, 08 Nov 2024 19:00:04 +0100 |
parents | 34484a297d0b |
children | 4507cfc828cf |
files | runtime/compiler/cppcheck.vim |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/runtime/compiler/cppcheck.vim +++ b/runtime/compiler/cppcheck.vim @@ -1,7 +1,7 @@ " vim compiler file " Compiler: cppcheck (C++ static checker) " 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 let current_compiler = "cppcheck" @@ -25,7 +25,7 @@ let &l:makeprg = 'cppcheck --quiet' \ (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(&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= \%f:%l:%c:\ %tarning:\ %m,