1. ホーム
  2. vim

[解決済み] NerdTree - ツリー内のファイルを表示する

2022-09-17 21:18:55

質問

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

TextMateの'Reveal file in Drawer' - Ctrl+Command+R のようなものです。

どのように解決するのですか?

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>