You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: plugins/amazonq/codewhisperer/jetbrains-community/src/software/aws/toolkits/jetbrains/services/codewhisperer/language/CodeWhispererLanguageManager.kt
// fileTypeName.contains("plain_text") -> CodeWhispererPlainText.INSTANCE // This needs to be removed because Hcl files are recognised as plain_text by JB
79
93
else->null
80
94
}
@@ -125,7 +139,14 @@ class CodeWhispererLanguageManager {
125
139
listOf("go") to CodeWhispererGo.INSTANCE,
126
140
listOf("php") to CodeWhispererPhp.INSTANCE,
127
141
listOf("sql") to CodeWhispererSql.INSTANCE,
128
-
listOf("txt") to CodeWhispererPlainText.INSTANCE
142
+
listOf("txt") to CodeWhispererPlainText.INSTANCE,
143
+
listOf("sv", "svh", "vh") to CodeWhispererSystemVerilog.INSTANCE,
144
+
listOf("dart") to CodeWhispererDart.INSTANCE,
145
+
listOf("lua", "wlua") to CodeWhispererLua.INSTANCE,
146
+
listOf("swift") to CodeWhispererSwift.INSTANCE,
147
+
listOf("vue") to CodeWhispererVue.INSTANCE,
148
+
listOf("ps1", "psm1") to CodeWhispererPowershell.INSTANCE,
0 commit comments