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 9d498ef commit 0a80a12Copy full SHA for 0a80a12
src/codewhisperer/activation.ts
@@ -48,9 +48,11 @@ const performance = globalThis.performance ?? require('perf_hooks').performance
48
49
export async function activate(context: ExtContext): Promise<void> {
50
/**
51
- * Enable essential intellisense default settings
+ * Enable essential intellisense default settings for AWS C9 IDE
52
*/
53
- await enableDefaultConfig()
+ if (isCloud9()) {
54
+ await enableDefaultConfig()
55
+ }
56
57
58
* CodeWhisperer security panel
0 commit comments