vote up 1 vote down star

TextMate has a feature where pressing Command-Return at any point inserts a new line below the current line placing your cursor at the beginning of the new line. This works much (exactly?) like pressing 'o' while in command mode in Vim.

Is there a way to emulate this TextMate feature while in insert mode in Vim? The same question phrased differently: Can I make Cmd-Return in insert mode do what 'o' does in command mode?

flag

1 Answer

vote up 3 vote down check

Untested, since I don't use a Mac, tried with Ctrl-Return (<C-CR>). Ctrl-O executes a single command in normal mode.

:inoremap <D-CR> <C-O>o
link|flag
Awesome. That works! – dstrelau Oct 6 at 15:16

Your Answer

Get an OpenID
or

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