Add ABAP to supported code formatting languages (#11721)

* Initial plan

* Add ABAP as a supported code formatting language

Co-authored-by: tommoor <380914+tommoor@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: tommoor <380914+tommoor@users.noreply.github.com>
This commit is contained in:
Copilot
2026-03-11 17:33:32 -04:00
committed by GitHub
parent 2e50fb0344
commit bd573c44c1
+5
View File
@@ -21,6 +21,11 @@ type CodeLanguage = {
*/
export const codeLanguages: Record<string, CodeLanguage> = {
none: { lang: "", label: "Plain text" },
abap: {
lang: "abap",
label: "ABAP",
loader: () => import("refractor/lang/abap").then((m) => m.default),
},
bash: {
lang: "bash",
label: "Bash",