Fix globbyLevelByLevel and increase suggestions file limit

This commit is contained in:
Saoud Rizwan
2024-09-20 10:09:40 -04:00
parent 5acc4d05c5
commit f001aad306
2 changed files with 30 additions and 16 deletions

View File

@@ -21,7 +21,7 @@ class WorkspaceTracker {
if (!cwd) {
return
}
const [files, _] = await listFiles(cwd, true, 500)
const [files, _] = await listFiles(cwd, true, 1_000)
files.forEach((file) => this.filePaths.add(this.normalizeFilePath(file)))
this.workspaceDidUpdate()
}