Skip to content

Commit

Permalink
Fix: Add ForAll to auto_complete
Browse files Browse the repository at this point in the history
  • Loading branch information
ytliu74 committed Feb 22, 2024
1 parent 6001c0f commit e6b4375
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/auto_complete.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ export class PseudocodeSuggestor extends EditorSuggest<string> {
"\\Procedure{}{}": "\\EndProcedure",
"\\Function{}{}": "\\EndFunction",
"\\For{}": "\\EndFor",
"\\ForAll{}": "\\EndFor",
"\\If{}": "\\EndIf",
"\\While{}": "\\EndWhile",
// Add more pairs as needed
Expand All @@ -129,6 +130,7 @@ export class PseudocodeSuggestor extends EditorSuggest<string> {
"\\Return",
"\\Print",
"\\For{}",
"\\ForAll{}",
"\\EndFor",
"\\If{}",
"\\Else",
Expand Down

0 comments on commit e6b4375

Please sign in to comment.