将定义的类型着色为类型
有没有办法为 C 中使用 typedef
语句定义的新类型添加语法着色?
typedef struct {
int a,b;
} MyStruct;
MyStruct *InitMyStruct(MyStruct *struct, int a, int b);
^ ^ ^ ^ ^
+---------+-----------+ +------+
Same Color Correct type color
如果它本身不可能(我猜是这样),是否有任何插件可以使这个视觉线索发挥作用?
Is there any way to add syntax coloring to new types defined with typedef
statements in C?
typedef struct {
int a,b;
} MyStruct;
MyStruct *InitMyStruct(MyStruct *struct, int a, int b);
^ ^ ^ ^ ^
+---------+-----------+ +------+
Same Color Correct type color
If it's not possible natively (I guess so), are there any plugins to make this visual clue work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 Vim 的帮助中找到了我的问题的确切解决方案,我将其发布在这里,以防将来有人需要它。这正是我想要的:一种阅读代码并相应地突出显示它的方法。
syntax.txt
第 15 节:突出显示标签
I found the exact solution to my question in Vim's help, and I'm posting it here in case someone needs this in the future. It's exactly what I want: a way to read the code and highlight it accordingly.
syntax.txt
Section 15: Highlighting tags