Fork me on GitHub

11/21/2010

幫 vim 加上 NERDtree 檔案系統瀏覽功能

一般 IDE 都會有一個類似檔案總館的樹狀資料結構,vim 也可以透過 NERDTree 這個 plugin 達成!

1. 下載 NERDTree

2. 解壓縮至 ~/.vim 資料夾當中,將對應的檔案放到對應的資料夾底下,沒有該資料夾則自行創建

3. 重新啟動 vim

一些使用的技巧如下:

1. 使用 :NERDTreeToggle 開啟/關閉 NERDTree 視窗,也可以設定對應的快速鍵來達成
map :NERDTreeToggle

2. 用 Ctrl + ww 來切換 NERDTree 和原始碼視窗

3. 在 NERDTree 當中用 t 使用新分頁開啟檔案並跳轉過去,使用 T 新分頁開啟檔案但不跳轉過去

其他:

Press i to open the file in a new horizontal split.
Press s to open the file in a new vertical split.
Press p to go to parent directory.
Press r to refresh the current directory.

參考資料
Command Center: Vim Plugins You Should Know About: NERDTree

...

No comments:

Post a Comment