Skip to content

Commit

Permalink
✨ Show dotfiles in suggestions (#46)
Browse files Browse the repository at this point in the history
Co-authored-by: daws.eth <dawsonbotsford@gmail.com>
  • Loading branch information
rapsalands and dawsbot committed May 7, 2022
1 parent ea0e9cd commit b88e534
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class RelativePath {
}
} else {
this._myGlob = new Glob(this._workspacePath + "/**/*.*",
{ ignore: this._configuration.get("ignore") },
{ ignore: this._configuration.get("ignore"), dot: true, nodir: true },
(err, files) => {
if (err) {
return;
Expand Down Expand Up @@ -259,7 +259,7 @@ class RelativePath {
// Don't filter on too many files. Show the input search box instead
if (disableQuickFilter) {
const placeHolder = `Found ${this._items.length} files. Enter the filter query. Consider adding more 'relativePath.ignore' settings.`;
const input = window.showInputBox({placeHolder});
const input = window.showInputBox({ placeHolder });
input.then(val => {
if (val === undefined) {
// User pressed 'Escape'
Expand Down

0 comments on commit b88e534

Please sign in to comment.