git-nerdtree


Ⅰ. 插件描述

NERDTree with git status support (DEPRECATED)

Ⅱ. 基本信息

创建日期:  2014-03-31
使用用户:  21
Github星:  66
插件作者:  Xuyuan Pang

Ⅲ. 安装方法

使用Vundle管理器安装

在你的.vimrc下添加:
Plugin 'xuyuanp/git-nerdtree'
… 然后在Vim中运行以下命令:
:source %
:PluginInstall

对于Vundle版本 < 0.10.2,请用上面的Bundle替换Plugin。

使用NeoBundle管理器安装

在你的.vimrc下添加:
NeoBundle 'xuyuanp/git-nerdtree'
… 然后在Vim中运行以下命令:
:source %
:NeoBundleInstall

使用VimPlug管理器安装

在你的.vimrc下添加:
Plug 'xuyuanp/git-nerdtree'
… 然后在Vim中运行以下命令:
:source %
:PlugInstall

使用Pathogen管理器安装

在终端中运行以下命令:
cd ~/.vim/bundle
git clone https://github.com/xuyuanp/git-nerdtree

Ⅳ. 文档说明

The git-NERDTree

Notice

This project WILL NOT be maintained any longer!

The new repo nerdtree-git-plugin does the same work and what's more it's not a fork version but a dependent plugin of NERDTree which means you should use it with NERDTree at the same time.

Thank you for your attention.

New Feature

Add git status support for NERDTree.You can indicate a file's git status, quickly see which files you have staged, unstaged and modified, or deleted in your project without any extra work.

Imgur

Indicators

  • / * : Untracked
  • / ~ : Modified in the working tree
  • / + : Staged in the index (Exclude Renamed status)
  • / » : Renamed
  • / = : Unmerged
  • / - : Deleted (This indicator can't be shown, as NERDTree doesn't display deleted files. I have no prefect idea to solve this problem currently.)
  • / × : Dirty (Only for directory)
  • / ø : Clean (Only for root directory)

Option let g:NERDTreeUseSimpleIndicator = 1 to show the simple indicator.

Key mapping

As the same as GitGutter plugin default.

  • ]c : Jump to next indicator
  • [c : Jump to prev indicator

You can set g:NERDTreeMapNextHunk and g:NERDTreeMapPrevHunk variables to your prefer keys. e.g.

let g:NERDTreeMapNextHunk = ",n"

let g:NERDTreeMapPrevHunk = ",p"

Status Refresh

Add, Delete, Move and Copy actions through the m menu will refresh git status indicators automatically.

File modified, stage or commit actions through vim-fugitive plugin won't active the status refreshing, this is because that NERDTree itself doesn't support auto refreshing function. You should press r or R to refresh the tree view by yourself after these actions.

Note

It's NOT a plugin of NERDTree, but an enhance version.

More Info

See details in https://github.com/scrooloose/nerdtree

添加新评论