Whenever I enter vim, there are 99% chance that I will go in insert mode and edit the file. Can I make vim always start in insert mode?
|
You can start vim like this:
If you want, you can edit the .bashrc file (if you are using bash) and add this line:
|
|||
|
|
|
You can use If you want this behavior by default, the best option is to use
in your |
||||
|
|
|
Additionally, there's something called "Easy mode", started from |
|||
|
|
You can, and it's very simple. The :startinsert command enters insert mode. (It is the exact command-line-mode counterpart to typing i in normal-mode.) Just drop it into your vimrc so it runs at startup. Unlike some of the other suggestions, this doesn't interfere with dropping back to normal-mode by ESC as normal. |
|||
|
|

vim, this is a well established (and time saving) habit. Withvim, however, the results of doing this are somewhat random - typically what you type will move you around a bit, accidentally switch to insert mode and the rest of what you type gets inserted in some random spot. Sometimes you delete stuff. To work out what happened takes a moment, and you often miss something. – drevicko Oct 8 '12 at 23:39