c is the change operator. cw changes a word; cc changes a line; C changes to end of line. S and s are short forms that change a whole line and a single character respectively.
c is what d-then-i would be if you didn't have to think. It deletes the same range d would, and drops you straight into Insert mode at that spot. Then Esc closes the change as one undoable, dot-repeatable unit.
Change a word
Key
Note
c
w
= c$ (change to end of line)
Key
Note
C
Change current line (linewise)
Key
Note
c
c
= cc (change whole line)
Key
Note
S
Substitute character (= cl)
Key
Note
s
cw โ change a wordC โ change to end of linecc / S โ change a lines โ substitute a char