I = I + 2 is a total of 5 letters typing (not counting spaces, which will auto format themselves).
_INC I, 2 is 7 letters typing...
I don't see any improvement here. In many cases it's not saving any typing. It's not as BASIC to read/understand. Even in cases with long variable names, it saves very little time/work (just copy/paste the variable name to the other side of the equal sign if needed).
What I'd love to see is an ANY type for SUBS/FUNCTIONS, then you could do this easily yourself:
INC I, 2
SUB INC (var AS ANY, amount)
var = var + amount
END SUB
With var defined AS ANY, it'll pass values back regardless to what data type you send to it, allowing for easy creation of such routines for those who want them.