Skip to content

Commit 15efdd9

Browse files
authored
feat(amazonq): enable inline suggestions through flare by default (#7232)
## Problem We want to enable inline suggestions from flare on this branch ## Solution - enable it - leave the toggle setting so its easy to turn off/on to compare behaviours --- - Treat all work as PUBLIC. Private `feature/x` branches will not be squash-merged at release time. - Your code changes must meet the guidelines in [CONTRIBUTING.md](https://github.com/aws/aws-toolkit-vscode/blob/master/CONTRIBUTING.md#guidelines). - License: I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent f1f5a36 commit 15efdd9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/amazonq/src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ export async function activateAmazonQCommon(context: vscode.ExtensionContext, is
129129
// for AL2, start LSP if glibc patch is found
130130
await activateAmazonqLsp(context)
131131
}
132-
if (!Experiments.instance.get('amazonqLSPInline', false)) {
132+
if (!Experiments.instance.get('amazonqLSPInline', true)) {
133133
await activateInlineCompletion()
134134
}
135135

packages/amazonq/src/lsp/client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ export async function startLanguageServer(
164164
return client.onReady().then(async () => {
165165
await auth.refreshConnection()
166166

167-
if (Experiments.instance.get('amazonqLSPInline', false)) {
167+
if (Experiments.instance.get('amazonqLSPInline', true)) {
168168
const inlineManager = new InlineCompletionManager(client)
169169
inlineManager.registerInlineCompletion()
170170
toDispose.push(

0 commit comments

Comments
 (0)