When my code hits a breakpoint and i press F5 to continue the code execution, Visual Studio often adds a tab character at the beginning of line as if i had pressed the Tab key on my keyboard.
for example:
if (my_condition){ <--- my breakpoint is here // my code}
becomes :
if (my_condition) { <--- my breakpoint is here // my code}
Now, there is a Tab character before the { character. It adds another and another every time my breakpoint is hit and i press F5 to continue the execution. It doesnt happen every single time, but quite often and the issue is driving me insane.
I havent found anything online about this issue.