commit c36aaf55f82f7d6669c6df18b74dce3822288cb7
parent 6e7960ba94fa890352337ecce2c71e27f0208fe2
Author: Martin Grenfell <martin_grenfell@msn.com>
Date: Fri, 16 May 2008 12:22:23 +1200
bugfix: process files with single letter extension
dont ignore files like foo.c !
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugin/NERD_tree.vim b/plugin/NERD_tree.vim
@@ -566,7 +566,7 @@ function! s:oTreeDirNode.InitChildren(silent) dict
"filter out the .. and . directories
"Note: we must match .. AND ../ cos sometimes the globpath returns
"../ for path with strange chars (eg $)
- if i !~ '\.\..\?$' && i !~ '\..\?$'
+ if i !~ '\.\.\/\?$' && i !~ '\.\/\?$'
"put the next file in a new node and attach it
try