There was an error while loading. Please reload this page.
2 parents 8a052cf + 14a7b19 commit 68a95f0Copy full SHA for 68a95f0
1 file changed
src/utils.ts
@@ -6,6 +6,7 @@ export class Utils {
6
'Arduino IDE': 'arduino',
7
'Azure Data Studio': 'azdata',
8
Cursor: 'cursor',
9
+ Kiro: 'kiro',
10
Onivim: 'onivim',
11
'Onivim 2': 'onivim',
12
'SQL Operations Studio': 'sqlops',
@@ -200,9 +201,12 @@ export class Utils {
200
201
202
public static isAICapableEditor(): boolean {
203
const editorName = vscode.env.appName.toLowerCase();
- return editorName.includes('cursor') || editorName.includes('windsurf');
204
+ return editorName.includes('cursor') ||
205
+ editorName.includes('kiro') ||
206
+ editorName.includes('windsurf');
207
}
208
209
+
210
public static hasAIExtensions(): boolean {
211
return COMMON_AI_EXTENSIONS.some((assistant) => {
212
return assistant.extensionIds.some((id) => {
0 commit comments