| Summary: | Code coloring shifted with some characters | ||
|---|---|---|---|
| Product: | [Applications] kdevelop | Reporter: | Maverick Chardet <chardetm> |
| Component: | Language Support: CPP (Clang-based) | Assignee: | kdevelop-bugs-null |
| Status: | CONFIRMED --- | ||
| Severity: | normal | CC: | mail, nasus.maximos |
| Priority: | NOR | ||
| Version First Reported In: | 5.1.0 | ||
| Target Milestone: | --- | ||
| Platform: | Arch Linux | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: |
Screenshot
Color shift due to ãáç Color shift due to ã Color shift now gone if remove ã |
||
Created attachment 143903 [details]
Color shift due to ãáç
Created attachment 143904 [details]
Color shift due to ã
Created attachment 143905 [details]
Color shift now gone if remove ã
I've had the same issue with accents (portuguese strings). As shown in the attachments I've added, any time I have a string with ãçá I get the shift. If I substitute the ã for a the bug is gone. Setting this to confirmed, it has definitely been a problem basically forever. |
Created attachment 105338 [details] Screenshot I noticed a shift of the text coloring when using some characters (see attached file). I suspect UTF-8 support to be the cause. It might not be valid C++ but I suppose that it is not the way this error should be highlighted. Code: #include <iostream> void print(std::ostream& os) { os << "δ" << std::endl; }