gpt4 book ai didi

vim - 如何在 Vim 自动完成后自动删除预览窗口?

转载 作者:行者123 更新时间:2023-12-03 05:01:35 25 4
gpt4 key购买 nike

我正在使用omnifunc=pythoncomplete 。自动完成单词(例如 os.<something> )时,我会按预期获得符合条件的类成员和函数的列表,以及包含有关所选成员或函数的文档的暂存缓冲区预览窗口。这很棒,但是选择我想要的功能后,预览窗口仍然存在。

我可以用:pc摆脱它,但我希望它在我选择我的函数(la Eclipse)后自动消失。我玩过 completeopt但没有效果。

最佳答案

将以下内容放入您的 vimrc 中:

" If you prefer the Omni-Completion tip window to close when a selection is
" made, these lines close it on movement in insert mode or when leaving
" insert mode
autocmd CursorMovedI * if pumvisible() == 0|pclose|endif
autocmd InsertLeave * if pumvisible() == 0|pclose|endif

关于vim - 如何在 Vim 自动完成后自动删除预览窗口?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3105307/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com