Skip to content

Commit 2f72e8a

Browse files
committed
Activate Flare rerouting flag for agents, remove alternate entrypoint
1 parent 83e1a52 commit 2f72e8a

File tree

5 files changed

+5
-16
lines changed

5 files changed

+5
-16
lines changed

plugins/amazonq/chat/jetbrains-community/resources/META-INF/plugin-chat.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,6 @@
7272
<keyboard-shortcut keymap="$default" first-keystroke="meta alt A" />
7373
</action>
7474

75-
<action id="aws.toolkit.jetbrains.core.services.cwc.commands.GenerateUnitTestsAction"
76-
class="software.aws.toolkits.jetbrains.services.cwc.commands.GenerateUnitTestsAction">
77-
<keyboard-shortcut keymap="$default" first-keystroke="meta alt T" />
78-
</action>
79-
8075
<action id="aws.toolkit.jetbrains.core.services.cwc.commands.SendToPromptAction"
8176
class="software.aws.toolkits.jetbrains.services.cwc.commands.SendToPromptAction">
8277
<keyboard-shortcut keymap="$default" first-keystroke="meta alt S" />

plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/cwc/commands/GenerateUnitTestsAction.kt

Lines changed: 0 additions & 6 deletions
This file was deleted.

plugins/amazonq/mynah-ui/src/mynah-ui/ui/quickActions/handler.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -349,9 +349,9 @@ private handleDocCommand(chatPrompt: ChatPrompt, tabID: string, taskName: string
349349
* we have to manually create one if a testgen tab
350350
* wasn't previously created
351351
*/
352-
if (!tabID) {
353-
tabID = this.mynahUI?.updateStore('', {})
354-
}
352+
// if (!tabID) {
353+
// tabID = this.mynahUI?.updateStore('', {})
354+
// }
355355
const affectedTabId: string | undefined = this.addTab(tabID)
356356

357357
// if there is no test tab, open a new one

plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/model/ExtendedClientMetadata.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ data class DeveloperProfiles(
2525
val developerProfiles: Boolean,
2626
val mcp: Boolean,
2727
val pinnedContextEnabled: Boolean,
28+
val reroute: Boolean,
2829
)
2930

3031
data class WindowSettings(
@@ -65,6 +66,7 @@ fun createExtendedClientMetadata(project: Project): ExtendedClientMetadata {
6566
developerProfiles = true,
6667
mcp = true,
6768
pinnedContextEnabled = true,
69+
reroute = true,
6870
),
6971
window = WindowSettings(
7072
showSaveFileDialog = true

plugins/core/resources/resources/software/aws/toolkits/resources/MessagesBundle.properties

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ action.aws.toolkit.jetbrains.core.services.cwc.commands.ExplainCodeAction.descri
2020
action.aws.toolkit.jetbrains.core.services.cwc.commands.ExplainCodeAction.text=Explain Code
2121
action.aws.toolkit.jetbrains.core.services.cwc.commands.FixCodeAction.description=Fixes the selected code
2222
action.aws.toolkit.jetbrains.core.services.cwc.commands.FixCodeAction.text=Fix Code
23-
action.aws.toolkit.jetbrains.core.services.cwc.commands.GenerateUnitTestsAction.description=Generates unit tests for the selected code
24-
action.aws.toolkit.jetbrains.core.services.cwc.commands.GenerateUnitTestsAction.text=Generate Tests
2523
action.aws.toolkit.jetbrains.core.services.cwc.commands.OptimizeCodeAction.description=Optimizes the selected code
2624
action.aws.toolkit.jetbrains.core.services.cwc.commands.OptimizeCodeAction.text=Optimize Code
2725
action.aws.toolkit.jetbrains.core.services.cwc.commands.RefactorCodeAction.description=Refactors the selected code

0 commit comments

Comments
 (0)