Text Deletion Command

x    -Deletes current character

dd    -Deletes current line

dw    -Deletes current words

d)    -Deletes the rest of the current sentence

D, d$    -Deletes from cursor to the end of line

P    -Puts back previous  deleted text

 

Text Insertion Command

a    -Append text after cursor

A    -Appends text at the end of the line

i    -Inserts text before cursor

I    -Inserts test at the beginning of the line

o    -Opens new line below the current line for text insertion

O    -Opens new line above the current line for text insertion

DEL    -Overwrites last characters during text insertion

ESC    -Stop text insertion. All this command will be terminated with ESC key