Parameterised Movements:
- /[Regexp] - Go to the next occurence of the (Vim) regular expression [Regexp]
- ?[Regexp] - Previous occurence of regexp.
-
- Use n and N to move to the next or previous matches.
- f[Char] - the next occurence of [Char] on the current line.
- F[Char] - previous occurence
- t[Char] - one character before the next occurence
- T[Char] - previous one character.