vim設定檔管理WM和taglist

來源:互聯網
上載者:User

一、進入vim自動開啟winmanager

這個功能作為可選功能,我們可以在vimrc中設定:

"在進入vim時自動開啟winmanager

let g:AutoOpenWinManager = 1
就可以讓winmanager自動開啟。
在winmanager.vim中修改:

"set auto open Winmanager

if g:AutoOpenWinManager

autocmd VimEnter * nested call s:StartWindowsManager()|1wincmd w
endif

二、退出緩衝區時,自動結束vim

這個功能是參考了taglist的自動結束功能,在taglist.vim中修改的。

函數:function! s:Tlist_Window_Exit_Only_Window()中的winbunr(2)改為winbunr(3),即只剩2個視窗時關閉,考慮到2個視窗肯定是同時存

在,所以這樣還是可行的:

function! s:Tlist_Window_Exit_Only_Window()

" Before quitting Vim, delete the taglist buffer so that

" the '0 mark is correctly set to the previous buffer.

if v:version < 700

if winbufnr(3) == -1

bdelete

quit

endif

else

if winbufnr(3) == -1

if tabpagenr('$') == 1

" Only one tag page is present

bdelete

quit

else

" More than one tab page is present. Close only the current

" tab page

close

endif

endif

endif

endfunction
同時在vimrc中需要設定:

let Tlist_Exit_OnlyWindow=1

winmanager內建的fileexplorer這個外掛程式實在是比較差。最重要的一點是fileexplorer不能自動更新,如果通過其他的途徑修改了檔案夾

中的內容,fileexplorer是不會顯示的。相對而言Nerd_Tree功能就比較強大了。下面要把Nerd_Tree加入winmanager。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.