How do I repeat or reverse inline character search with f, t, ; and , in Vim?
f{char} ; ,
The f, F, t, and T motions search for a character on the current line.
6 results for "f t character find"
f{char} ; ,
The f, F, t, and T motions search for a character on the current line.
; / ,
After using f, t, F, or T to jump to a character on the current line, pressing ; repeats the same search in the same direction, and , repeats it in the opposite
navigation #navigation #motions #normal-mode #editing #productivity
,
After using f, t, F, or T for single-character motion on a line, Vim lets you repeat that character search without retyping the target.
f{char}
The f{char} command moves the cursor forward to the next occurrence of {char} on the current line.
\d \w \s \a \l \u
How it works Vim provides shorthand character classes that save you from writing out full bracket expressions.
<C-n> / <C-p>
Vim has a powerful built-in completion system that requires zero plugins.