A suggestion for the next version: different colors for method calls and method declarations. Consider a cpp-file with some method definitions:
void TestClass::method1() {
method3() ;
method4() ;
}
void TestClass::method2() {
method5() ;
method6() ;
}
It would be very nice to have the lines "void TestClass::method1()" and "void TestClass::method2()" colored or marked in some special way, so the reader can immediately see where methods start.