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 021a7f7 commit 7d0d8f7Copy full SHA for 7d0d8f7
src/codewhisperer/models/constants.ts
@@ -101,6 +101,7 @@ export const supportedLanguages = [
101
'rust',
102
'scala',
103
'shellscript',
104
+ 'sh', // Cloud9 reports bash files with this language-id
105
'sql',
106
] as const
107
src/codewhisperer/util/runtimeLanguageContext.ts
@@ -44,6 +44,7 @@ export class RuntimeLanguageContext {
44
ruby: 'ruby',
45
rust: 'rust',
46
scala: 'scala',
47
+ sh: 'shell',
48
shellscript: 'shell',
49
sql: 'sql',
50
})
@@ -64,6 +65,7 @@ export class RuntimeLanguageContext {
64
65
ruby: 'rb',
66
rust: 'rs',
67
68
+ sh: 'sh',
69
shellscript: 'sh',
70
71
0 commit comments