Embarcadero / Dev-Cpp

A fast, portable, simple, and free C/C++ IDE
https://www.embarcadero.com/free-tools/dev-cpp
GNU General Public License v2.0
2.59k stars 282 forks source link

C++11 raw strings (multi-line strings) are highlighted incorrectly. #172

Open FlatAssembler opened 3 years ago

FlatAssembler commented 3 years ago

For example, in this file, everything from line 58 to 74 is one multi-line string, yet it is not highlighted as such: image

FlatAssembler commented 3 years ago

The same problem seems to happen in C++ Builder Community Edition, by the way!

pmcgee69 commented 2 years ago

VS Code gives the result you want, but Dev-cpp and C++Builder highlighter need line-continuation slashes. I'm not sure this necessarily needs changing. [ Edit : I was forgetting the raw string part. ]

image