This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Description
Initialisation list syntax highlighting is not working as seen in the below image, please see related issue.
Editor: VS Code
Version: 1.9.1

the issue seems to be with the ordering of the commas: see below

both are syntactically the same hut have different highlighting.
test code:
struct test {
test(int x, int d, std::string dave) :
_x(x),
_d(d),
_dave(dave)
{
}
int _x;
int _d;
std::string _dave;
};
struct test2 {
test2(int x, int d, std::string dave) :
_x(x)
, _d(d)
, _dave(dave)
{
}
int _x;
int _d;
std::string _dave;
};
related issue
#198