sublime-cpp11
sublime-cpp11 copied to clipboard
Syntax highlight error on split lines
When a line is interrupted like
auto test =
split<bool>(parser.getStringParam("test"), delim);
It produces different syntax than an uninterupted line
auto test = split<bool>(parser.getStringParam("test"), delim);