From 121607b351cd5c72d781630f2e76f1b633e79df6 Mon Sep 17 00:00:00 2001 From: "A.G. Russell Knives" Date: Thu, 14 Jun 2012 09:57:24 -0500 Subject: [PATCH] ignore wildignore setting --- plugin/NERD_tree.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/NERD_tree.vim b/plugin/NERD_tree.vim index 05c4b46..b3daada 100644 --- a/plugin/NERD_tree.vim +++ b/plugin/NERD_tree.vim @@ -1617,7 +1617,7 @@ function! s:TreeDirNode._initChildren(silent) "get an array of all the files in the nodes dir let dir = self.path let globDir = dir.str({'format': 'Glob'}) - let filesStr = globpath(globDir, '*') . "\n" . globpath(globDir, '.*') + let filesStr = globpath(globDir, '*',1) . "\n" . globpath(globDir, '.*',1) let files = split(filesStr, "\n") if !a:silent && len(files) > g:NERDTreeNotificationThreshold