nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit 28560e2e1be3a544c9b47c5f49410f0ab8fe4201
parent 4ebbb533c3faf2c480211db2b547972bb3b60f2b
Author: Grzegorz Wilk <Grzegorz.Wilk@dreamlab.pl>
Date:   Thu,  4 Feb 2016 11:24:45 +0100

changed arrows for NERDTreeDirArrowExpandable and NERDTreeDirArrowCollapsible

Diffstat:
MREADME.markdown | 4++--
Mplugin/NERD_tree.vim | 4++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/README.markdown b/README.markdown
@@ -118,5 +118,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
@@ -67,8 +67,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", "~")