From 18e4c2e28f92ace06b4eba4f287fe0f027b8c8e9 Mon Sep 17 00:00:00 2001 From: Spencer Gouw Date: Thu, 21 Sep 2023 21:42:41 -0500 Subject: [PATCH] feat: basic symbol enum --- symbol.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 symbol.ts diff --git a/symbol.ts b/symbol.ts new file mode 100644 index 0000000..fdf8fa0 --- /dev/null +++ b/symbol.ts @@ -0,0 +1,7 @@ +export const enum Symbol { + // on parse + Newline = "\\nl\\", + Tab = "\\tab\\", + // on replace + CursorEnd = "\\end\\", +}