diff --git a/.changes/next-release/bugfix-9e0be536-a758-466e-8b65-ab2f50331ecd.json b/.changes/next-release/bugfix-9e0be536-a758-466e-8b65-ab2f50331ecd.json new file mode 100644 index 00000000000..580756497ed --- /dev/null +++ b/.changes/next-release/bugfix-9e0be536-a758-466e-8b65-ab2f50331ecd.json @@ -0,0 +1,4 @@ +{ + "type" : "bugfix", + "description" : "Correct search text for Amazon Q inline suggestion keybindings" +} \ No newline at end of file diff --git a/plugins/amazonq/codewhisperer/jetbrains-community/src/software/aws/toolkits/jetbrains/services/codewhisperer/settings/CodeWhispererConfigurable.kt b/plugins/amazonq/codewhisperer/jetbrains-community/src/software/aws/toolkits/jetbrains/services/codewhisperer/settings/CodeWhispererConfigurable.kt index 8aaf55a7171..071f7505d33 100644 --- a/plugins/amazonq/codewhisperer/jetbrains-community/src/software/aws/toolkits/jetbrains/services/codewhisperer/settings/CodeWhispererConfigurable.kt +++ b/plugins/amazonq/codewhisperer/jetbrains-community/src/software/aws/toolkits/jetbrains/services/codewhisperer/settings/CodeWhispererConfigurable.kt @@ -209,6 +209,6 @@ class CodeWhispererConfigurable(private val project: Project) : } companion object { - private const val Q_INLINE_KEYBINDING_SEARCH_TEXT = "inline suggestion" + private const val Q_INLINE_KEYBINDING_SEARCH_TEXT = "Amazon Q inline suggestion" } }