web-dev-qa-db-ja.com

NerdTree-ツリー内のファイルを明らかにする

NerdTreeディレクトリパネルに現在のファイルを表示するショートカットはありますか。

TextMate「引き出しにファイルを表示」のように-Ctrl + Command + R

92
Akshay Rawat

in:h NERDTree:

:NERDTreeFind                                                  :NERDTreeFind
    Find the current file in the tree. If no tree exists for the current tab,
    or the file is not under the current root, then initialize a new tree where
    the root is the directory of the current file.

デフォルトでは何にもバインドされていないと思うので、自分でキーバインドを行う必要があります。

nmap ,n :NERDTreeFind<CR>

と一緒に私の.vimrcに表示されるものです

nmap ,m :NERDTreeToggle<CR>
171
Thomas

これを確認してください。同期操作を自動化します。バッファーを変更するたびに、nerdtreeは自動的に更新されます(私は here から少し変更してコピーしました)

" Check if NERDTree is open or active
function! IsNERDTreeOpen()        
  return exists("t:NERDTreeBufName") && (bufwinnr(t:NERDTreeBufName) != -1)
endfunction

" Call NERDTreeFind iff NERDTree is active, current window contains a modifiable
" file, and we're not in vimdiff
function! SyncTree()
  if &modifiable && IsNERDTreeOpen() && strlen(expand('%')) > 0 && !&diff
    NERDTreeFind
    wincmd p
  endif
endfunction

" Highlight currently open buffer in NERDTree
autocmd BufEnter * call SyncTree()
17
Chen Rushan