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.
在 neovim 中,当我的补全插件被触发时,它会在预览窗口中打印出方法签名
不过,预览窗口包含我想要禁用的行号。到目前为止,我虽然这会工作
function! Preview_func() if &pvw setlocal nonum endif endfunction autocmd * BufCreate call Preview_func()
但没有骰子。有任何想法吗?
在自动命令定义文件模式(这里: * )应该在 事件( BufCreate )之后出现;还基于您使用的自动完成插件,可能有一个预览窗口的入口或没有,所以还要检查WinEnter事件:
autocmd WinEnter * call Preview_func()