update
Some checks failed
Deploy / build-and-deploy (push) Has been cancelled

This commit is contained in:
2026-07-05 01:12:06 -06:00
parent 22f7c34f76
commit aaf8719943
5 changed files with 480 additions and 21 deletions

View File

@@ -10,6 +10,7 @@ import { cpp } from "./cpp"
import { c } from "./c"
import { python } from "./python"
import { turtle } from "./turtle"
import { sql } from "./sql"
type ChineseCompletion = Pick<
Completion,
@@ -22,6 +23,7 @@ const chineseAnnotations: Record<string, ChineseCompletion[]> = {
turtle,
c,
cpp,
sql,
}
export function enhanceCompletion(language: LANGUAGE): CompletionSource {