diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-11-09 08:45:06 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2024-11-09 08:45:10 +0800 |
commit | c914ecf4c930f247123ec40ffc4b59461cd1a1f2 (patch) | |
tree | bd284a9d68f1c0f83d7bdf50fc2924d3003f9265 /runtime/compiler/cppcheck.vim | |
parent | 591884c9fbebecf3e2c26bde1e1661128c09dfc2 (diff) | |
download | rneovim-c914ecf4c930f247123ec40ffc4b59461cd1a1f2.tar.gz rneovim-c914ecf4c930f247123ec40ffc4b59461cd1a1f2.tar.bz2 rneovim-c914ecf4c930f247123ec40ffc4b59461cd1a1f2.zip |
vim-patch:0f60fbf: runtime(compiler): improve cppcheck
Properly escape the values for makeprg according to the :set rules
closes: vim/vim#16014
https://github.com/vim/vim/commit/0f60fbf6796b72111184a6734b702a93f8f8944b
Co-authored-by: Konfekt <Konfekt@users.noreply.github.com>
Diffstat (limited to 'runtime/compiler/cppcheck.vim')
-rw-r--r-- | runtime/compiler/cppcheck.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/compiler/cppcheck.vim b/runtime/compiler/cppcheck.vim index d6fc0d6873..4df12d1714 100644 --- 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, |