Hello, I recently started to program in java with sublime text,
I want to when i write “for” and press TAB, it automatically write this :
for (int i = 0; i<4; i++) {
}
I can already do it with a new Snippet, but what i want is : When i write an another “for” in the first “for”
it paste the same thing but change the variable “i” to an another one ( “j” then “k”, “l”, “m” …)
Is there a way to do this ?