Added global variables for changing default arrows

g:NERDTreeDirArrowExpandable
g:NERDTreeDirArrowCollapsable
This commit is contained in:
Igor Tatarintsev
2015-09-11 23:52:37 +06:00
parent 188bd92658
commit dc29ec2db3
6 changed files with 10 additions and 10 deletions

View File

@@ -383,7 +383,7 @@ function! s:TreeFileNode._renderToString(depth, drawText, vertMap, isLastChild)
if self.path.isDirectory
if self.isOpen
if g:NERDTreeDirArrows
let treeParts = treeParts . g:NERDTreeDirArrowCollapsable . ' '
let treeParts = treeParts . g:NERDTreeDirArrowCollapsible . ' '
else
let treeParts = treeParts . '~'
endif