nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit f26eaf83551631e683e339f00e2c97bd6e8356d7
parent 08773e1e74a622dcf401d95c6e2e578d7b86acf1
Author: Phil Runninger <PhilRunninger@users.noreply.github.com>
Date:   Tue,  4 Oct 2016 17:52:49 -0400

Merge pull request #625 from scrooloose/revert-546-master

Revert "changed arrows for NERDTreeDirArrowExpandable and NERDTreeDirArrowCol…"
Diffstat:
MREADME.markdown | 4++--
Mplugin/NERD_tree.vim | 4++--
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", "~")