===================
A plugin of NERDTree showing svn status flags.
For Pathogen
git clone https://github.com/greggerz/nerdtree-svn-plugin.git ~/.vim/bundle/nerdtree-svn-plugin
Reload vim
For Vundle
Plugin 'scrooloose/nerdtree'
Plugin 'greggerz/nerdtree-svn-plugin'
For NeoBundle
NeoBundle 'scrooloose/nerdtree'
NeoBundle 'greggerz/nerdtree-svn-plugin'
For Plug
Plug 'scrooloose/nerdtree'
Plug 'greggerz/nerdtree-svn-plugin'
- Currently the plugin only works with the first column of the status output
- How do I customize the symbols?
let g:NERDTreeSvnIndicatorMapCustom = { \ 'Modified' : '✹', \ 'Addition' : '✚', \ 'Untracked' : '✭', \ 'Replaced' : '➜', \ 'Deleted' : '✖', \ 'Dirty' : '✗', \ 'Clean' : '✔︎', \ 'Ignored' : '☒', \ 'Missing' : '⁈', \ 'Conflict' : '⇏', \ 'Externals' : '↰', \ 'Unknown' : '?' \ }
- How do I get the
Ignored
status to show?let g:NERDTreeShowIgnoredStatus = 1
- scrooloose: Creating NERDTree
- Xuyuanp: Creating nerdtree-git-plugin
- All contributors to NERDTree and nerdtree-git-plugin