How to enter from command mode to insertion mode?

Answer Posted / ali ahsan

There are several ways to put vi into insert mode

'i' command put you into insert mode with inputting text
to the left of the cursor.

'I' command put you into insert mode with inputting text
starts at the beginning of the current line.

'a' command put text to the right of the cursor.

'A' command put text at the end of the current line.

'o' command opens a line below the current line
and puts you in insert mode.

'O' command opens a line above the current line
and puts you in insert mode.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

HOW WE CAN MAKE THE DLIEVERY WHICH IS BLOCKED DUE TO CREDIT LIMIT.

2380


what is the command used to append to buffer?

2084