Using a count to repeat motions
All the things we’ve learned in the past few sections can be described as ‘motions’. A motion is any command that moves the cursor
Some motions can be supplied with a count, which usually tells Vim how many times to repeat the movement. For example, the j command (for moving the cursor downwards) accepts a count with tells it how many positions to move the cursor. If you type 10j, Vim will move the cursor ten lines down.
Counts work with the character jumps from the last step too: 2fX jumps to the second X on the right, and 2; repeats the last f motion twice.
Work through the checklist below — each motion is a single count-powered stride.