Assume you have foo
in the document, and the cursor is on the f
.
Now, pressing rb
will change this to boo
, and you are back in command mode. Pressing sb
will accomplish the same, but you are in insert mode and can insert more characters. Finally, c
requires some kind of motion; e.g. you can type cw
to remove the whole word and enter insert mode. On the other hand, cl
is essentially the same as s
.