fix(core): auto-correct file paths in smart edit where possible (x-platform) (#10018)

This commit is contained in:
anthony bushong
2025-09-27 16:16:51 -07:00
committed by GitHub
parent 331e2ce45d
commit 1bd75f060d
4 changed files with 153 additions and 4 deletions

View File

@@ -44,4 +44,7 @@ export class AcpFileSystemService implements FileSystemService {
sessionId: this.sessionId,
});
}
findFiles(fileName: string, searchPaths: readonly string[]): string[] {
return this.fallback.findFiles(fileName, searchPaths);
}
}