Skip to content

Commit

Permalink
Merge master into feature/cwltail
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-toolkit-automation authored Nov 7, 2024
2 parents 50cbeee + d4d1ae0 commit ec63b88
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type": "Breaking Change",
"description": "Change focus chat keybind to win+alt+i on Windows, cmd+alt+i on macOS, and meta+alt+i on Linux"
}
6 changes: 3 additions & 3 deletions packages/amazonq/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -609,9 +609,9 @@
"keybindings": [
{
"command": "_aws.amazonq.focusChat.keybinding",
"win": "ctrl+win+i",
"mac": "ctrl+cmd+i",
"linux": "ctrl+meta+i"
"win": "win+alt+i",
"mac": "cmd+alt+i",
"linux": "meta+alt+i"
},
{
"command": "aws.amazonq.explainCode",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,7 @@ export class InlineChatController {
}
}
if (chatEvent.error) {
getLogger().error('generateAssistantResponse stream error: %s', chatEvent.error)
await this.rejectAllChanges(this.task, false)
void vscode.window.showErrorMessage(`Amazon Q: ${chatEvent.error.message}`)
await this.updateTaskAndLenses(this.task, TaskState.Complete)
Expand Down

0 comments on commit ec63b88

Please sign in to comment.