Skip to content

Commit b88e534

Browse files
rapsalandsdawsbot
andauthored
✨ Show dotfiles in suggestions (#46)
Co-authored-by: daws.eth <[email protected]>
1 parent ea0e9cd commit b88e534

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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'

0 commit comments

Comments
 (0)