I'm trying to map <c-y>,
(from zencoding-vim) to <c-m>
.
I tried:
map <C-m> <C-y>,
map <C-m> <C-y>,<cr>
But doesn't seems to be working. Maybe it's something with the comma?
It's not the comma, it's ctrlm which is the terminal control sequence for
return and the same as pressing the return key. Try typing ls
in your
terminal and press ctrlm. You'll run into the same problem trying to map
ctrlh, which is the terminal control sequence for backspace.
This is not a Vim issue since Vim can't distinguish between ctrlmand
return` key presses.
imap
for insert mode mapping nmap
for normal mode mapping, etc. I don't use zencoding and it works here with other mappings.
– Marco
Jul 26 '13 at 13:54