commit 64c3a6aed3e54d48a85e42aad6db3c6baac44f3c
parent 8d005db94f8d1a214d172aeb1008d016c3d201e2
Author: Phil Runninger (mac) <prunninger@vhtcx.com>
Date: Mon, 12 Nov 2018 11:17:20 -0500
Change the containedin to ALL to conceal delmiter after filename.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/syntax/nerdtree.vim b/syntax/nerdtree.vim
@@ -38,10 +38,10 @@ syn match NERDTreeFlags #\[.\]# containedin=NERDTreeDir
"highlighing to conceal the delimiter around the file/dir name
if has("conceal")
- exec 'syn match NERDTreeNodeDelimiters #' . g:NERDTreeNodeDelimiter . '# conceal containedin=NERDTreeFile,NERDTreeLinkFile,NERDTreeExecFile,NERDTreeRO,NERDTreeDir'
+ exec 'syn match NERDTreeNodeDelimiters #' . g:NERDTreeNodeDelimiter . '# conceal containedin=ALL'
setlocal conceallevel=3 concealcursor=nvic
else
- exec 'syn match NERDTreeNodeDelimiters #' . g:NERDTreeNodeDelimiter . '# containedin=NERDTreeFile,NERDTreeLinkFile,NERDTreeExecFile,NERDTreeRO,NERDTreeDir'
+ exec 'syn match NERDTreeNodeDelimiters #' . g:NERDTreeNodeDelimiter . '# containedin=ALL'
hi! link NERDTreeNodeDelimiters Ignore
endif