Reputation: 63
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???
Upvotes: 6
Views: 4548
Reputation: 41378
If all you want to do is disable the tab mapping just do:
:iunmap <Tab>
Upvotes: 3
Reputation: 11337
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.
Upvotes: 17