tags:

views:

65

answers:

2

I have just started using vim and am using an existing .vimrc and .gvimrc. It works great, except the Tab key doesn't tab...it brings up a code completion plug-in. I don't know where to start as I am brand new to vim. How can I make the Tab key generate a tab???

+4  A: 

First, find out which script or plugin changed the meaning of your key:

:verbose imap <Tab>

Then disable the offending plugin by removing it from your ~/.vim/plugins.

Marius Gedminas
thx, that did it!
CocoB
@CocoB: if that fixed it for you, consider accepting the answer.
Dummy00001
A: 

If all you want to do is disable the tab mapping just do:

:iunmap <Tab>
JSBangs