Update the documentation to better explain the delimiter character.

This commit is contained in:
Phil Runninger (mac) 2019-02-18 15:52:23 -05:00
parent cce52fb9c5
commit 4ef9967e29

View File

@ -1165,10 +1165,17 @@ to choose a character that won't appear in your filenames or any of the flags
set by your installed NERDTree plugins. The suggestions below are but a few of
the many possibilities. Remember to use double quotes when specifying by hex
or Unicode. >
let NERDTreeNodeDelimiter='😀'
let NERDTreeNodeDelimiter="\u00a0"
let NERDTreeNodeDelimiter="\xFF"
let NERDTreeNodeDelimiter="\u00a0" "non-breaking space
let NERDTreeNodeDelimiter="\u00b7" "middle dot
<
The delimiter character is hidden by setting 'conceallevel' to 3. If you use
autocommands, make sure none of them change that setting in the NERDTree_*
windows.
If your vim was not compiled with the +conceal feature, NERDTree will use the
Ignore highlight group, which doesn't hide the BELL character. In this
situation, you will need to override the delimiter character as described
above.
==============================================================================
4. The NERD tree API *NERDTreeAPI*