shigg
shigg

Reputation: 802

vim key mapping holding down 2 keys and enter

I want to map a key where pressing down shift+command and hit enter to insert blank line above the current line.How can I make it work? Currently I have this.

nmap <S-Enter> O<Esc>j

I am using MacVim

Upvotes: 2

Views: 574

Answers (1)

Ingo Karkat
Ingo Karkat

Reputation: 172758

Due to the way that the keyboard input is handled internally, this unfortunately isn't generally possible today, even in GVIM. Some key combinations, like Ctrl (named Command on Mac) + non-alphabetic cannot be mapped, and Ctrl + letter vs. Ctrl + Shift + letter cannot be distinguished. (Unless your terminal sends a distinct termcap code for it, which most don't.) In insert or command-line mode, try typing the key combination. If nothing happens / is inserted, you cannot use that key combination. This also applies to <Tab> / <C-I>, <CR> / <C-M> / <Esc> / <C-[> etc. (Only exception is <BS> / <C-H>.) This is a known pain point, and the subject of various discussions on vim_dev and the #vim IRC channel.

Some people (foremost Paul LeoNerd Evans) want to fix that (even for console Vim in terminals that support this), and have floated various proposals, cp. http://groups.google.com/group/vim_dev/browse_thread/thread/626e83fa4588b32a/bfbcb22f37a8a1f8

But as of today, no patches or volunteers have yet come forward, though many have expressed a desire to have this in a future Vim release.

Upvotes: 2

Related Questions