Hi there!
I found that for the most recent Sublime version constructor initialiser list written down in this format:
Class::Class()
: m_member1
, m_member2
, m_member3
{};
(so with commas before member name), Sublime will fail to recognise m_member2 and m_member3 as identifiers. Therefore, it won’t highlight them, and disable options like “Jump to definition” for them. Meanwhile, when written this way:
Class::Class() :
m_member1,
m_member2,
m_member3
{};
everything works. It seems a bug to me. Could we get this sorted out?
Cheers!