How to enter from command mode to insertion mode?
Answers were Sorted based on User's Feedback
Answer / gopal
There are several commands that put the VI editor into
insert mode. The most commonly used commands to get into
insert mode are a and i.
Is This Answer Correct ? | 10 Yes | 1 No |
Answer / 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 |
Answer / ravi
By default editor is command mode by default Whene you press i it goes to insert mode
Is This Answer Correct ? | 0 Yes | 0 No |
what is the command used to set margin in vi editor?
How to append a file to current file?
what are the different commands used to quit from the vi editor?
What is the command used to replace many characters?
Which command is used to replace many characters?
What does the /text command do?
How to return to shell without leaving vi editor?
How to create a .exrc file in vi editor?
what are the different delete commands used in vi editor?
what is the command used to delete current line in vi editor?
What is the difference between lettered buffer and temporary buffer?
what is the command used to append text after current line?