In column mode, if I have code like this (pipe sign | represents where the multi-line cursor is):
(A)
public int|
public int|
public int|
public int|
And I want to hit tab to continue input like this:
public int m_var;|
public int m_var;|
public int m_var;|
public int m_var;|
With the ultimate intention of creating this:
public int m_var1;
public int m_var2;
public int m_var3;
public int m_var4;
When I hit tab from (A) above, instead of tabbing over on the line, it moves like this (pressing tab twice, for example):
public int|
public int|
public int|
public int|
It moves the whole line over, rather than inserting tabs in the middle of the line.
I can't find a setting to change it, nor anything online. Is there some key combo to insert tabs there rather than shifting the whole line?