vote up 0 vote down star

Apparently Mac keyboards don't have an Insert key (or maybe they do but I can't find it). How can I get to insert mode in vim on a Mac?

flag

The great thing about vim is that it's designed to be used on a simple keyboard with nothing more than the alphanum keys and control and escape. It's great for touch typists because you never have to remove your hands from the home row. – Paul Tomblin Mar 17 at 13:25
I learned something different from this question -- The \<kdb\> tag. – sykora Mar 17 at 13:48

3 Answers

vote up 7 vote down check

If this is as simple a question as it seems, you merely press i.

link|flag
Great, thanks! I must admit, I'm both a vim newbie and a mac newbie so yeah, it was simple as that. Thanks! – DrJokepu Mar 17 at 13:19
Ah, well if you want some useful tips on vim, I suggest looking for "cheat sheets" online. Also, the $ % and ^ locations are your friend, and great time savers. Use them in combination with commands editing (delete, move, copy). – Nerdling Mar 17 at 13:20
Also the :help files within vim are endlessly comprehensive – rampion Mar 17 at 13:56
The vimtutor is also great for newbies. Simply type vimtutor on the command line, see also :help tutor – blixtor Mar 17 at 15:14
vote up 7 vote down

Vim enters the insert mode using i (or a for append), regardless of platform. Overwrite mode is only rarely entered using R. I've never used the insert key here.

link|flag
vote up 1 vote down

Pressing "i" brings you into insert mode within VIM.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.