From 28560e2e1be3a544c9b47c5f49410f0ab8fe4201 Mon Sep 17 00:00:00 2001 From: Grzegorz Wilk Date: Thu, 4 Feb 2016 11:24:45 +0100 Subject: [PATCH] changed arrows for NERDTreeDirArrowExpandable and NERDTreeDirArrowCollapsible --- README.markdown | 4 ++-- plugin/NERD_tree.vim | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.markdown b/README.markdown index f4ca8607..15c35e9d 100644 --- 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 index bbcc55f6..e6bae4f8 100644 --- 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", "~")