Links: Vim

Yes, Vim has grammar, and it probably is one of the most interesting parts about it, but if you didn’t like English at school don’t worry, you can also see this as a sort of programming language.

To understand this, we’ll divide Vim commands in 3 groups: Verbs, Modifiers and Nouns.

Verbs

This are mostly Editing commands

commanddescription
xdelete character under cursor
rreplace character under cursor
cchange
yyank (copy)
ddelete
ppaste
vvisually select

Modifiers

commanddescription
iinside
aaround
NUMany number (0,1,2..)
tsearches for something and stops before it (to —)
fsearches for something and lands on it (find)
/find a string

Noun

This are mostly Movement commands

commanddescription
wstart of next word
bstart of previous word (before)
eend of word
ssentence
pparagraph
ttag (HTML)
bcode block
h,j,k,lleft, down, up, right
$end of line
0start of line

Make Sentences

You can use the number modifier with any command to repeat it set number of times. For example 2w will move the cursor two words instead of one.
Now with a verb, d2w will delete the current and next word.
Here you have some other examples:

commanddescription
vapVisually select this paragraph (visual around paragraph)
ci”Change text inside quotes
ca”Change text around quotes (includes quotes)
dt,Delete text until the next coma on the current line
djDelete this and the line below
d/somethingDelete text until the next search that matches “something”