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 format of vi command?
What is the command used to replace many characters?
What is the difference between ZZ and :wq commands?
what are the different commands used to quit from the vi editor?
What is the command used to display line numbers in vi editor?
How to append a file to current file?
what is the command used to append to buffer?
What does the /text command do?
what is the command used to set margin in vi editor?
What is the difference between lettered buffer and temporary buffer?
what is the command used to delete current line in vi editor?
How to enter from command mode to insertion mode?