Tip49: Find by Character

January 12, 2021 ยท View on GitHub

f{char}

search for the specified character, starting with the cursor position and continuing to the end of the current line.

tip49_1

tip49_2

;

repeat f command

,

repeat the last f command search but in the opposite direction.

tip49_3

Character Searches Can Include or Exclude the Target

tip49_4

t{char}, T{char}: searching till the specified character. The cursor stops one character before{char}. f{char}, F{char}: position the cursor on top of the specified character.

tip49_5 after f,, we want to delete all of the text until the end of the sentence.

Tip48 Tip50