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

This commit is contained in:
anthony bushong
2025-09-26 13:05:15 -07:00
committed by GitHub
parent e909993dd1
commit 0d22b22c82
4 changed files with 159 additions and 6 deletions

View File

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