nerdtree

A tree explorer plugin for vim.
Index Commits Files Refs
commit dee152d08f0deecf012c0ea49a9ff3dd364e239c
parent eee431dbd44111c858c6d33ffd366cae1f17f8b3
Author: cntoplolicon <cntoplolicon@gmail.com>
Date:   Fri, 23 Dec 2016 17:51:36 +0800

correct NERDTreeIgnore pattern in doc

Diffstat:
Mdoc/NERD_tree.txt | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/NERD_tree.txt b/doc/NERD_tree.txt
@@ -806,7 +806,7 @@ then all files ending in .vim or ~ will be ignored.
 There are 2 magic flags that can be appended to the end of each regular
 expression to specify that the regex should match only files or only dirs.
 These flags are "[[dir]]" and "[[file]]". Example: >
-    let NERDTreeIgnore=['.d$[[dir]]', '.o$[[file]]']
+    let NERDTreeIgnore=['\.d$[[dir]]', '\.o$[[file]]']
 <
 This will cause all dirs ending in ".d" to be ignored and all files ending in
 ".o" to be ignored.