简体   繁体   中英

gvim tab key doesn't work

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???

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.

如果您只想禁用选项卡映射,请执行以下操作:

:iunmap <Tab>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM