commit f173f62c9af909ed9ecdbeb52cb4d20bb41a632c
parent 1993700bef701fdfea91ec4e43246a370c03d3a0
Author: Phil Runninger <PhilRunninger@users.noreply.github.com>
Date: Thu, 22 Sep 2016 15:43:19 -0400
Merge pull request #546 from gwilk/master
changed arrows for NERDTreeDirArrowExpandable and NERDTreeDirArrowCol…
Diffstat:
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/README.markdown b/README.markdown
@@ -134,5 +134,5 @@ See here: https://github.com/scrooloose/nerdtree/issues/433#issuecomment-9259069
Use these variables in your vimrc. Note that below are default arrow symbols
- let g:NERDTreeDirArrowExpandable = '▸'
- let g:NERDTreeDirArrowCollapsible = '▾'
+ let g:NERDTreeDirArrowExpandable = '►'
+ let g:NERDTreeDirArrowCollapsible = '▼'
diff --git a/plugin/NERD_tree.vim b/plugin/NERD_tree.vim
@@ -68,8 +68,8 @@ call s:initVariable("g:NERDTreeShowLineNumbers", 0)
call s:initVariable("g:NERDTreeSortDirs", 1)
if !nerdtree#runningWindows()
- call s:initVariable("g:NERDTreeDirArrowExpandable", "▸")
- call s:initVariable("g:NERDTreeDirArrowCollapsible", "▾")
+ call s:initVariable("g:NERDTreeDirArrowExpandable", "►")
+ call s:initVariable("g:NERDTreeDirArrowCollapsible", "▼")
else
call s:initVariable("g:NERDTreeDirArrowExpandable", "+")
call s:initVariable("g:NERDTreeDirArrowCollapsible", "~")