Re: Ctl key mapping problems

2006-08-01 Thread Vigil

I'm trying to remap some keys from my vimrc file but am having problems.
What I want to do is the following: have vim print the character '\'
when I press 'Ctl-e'.


imap c-e \
nmap c-e \
cmap c-e \

These all work for me.

--

.


Re: Ctl key mapping problems

2006-08-01 Thread Benji Fisher
On Sun, Jul 30, 2006 at 06:49:26PM -0400, Siegmuund Siegmuundsson wrote:
 Hello all.
 
 I'm trying to remap some keys from my vimrc file but am having problems.
 What I want to do is the following: have vim print the character '\'
 when I press 'Ctl-e'.
 In my vimrc file I inserted:
 
 imap C-e C-v92
 cmap C-e C-v92
 nmap C-e C-v92
 
 However, nothing happens. I also tried to remap 'Esc' to 'Ctl-p', by writing
 imap C-p ESC
 cmap C-p ESC
 nmap C-p ESC
 
 with no better luck.
 However, I did successfully remap it to TAB with
 
 imap TAB ESC
 cmap TAB ESC
 nmap TAB ESC
 
 Any thoughts on what might be going wrong with the Ctl-key mappings?
 Best,
 S.

:imap C-e C-v092

seems to work.

:help i_CTRL-V_digit

HTH --Benji Fisher


Ctl key mapping problems

2006-07-30 Thread Siegmuund Siegmuundsson

Hello all.

I'm trying to remap some keys from my vimrc file but am having problems.
What I want to do is the following: have vim print the character '\'
when I press 'Ctl-e'.
In my vimrc file I inserted:

imap C-e C-v92
cmap C-e C-v92
nmap C-e C-v92

However, nothing happens. I also tried to remap 'Esc' to 'Ctl-p', by writing
imap C-p ESC
cmap C-p ESC
nmap C-p ESC

with no better luck.
However, I did successfully remap it to TAB with

imap TAB ESC
cmap TAB ESC
nmap TAB ESC

Any thoughts on what might be going wrong with the Ctl-key mappings?
Best,
S.