diff options
author | Christian Clason <c.clason@uni-graz.at> | 2024-10-05 17:41:15 +0200 |
---|---|---|
committer | Christian Clason <c.clason@uni-graz.at> | 2024-10-07 19:19:15 +0200 |
commit | 4ea0f1ec23eb74fb26b7137cdd83af3b0539f3be (patch) | |
tree | 7543fef6bceff29488e13f286e0bfd326fa7b63e /runtime/compiler/cppcheck.vim | |
parent | 61f1b091ea97793f9b644cebf6c84cf6bbb4f0bc (diff) | |
download | rneovim-4ea0f1ec23eb74fb26b7137cdd83af3b0539f3be.tar.gz rneovim-4ea0f1ec23eb74fb26b7137cdd83af3b0539f3be.tar.bz2 rneovim-4ea0f1ec23eb74fb26b7137cdd83af3b0539f3be.zip |
vim-patch:af449f6: runtime(compiler): add cppcheck linter compiler plugin
closes: vim/vim#15804
https://github.com/vim/vim/commit/af449f69c7cc9f0ffafaa6e0d028dccd1c358763
Co-authored-by: Konfekt <Konfekt@users.noreply.github.com>
Diffstat (limited to 'runtime/compiler/cppcheck.vim')
-rw-r--r-- | runtime/compiler/cppcheck.vim | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/runtime/compiler/cppcheck.vim b/runtime/compiler/cppcheck.vim new file mode 100644 index 0000000000..ed7c46e90f --- /dev/null +++ b/runtime/compiler/cppcheck.vim @@ -0,0 +1,40 @@ +" vim compiler file +" Compiler: cppcheck (C++ static checker) +" Maintainer: Vincent B. (twinside@free.fr) +" Last Change: 2024 Oct 4 by @Konfekt + +if exists("cppcheck") + finish +endif +let current_compiler = "cppcheck" + +let s:cpo_save = &cpo +set cpo-=C + +if !exists('g:c_cppcheck_params') + let g:c_cppcheck_params = '--verbose --force --inline-suppr' + \ ..' '..'--enable=warning,style,performance,portability,information,missingInclude' + \ ..' '..(executable('getconf') ? '-j' .. systemlist('getconf _NPROCESSORS_ONLN')[0] : '') + let s:undo_compiler = 'unlet! g:c_cppcheck_params' +endif + +let &l:makeprg = 'cppcheck --quiet' + \ ..' --template="{file}:{line}:{column}: {severity}: [{id}] {message} {callstack}"' + \ ..' '..get(b:, 'c_cppcheck_params', + \ g:c_cppcheck_params..' '..(&filetype ==# 'cpp' ? ' --language=c++' : '')) + \ ..' '..get(b:, 'c_cppcheck_includes', get(g:, 'c_cppcheck_includes', + \ (filereadable('compile_commands.json') ? '--project=compile_commands.json' : + \ (empty(&path) ? '' : '-I')..join(map(filter(split(&path, ','), 'isdirectory(v:val)'),'shellescape(v:val)'), ' -I')))) +silent CompilerSet makeprg + +CompilerSet errorformat= + \%f:%l:%c:\ %tarning:\ %m, + \%f:%l:%c:\ %trror:\ %m, + \%f:%l:%c:\ %tnformation:\ %m, + \%f:%l:%c:\ %m, + \%.%#\ :\ [%f:%l]\ %m + +exe get(s:, 'undo_compiler', '') + +let &cpo = s:cpo_save +unlet s:cpo_save |