2013-05-04 24 views

回答

2

把下面一行在你的vimrc。 (Relevant help page

set splitbelow 

这会导致所有水平窗口拆分放在底部。

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()