Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在编写 Python 代码时,我喜欢 Vim 的omnicompletion 功能,但我不希望 Scratch Window 在顶部弹出。
我怎样才能禁用它?
(我正在使用 gVim 7.3)
此行为由选项preview值中的存在定义。'completeopt'
preview
'completeopt'
默认值为:
menu,preview
要删除preview,只需将此行添加到您的~/.vimrc或修改现有completeopt行:
~/.vimrc
completeopt
set completeopt-=preview
如果您不太介意预览窗口,但想轻松关闭它,可以使用:pclose命令或CTRL-W z键盘组合查看:help :pclose。
:pclose
CTRL-W z
:help :pclose