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 4a39405 commit 3fe503aCopy full SHA for 3fe503a
server/aws-lsp-codewhisperer/src/language-server/agenticChat/agenticChatController.ts
@@ -1369,7 +1369,7 @@ export class AgenticChatController implements ChatHandlers {
1369
} else if (toolUse?.name === 'fsRead') {
1370
await this.#features.lsp.window.showDocument({ uri: params.filePath })
1371
} else {
1372
- const absolutePath = params.filePath ?? (await this.#resolveAbsolutePath(params.filePath))
+ const absolutePath = params.fullPath ?? (await this.#resolveAbsolutePath(params.filePath))
1373
if (absolutePath) {
1374
await this.#features.lsp.window.showDocument({ uri: absolutePath })
1375
}
0 commit comments