Syntax Highlighting Problem
Posted: Tue Feb 17, 2015 1:17 am
Problem: Syntax Highlighting.
Specs : CodeLite 7.0(The Official Release/Build), WinXp SP3 (32-bit).
Lang : C++.
It looks like CL treats everything after R" as a raw string in C++!
In Colours and Fonts->Syntax Highlight->c++/javascript->Customize
->Raw String Foreground Colour = rgb(128,0,0).
Specs : CodeLite 7.0(The Official Release/Build), WinXp SP3 (32-bit).
Lang : C++.
It looks like CL treats everything after R" as a raw string in C++!
In Colours and Fonts->Syntax Highlight->c++/javascript->Customize
->Raw String Foreground Colour = rgb(128,0,0).
Code: Select all
// C++ Code Example
// ... Normal ...
const char *const raw_string = R"(Raw String)";
// Starting from here ^ the rest of the file is rgb(128,0,0) colored!