Vim's modes enable Vim to have sane keyboard shortcuts instead of Cmd + Shift + whatever the hell next. In Normal mode, w
jumps to the next word. In Visual mode, w
highlights from current cursor position to the next word. In Insert mode, well w
types out the w character.
j
goes down instead of up - is this an arbitrary decision? I think not? My intuition says it's down instead of up, and k
is up instead of down, because we go down much more often then go up, and it makes sense to let the stronger middle finger do that.
Navigating up with k
skips to start of paragraph?? This surprised me. I also got annoyed quickly not being able to move up a line by hitting k
or h
(left), which you can do in a normal text processor. I'm sure there is a way to do this I don't know about... Yes! b
(move back one word, which is like the reverse of w
) does something like that.
Motions are commands that you use in Normal mode for navigating faster. _There must be a way to go back