nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit 635071dcc883f1da9034b4a011419e559620d377
parent 052b1f00a0ef14b0019f4d0cda9906ba93f9a0d6
Author: Phil Runninger <philrunninger@gmail.com>
Date:   Mon,  1 Jun 2020 01:51:27 -0400

Closes #1136. Allow concealed characters to show another character.

conceallevel=3 always hides the character, but conceallevel=2 allows an
alternate character to be displayed instead.

Diffstat:
Msyntax/nerdtree.vim | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/syntax/nerdtree.vim b/syntax/nerdtree.vim
@@ -22,7 +22,7 @@ syn match NERDTreeLinkDir #.*/ ->#me=e-3 containedin=NERDTreeDir
 "highlighting to conceal the delimiter around the file/dir name
 if has('conceal')
     exec 'syn match NERDTreeNodeDelimiters #\%d' . char2nr(g:NERDTreeNodeDelimiter) . '# conceal containedin=ALL'
-    setlocal conceallevel=3 concealcursor=nvic
+    setlocal conceallevel=2 concealcursor=nvic
 else
     exec 'syn match NERDTreeNodeDelimiters #\%d' . char2nr(g:NERDTreeNodeDelimiter) . '# containedin=ALL'
     hi! link NERDTreeNodeDelimiters Ignore