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 configure Vim to find a tags file by searching up through parent directories automatically?
By default, Vim only looks for a tags file in the current directory.
category:
config
tags:
#config
#tags
#navigation
#ex-commands
How do I write an Ex range where the second address is evaluated relative to the first match instead of the cursor?
In Vim's range notation, a semicolon (;) between two addresses makes the second address relative to the line the first address matched, not to the current curso
category:
command-line
tags:
#command-line
#ex-commands
#search
#ranges