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 183ebec commit 849ff33Copy full SHA for 849ff33
src/codewhisperer/models/constants.ts
@@ -93,6 +93,7 @@ export const supportedLanguages = [
93
'csharp',
94
'c',
95
'cpp',
96
+ 'c_cpp', // Cloud9 reports C++ files with this language-id.
97
'go',
98
'kotlin',
99
'php',
src/codewhisperer/util/runtimeLanguageContext.ts
@@ -36,6 +36,7 @@ export class RuntimeLanguageContext {
36
typescriptreact: 'tsx',
37
csharp: 'csharp',
38
c: 'c',
39
+ c_cpp: 'cpp',
40
cpp: 'cpp',
41
go: 'go',
42
kotlin: 'kotlin',
@@ -55,6 +56,7 @@ export class RuntimeLanguageContext {
55
56
57
csharp: 'cs',
58
59
60
61
62
kotlin: 'kt',
0 commit comments