We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c991da5 commit b38e47cCopy full SHA for b38e47c
src/target/app.ts
@@ -1132,7 +1132,7 @@ let __pathSelector = async (
1132
}
1133
let dirFilter = dirent => {
1134
if (dirent.name.startsWith(".")) {
1135
- return input.startsWith(".") || showHidden
+ return input.includes(path.sep + ".") || showHidden
1136
1137
1138
return true
@@ -1181,7 +1181,7 @@ let __pathSelector = async (
1181
return
1182
1183
1184
- if (input.includes(path.sep + ".")) {
+ if (input.endsWith(path.sep + ".")) {
1185
let choices = await createPathChoices(
1186
startPath,
1187
() => true
0 commit comments