How do I repeat the last f, t, F, or T character search on a 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
category:
navigation
tags:
#navigation
#motions
#normal-mode
#editing
#productivity
How do I repeat or reverse inline character search with f, t, ; and , in Vim?
The f, F, t, and T motions search for a character on the current line.
category:
navigation
tags:
#navigation
#motions
#find
#inline-search
How do I jump to a specific character on the current line?
The f{char} command moves the cursor forward to the next occurrence of {char} on the current line.
category:
navigation
tags:
#navigation
#motions
#normal-mode
What are Vim's built-in character class shortcuts for search patterns?
How it works Vim provides shorthand character classes that save you from writing out full bracket expressions.
category:
search
tags:
#search
#normal-mode
#ex-commands
How do I auto-complete words in insert mode without any plugins?
Vim has a powerful built-in completion system that requires zero plugins.
category:
editing
tags:
#editing
#insert-mode
#completion
#productivity