Merge pull request #761 from go-vgo/bitmap-pr

Add: add more const Key support
This commit is contained in:
Evans 2026-03-02 10:53:55 -08:00 committed by GitHub
commit 7dee03f3f8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

23
key.go
View file

@ -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"