From a56d54d8bcadb22a19bf1ee3b2c3e28cbb1194a2 Mon Sep 17 00:00:00 2001 From: vcaesar Date: Mon, 2 Mar 2026 10:51:14 -0800 Subject: [PATCH] Add: add more const Key support --- key.go | 23 +++++++++++++---------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/key.go b/key.go index 1e8e297..7e99b6f 100644 --- a/key.go +++ b/key.go @@ -87,16 +87,19 @@ const ( CapY = "Y" CapZ = "Z" // - Key0 = "0" - Key1 = "1" - Key2 = "2" - Key3 = "3" - Key4 = "4" - Key5 = "5" - Key6 = "6" - Key7 = "7" - Key8 = "8" - Key9 = "9" + Key0 = "0" + Key1 = "1" + Key2 = "2" + Key3 = "3" + Key4 = "4" + Key5 = "5" + Key6 = "6" + Key7 = "7" + Key8 = "8" + Key9 = "9" + KeyGrave = "`" + KeyQuoter = '"' + KeyQuote = "'" // Backspace backspace key string Backspace = "backspace"