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
2010-07-26 15:18:47
thx, that did it!
CocoB
2010-07-26 15:20:33
@CocoB: if that fixed it for you, consider accepting the answer.
Dummy00001
2010-07-27 12:03:57
A:
If all you want to do is disable the tab mapping just do:
:iunmap <Tab>
JSBangs
2010-07-26 15:20:41