In Vim, after I wrote this :
int[] no={1,2,3,4,5,6}
I've changed my mind and wanted to make it String like this :
String[] no={"1","2","3","4","5","6"};
It is easy once you move your hands to arrow keys and stay in insert mode. Otherwise you need lots of esc key presses. What is the "Vim way" of doing this?
(there were similar questions, but I think this specific example decently demonstrates the need to an easy way of traversing in insert mode.)