summaryrefslogtreecommitdiff
path: root/uvim/runtime/compiler/cppcheck.vim
diff options
context:
space:
mode:
authorMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-02 18:44:22 +0300
committerMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-02 18:44:22 +0300
commit934382c8a1ce738589dee9ee0f14e1cec812770e (patch)
treef13715762efd06518f8aec3a2bf39ac8a615987f /uvim/runtime/compiler/cppcheck.vim
parent0b24459ac12b6cf9fd5a401d647796ca254a8fa8 (diff)
parent7088926316d8d4a7572a242d0765e99adfc8b083 (diff)
downloadProject-Tick-934382c8a1ce738589dee9ee0f14e1cec812770e.tar.gz
Project-Tick-934382c8a1ce738589dee9ee0f14e1cec812770e.zip
Add 'uvim/' from commit '7088926316d8d4a7572a242d0765e99adfc8b083'
git-subtree-dir: uvim git-subtree-mainline: 0b24459ac12b6cf9fd5a401d647796ca254a8fa8 git-subtree-split: 7088926316d8d4a7572a242d0765e99adfc8b083
Diffstat (limited to 'uvim/runtime/compiler/cppcheck.vim')
-rw-r--r--uvim/runtime/compiler/cppcheck.vim40
1 files changed, 40 insertions, 0 deletions
diff --git a/uvim/runtime/compiler/cppcheck.vim b/uvim/runtime/compiler/cppcheck.vim
new file mode 100644
index 0000000000..17f79f4fa0
--- /dev/null
+++ b/uvim/runtime/compiler/cppcheck.vim
@@ -0,0 +1,40 @@
+" vim compiler file
+" Compiler: cppcheck (C++ static checker)
+" Maintainer: Vincent B. (twinside@free.fr)
+" Last Change: 2025 Nov 06 by @Konfekt
+
+if exists("current_compiler") | finish | endif
+let current_compiler = "cppcheck"
+
+let s:cpo_save = &cpo
+set cpo&vim
+
+let s:slash = has('win32')? '\' : '/'
+
+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
+
+exe 'CompilerSet makeprg=' .. escape('cppcheck --quiet'
+ \ ..' --template="{file}:{line}:{column}: {severity}: [{id}] {message} {callstack}"'
+ \ ..' '..get(b:, 'c_cppcheck_params', get(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(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'))))),
+ \ ' \|"')
+
+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