Is there a way to put the comment character at the very beginning of the line, before any spaces, e.g., instead of having comments inserted like this
// if (b != 0)
// if (a > b)
// cout << a << endl;
it should be like this
// if (b != 0)
// if (a > b)
// cout << a << endl;
The only things I see in the doc are NERDSpaceDelims and NERDRemoveExtraSpaces, which I've tried toggling and don't seem to help this issue.