This is my personal cheat sheet of VIM keybings. Many refer to the vanilla bindings for vim, but other are my own custom bindings.
| Binding | Effect |
| w
| Move to the beginning of the next word |
| b
| Move to the beginning of the previous word |
| e
| Move to the end of the next word |
| Binding | Effect |
| t
/ T
| Till. Moves the cursor until a character |
| f
/ F
| Find. Moves the cursor to a character |
| {num}G
| Go to line {num}
|
| Binding | Effect |
| ;
/ ,
| When searching with t/T/f/F
it moves the cursor to the next match (;
) or to the previous match (,
) |