From 408f7a572c88167b3b99d060f36c4a5f6f6e9b78 Mon Sep 17 00:00:00 2001 From: Phil Runninger Date: Tue, 4 Oct 2016 17:52:12 -0400 Subject: [PATCH] =?UTF-8?q?Revert=20"changed=20arrows=20for=20NERDTreeDirA?= =?UTF-8?q?rrowExpandable=20and=20NERDTreeDirArrowCol=E2=80=A6"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.markdown | 4 ++-- plugin/NERD_tree.vim | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.markdown b/README.markdown index b25b97e..de28e05 100644 --- 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 index a27714f..451b431 100644 --- 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", "~")