增强的着色
启用 IntelliSense 后,Visual Studio Code C/C++ 扩展现在支持语义着色。增强着色的使用由 C_Cpp.enhancedColorization 设置控制。此设置默认启用。
"C_Cpp.enhancedColorization": "enabled"
主题
可以使用 VS Code 中现有的主题和颜色自定义支持来关联颜色。有关更多信息,请参阅VS Code 主题文档。
颜色与语义令牌以及TextMate 作用域相关联。
C/C++ 主题扩展
我们创建了一组 VS Code 主题,这些主题与 Visual Studio 中的默认浅色和深色主题非常相似,并且包括语义令牌的颜色。这些主题可以在此处找到。
IntelliSense 令牌和作用域
令牌 | 语义令牌名称 | 回退 TextMate 作用域 |
---|---|---|
类模板 | templateType | entity.name.type.class.templated |
枚举器 | enumMember | variable.other.enummember |
事件 (C++/CLI) | event | variable.other.event |
函数 | function | entity.name.function |
函数模板 | templateFunction | entity.name.function.templated |
泛型类型 (C++/CLI) | genericType | entity.name.type.class.generic |
全局变量 | variable.global | variable.other.global |
标签 | label | entity.name.label |
局部变量 | variable.local | variable.other.local |
宏 | macro | entity.name.function.preprocessor |
成员字段 | property | variable.other.property |
成员函数 | method | entity.name.function.member |
命名空间 | namespace | entity.name.namespace |
新建 / 删除 | newOperator | keyword.operator.new |
运算符重载函数 | operatorOverload | entity.name.function.operator |
运算符重载成员 | memberOperatorOverload | entity.name.function.operator.member |
参数 | parameter | variable.parameter |
属性 (C++/CLI) | cliProperty | variable.other.property.cli |
引用类型 (C++/CLI) | referenceType | entity.name.type.class.reference |
静态成员字段 | property.static | variable.other.property.static |
静态成员函数 | method.static | entity.name.function.member.static |
类型 | type | entity.name.type |
用户定义的字面量 - 数字 | numberLiteral | entity.name.operator.custom-literal.number |
用户定义的字面量 - 原始 | customLiteral | entity.name.operator.custom-literal |
用户定义的字面量 - 字符串 | stringLiteral | entity.name.operator.custom-literal.string |
值类型 (C++/CLI) | valueType | entity.name.type.class.value |
自定义设置中的颜色
也可以在设置中全局覆盖颜色
"editor.semanticTokenColorCustomizations": {
"rules": {
"templateType": {
"foreground": "#ff0000",
"fontStyle": "italic bold underline"
}
}
}
或者,在每个主题的基础上覆盖
"editor.semanticTokenColorCustomizations": {
"[Visual Studio Dark]": {
"rules": {
"templateType": {
"foreground": "#ff0000",
"fontStyle": "italic bold underline"
}
}
}
}