[Feature Request] Support for semantic highlighting.

2013-03-17 Thread Tianjiao Yin
Hello all, Have plans to do a semantic highlighting support? For example, look at this cpp source code: #define SQR(i) ((i)*(i)) int sqr(int i) { return i * i; } int main() { { class sqr{}; sqr foo = sqr(); } int (*bar)(int) = sqr;

Re: [Feature Request] Support for semantic highlighting.

2013-03-26 Thread ZyX
воскресенье, 17 марта 2013 г., 16:48:13 UTC+4 пользователь Tianjiao Yin написал: > Hello all, > > Have plans to do a semantic highlighting support? For example, look at this > cpp source code: > > #define SQR(i) ((i)*(i)) > int sqr(int i) { return i * i; } > int main() { > {