Commit 1a3acdf4 authored by Emerald-Jayde Henao's avatar Emerald-Jayde Henao 4️⃣ Committed by Tristan Read
Browse files

feat: add support for html, css, shell, sql (in non-LS mode)

parent b9db762e
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -23,6 +23,10 @@ export const AI_ASSISTED_CODE_SUGGESTIONS_LANGUAGES = [
  'swift',
  'typescript',
  'typescriptreact',
  'html',
  'css',
  'sql',
  'shellscript',
  // Following languages are not explicitly supported by the model gateway but we add them
  // to have at least some autocomplete
  // See https://gitlab.com/gitlab-org/gitlab-vscode-extension/-/issues/781 for details
+1 −1
Original line number Diff line number Diff line
@@ -11,7 +11,7 @@ describe('SupportedLanguagePolicy', () => {
  let policy: SupportedLanguagePolicy;
  const triggerActiveTextEditorChange = createActiveTextEditorChangeTrigger();

  const unsupportedLanguages = ['html', 'markdown', 'css'];
  const unsupportedLanguages = ['diff', 'haml', 'lua'];
  beforeEach(() => {
    policy = new SupportedLanguagePolicy();
    jest