如何在 syntastic VIM 中为 c 文件启用 cpplint

How to enable cpplint for c files in syntastic VIM

我在 VIM 上使用带有 Syntastic 的 cpplint,但是我无法将 cpplint 用于 C 文件。

我使用 .vimrc 文件中的以下行为 cpp 文件启用了 cpplint:

let g:syntastic_cpp_cpplint_exec = 'cpplint'

我尝试对 c:

使用相同的方法
let g:syntastic_c_cpplint_exec = 'cpplint'

但这并没有帮助。 SyntasticInfo 命令仍然没有将 cpplint 列为可用检查器。

'cpplint' 未包含在 Syntastic 使用的 C 语法检查器列表中:https://github.com/scrooloose/syntastic/wiki/C。您只能使用 avrgcc、checkpatch、clang_check、clang_tidy、cppcheck、gcc、make、oclint、pc_lint、sparse、splint for C.