How do I jump to just before a specific character on the current line?
t{char}
The t{char} command moves the cursor forward to the character just before the next occurrence of {char} on the current line.
t{char}
The t{char} command moves the cursor forward to the character just before the next occurrence of {char} on the current line.
gg
The gg command moves the cursor to the first line of the file.
G
The G command moves the cursor to the last line of the file.
42G
The 42G command jumps the cursor directly to line 42 in the current file.
de
The de command deletes from the cursor position to the end of the current word.
%
The % command jumps to the matching bracket, parenthesis, or brace.
.
The .