Visual Studio 字体和颜色 - 参考关键字
我刚刚为 Visual Studio 2008 导入了新的字体和颜色。我想更改参数上 ref
关键字的颜色以更加突出。有人知道字体和颜色
下的显示项目
中有什么选项吗?
I just imported new fonts and colors for Visual Studio 2008. I want to change the color on the ref
keyword on a parameter to stand out a little more. Anyone know what option that is in the Display Items
under Fonts and Colors
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是 VS2008 中语法突出显示的工作方式。它是通过“词法分析”完成的,而不是语言解析器。换句话说,它对源代码文件中的文本进行标记,并按词汇类型对它们进行分类。关键字、标识符、数字、字符串、注释、空格。并赋予它们相关的颜色。
以这种方式工作很重要,因为词法分析速度很快,而解析速度很慢。在文本编辑器中重新绘制文本需要很快。因此,它没有对单个关键字进行分类的选项,您获得的唯一选项是对话框中的“关键字”颜色。这会改变所有关键字的颜色,而不仅仅是
ref
。That's not how syntax highlighting works in VS2008. It is done by 'lexical analysis', not a language parser. In other words, it tokenizes the text in the source code file and classifies them by lexical type. Keyword, identifier, number, string literal, comment, whitespace. And gives them their associated color.
It is important that it works that way because lexical analysis is fast, parsing is slow. Getting text to repaint in a text editor needs to be fast. Accordingly, it has no option to classify individual keywords, the only option you got is the "Keyword" color in the dialog. Which changes the color of all keywords, not just
ref
.