主题的效果大概像这样
C/C++ for Visual Studio Code
C++ Intellisense
- 语法静态检测,想去掉烦人的波浪线提示系统函数或头文件找不到,参考我的另一篇博客win10上搭建calng编译环境与vscode配置
C/C++
- 函数与头文件的跳转需要这个插件的支持
C-family Documentation Comments
- 输入
/**
后回车自动添加注释的常用字段
sftp sync extension for VS Code
- 个人觉得必备,在本地很云主机之间传输文件很方便
Code Runner
- 可以直接运行单个cpp文件,对小型项目很有用
VSCode Color Info
- 在写qss文件的时候特别好用,快速浏览qss的颜色
filesize package for Visual Studio Code
- 在左下角显示文件的大小
vscode-icons
- 换一些漂亮一点的图标
Better Comments
- 使用
*,!,?,TODO
让注释更漂亮些
C/C++ GNU Global
- 使用GNU Global为C/C++提供智能感知
Material Thema
- 一个非常经典的主题
Indent-Rainbow
- 效果见上图
Chinese (Simplified) Language Pack for Visual Studio Code
- 汉化,ctrl+shift+p -> >configure Display Language ->选择 zh-cn
hexdump for VSCode
- 查看二进制文件
Mermaid Preview
- 查看UML图
Git History Diff
- 方便对比相邻版本的更改
Bracket Pair Colorizer
- 用不同颜色标识匹配的括号
LLVM Syntax Highlighting
- llvm IR 基础语法高亮
highlight
highlight-icemode
- 支持选中/取消单词高亮(shift+F8)
C/C++ Support
- 提供联想功能
PlantUML
- dot 实时预览
#@startdot
digraph demo {
bgcolor="beige"
subgraph cluster_husband {
node[color="grey"]
{"father", "mother"} -> "me"
}
subgraph cluster_wife {
{"father-in-law", "mother-in-law"} -> "wife"
}
"me" -> "wife"[label="couple", dir="both"]
{rank=same; "me", "wife"}
}
#@enddot