Dimko  Desu
Dimko Desu

Reputation: 435

vim jump forward with <c-i> doesn't work for me too (snipmate)

I have the same problem as many others users. Jump back <C-o> works, but jump forward don't. I read same questions and answers but don't get any result.
I try :verbose map <C-I> command and get this:
verbose command result How to disable snipmate mappings?

Upvotes: 4

Views: 1606

Answers (1)

Ingo Karkat
Ingo Karkat

Reputation: 172520

First, if that isn't clear to you, <C-i> is the same as <Tab>; unfortunately, you cannot map them separately.

You screenshot shows that snipMate has grabbed <C-i> in visual and select mode; it needs those mappings to jump to the next snippet tab stop. You can change that by editing the snipMate file, but these mappings do not interfere with the normal-mode <C-i> mapping that you're concerned about.

In normal mode, you've remapped <C-i> / <Tab> to gt in your .vimrc; you need to re-assign or remove that to get back the original <C-i> command.

Upvotes: 6

Related Questions