Minor but irritating bug: When typing in class member initialization lists over multiple lines and starting each line with a comma, the comma gets incorrectly auto-indented to the beginning of the line. 

Result:
class Potato
{
    Potato()
        : _spud(0.0f)
,        _tots(42)
    {
    }
    float _spud;
    int _tots;
};
Expected result:
class Potato
{
    Potato()
        : _spud(0.0f)
        , _tots(42)
    {
    }
    float _spud;
    int _tots;
};
This started happening in the last 1-2-ish updates of VAX, using VS2019. I'm about certain it's VAX related as disabling it makes the issue go away.