简体   繁体   中英

Vim - Remove autocompletion menu

I use the SuperTab plugin and every time I tab to get some completion, if there is more than one possibility, a menu pops up under my cursor.
I would like to remove this menu, I removed set wildmenu from my vimrc but it doesn't work.

This is what I'm trying to get rid of:

在此处输入图片说明

You can remove that menu with:

:set completeopt-=menu
:set completeopt-=menuone

See :help completeopt .

But…

  • the inability to see the suggestions makes completion a lot less useful,
  • SuperTab may or may not care about those options.

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