I keep writing for loops today. They all have the format:
for(size_t szI = X; szI < Y; ++szI)
{
}
And I know that there are ways to record actions in vim. If X and Y can change, can I do something in vim to write a for loop as soon as I put X and Y in some way?
source
share