-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master' into tabsidebar
- Loading branch information
Showing
42 changed files
with
249 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
" vim compiler file | ||
" Compiler: cppcheck (C++ static checker) | ||
" Maintainer: Vincent B. ([email protected]) | ||
" 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.