2

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?

jviotti
  • 421

1 Answers1

1

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.

Marco
  • 33,548
  • Tried mapping to and and still the same problem. Maybe I'm missing something else? – jviotti Jul 26 '13 at 13:43
  • is usually the terminal control sequence for unstop output. is to stop output. –  Jul 26 '13 at 13:51
  • @jviotti Try to use the specified mappings 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