文章目录
- 一,sublimelinter能实现什么?
- 二、sublimelinter 的安装教程
- 配置sublime text 的基础环境
- 配置cppcheck的环境变量
- 配置sublimelinter的配置文件
一,sublimelinter能实现什么?
因为sublime 不自带任何的代码检查工具,所以需要我们自行下载代码报错,警告检查工具。SublimeLinter 的 linter 插件为 cppcheck 提供了一个接口。它将用于具有 "C++"或 "C "语法的文件。
sublimelinter效果 :
sublimelinter产生的报错可以自行的设定颜色,双击可以进行跳转,报错与警告也可以完美的做一个颜色分割,还可以自行设定检查的C++版本,自行设置各种参数,报错警告也相对工整。
二、sublimelinter 的安装教程
配置sublime text 的基础环境
- 打开包安装器
Ctrl
+Shift
+P
, 输入Package Control : install package
,回车
- 搜索
sublimeLinter
,找到下载。(回车即可) - 搜素
sublimeLinter-cppcheck
,找到下载 (回车即可)
完成 sublime text 的软件配置之后,我们要检查自己的电脑上是否存在cppcheck,因为这个插件是基于cppcheck的。
打开cmd , 输入
cppcheck --version
如果显示存在直接跳转到sublimeLinter的Json文件配置
配置cppcheck的环境变量
- https://cppcheck.sourceforge.io/ 进入链接,下载Windows 64-bit (No XP support),如果您是Linux环境,请在运行下面的代码
<package manager> install cppcheck
- 把这个cppcheck.msi下载下来之后,运行下载。
- 找到cppcheck下载的位置,把checkcpp.exe的路径放置到系统环境变量(path)中,不会可以自行百度
配置sublimelinter的配置文件
请按下图路径访问sublimelinter的配置文件
可以直接把我的json文件粘贴到右侧保存即可。如果您使用的C++标准不是C++20,可以修改第八行。
{"linters": {"cppcheck++": {"disable": false,"args": ["--enable=all", "--inconclusive", "--std=c++20" // 不同的C++版本要自行调整],"executable": "cppcheck","env": {},"excludes": [],"filter_errors": [],"lint_mode": "background","selector": "source.c++","working_dir": "","python": 3,"disable_if_not_dependency": false},"cppcheck-c": {"disable": false,"args": ["--enable=all", "--inconclusive" ],"executable": "cppcheck","env": {},"excludes": [],"filter_errors": [],"lint_mode": "background","selector": "source.c","working_dir": "","python": 3,"disable_if_not_dependency": false}},"styles": [{"scope": "region.yellowish markup.warning.sublime_linter","types": ["warning"]},{"scope": "region.redish markup.error.sublime_linter","types": ["error"]}],"show_marks_in_minimap": true,"show_panel_on_save": "window","show_hover_line_report": true
}