I'm trying to get away from using the arrow, but there is one thing that I haven't decided yet without using the arrow keys. Take this example:
var1 = "1"
var2 = "2"
var3 = "3"
var4 = "4"
Now I want this to be:
var_1 = "1"
var_2 = "2"
var_3 = "3"
var_4 = "4"
Using the arrows, I would just get var1, insert and add an underline, and then the down arrow and do the same. The problem with using hjkl is that I cannot be in insert mode, so I need to release, move down, paste ... repeat the repeat, which required more work. Is there any other way to do this?
source
share