https://bugs.kde.org/show_bug.cgi?id=419423
kogiokkaf...@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Ever confirmed|0 |1 Status|RESOLVED |REOPENED Resolution|DUPLICATE |--- --- Comment #5 from kogiokkaf...@gmail.com --- Just let you know I would love to contribute to the development if there are no enough time or people in the team, so I'll mark this issue reopened. I will need some direction for the start though. I notice that while loop parenthesis can also get inconsistent coloring, just for the record: ------------------------- #include <fstream> #include <iostream> #include <sstream> #include <string> int main() { std::string const greeting = "Hello:World:!"; std::istringstream iss(greeting); std::string token; while (std::getline(iss, token, ':')) { std::cout << token << std::endl; } } ------------------------- Before this issue being resolved, maybe there are some workarounds like disabling the syntax-highlighting for all operator functions? -- You are receiving this mail because: You are watching all bug changes.