2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Vim: NERDTree plugin

Last updated at Posted at 2020-09-12
.vimrc
"dein.vim設定 -> プラグイン追加
+ call dein#add('preservim/nerdtree')
"nerdtreeのキーバインド
+ nnoremap <silent><C-e> :NERDTreeToggle<CR>
"隠しファイルの表示
+ let NERDTreeShowHidden=1
基本的な使い方
 "上のキーバインドが前提です。
 "ツリー表示 -> ツリー隠す(トグル)
c-w
 "ツリーと編集画面の移動
c-w w

ツリーのファイル上で -> o(enter) -> ファイルオープン
"-> 新しいタブは開かない -> 編集中ならスプリット表示される

ツリーのファイル上で -> t -> 新しいタブでファイルオープン

詳細な使い方はこちら!
vim-plugin NERDTree で開発効率をアップする!

LGTMお願いします!
モチベーションが上がります!

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?