commit 0b84d458d607f0326b7718c92ba20f2627f63342
parent fce10d1b101b0fc8cca4a46a43f129c32628c4e7
Author: Phil Runninger <PhilRunninger@users.noreply.github.com>
Date: Sat, 20 May 2017 03:26:05 -0400
Merge pull request #648 from cntoplolicon/master
correct NERDTreeIgnore pattern in doc
Diffstat:
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.