SublimeCImproved
SublimeCImproved copied to clipboard
syntax highlight: struct/class inheritance
Class names are not highlighted with right color when they are inherited
OK:
struct Foo {
}
Where Foo is highlighted with right color
Wrong:
struct Bar : public Foo {
}
where Bar : public is not highlighted.