正如你所看到的,vim会在顶部弹出一个功能完成定义的窗口(我不知道它的名字是什么......),我可以把它移到底部吗?
答案 0 :(得分:2)
答案 1 :(得分:0)
将以下脚本添加到vimrc文件
"Preview window on the bottom of vim
function! PreviewDown()
if !&previewwindow
silent! wincmd P
endif
if &previewwindow
silent! wincmd J
silent! wincmd p
endif
endf
autocmd BufWinEnter * call PreviewDown()