File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ class RelativePath {
9999 }
100100 } else {
101101 this . _myGlob = new Glob ( this . _workspacePath + "/**/*.*" ,
102- { ignore : this . _configuration . get ( "ignore" ) } ,
102+ { ignore : this . _configuration . get ( "ignore" ) , dot : true , nodir : true } ,
103103 ( err , files ) => {
104104 if ( err ) {
105105 return ;
@@ -259,7 +259,7 @@ class RelativePath {
259259 // Don't filter on too many files. Show the input search box instead
260260 if ( disableQuickFilter ) {
261261 const placeHolder = `Found ${ this . _items . length } files. Enter the filter query. Consider adding more 'relativePath.ignore' settings.` ;
262- const input = window . showInputBox ( { placeHolder} ) ;
262+ const input = window . showInputBox ( { placeHolder } ) ;
263263 input . then ( val => {
264264 if ( val === undefined ) {
265265 // User pressed 'Escape'
You can’t perform that action at this time.
0 commit comments