How to search a character backwards from the end of line in Vim
vim
Solution
You can use `$` to go to the end of the line. And then you can do a `F` from there to search backwards.
You can use `0` to go to the beginning of the line (first non whitespace). And then you can use `f` to search forwards.
`$F` search backwards from end of line. `0f` search forwards from beginning of line.
Problem
for the example text below, the curser is in the first space: This is the sentence. is it awesome that I can use command like `fe` to jump to the last e in the end of the line but unfortunately f and F only can search according to the current cursor position, Is there a command that I can search a character backwards from the end of line?