fix: Add Repeat Until to pair complete

This commit is contained in:
Yaotian-Liu 2024-06-01 12:11:50 +08:00
parent 5ae081a50e
commit 11b9a7e72f
No known key found for this signature in database
GPG key ID: 05D362E51003CFE8

View file

@ -109,6 +109,7 @@ export class PseudocodeSuggestor extends EditorSuggest<string> {
"\\ForAll{}": "\\EndFor", "\\ForAll{}": "\\EndFor",
"\\If{}": "\\EndIf", "\\If{}": "\\EndIf",
"\\While{}": "\\EndWhile", "\\While{}": "\\EndWhile",
"\\Repeat": "\\Until{}",
// Add more pairs as needed // Add more pairs as needed
}; };