mirror of
https://github.com/go-vgo/robotgo
synced 2026-05-23 09:48:59 +00:00
Add: add more const Key support
This commit is contained in:
parent
ff16db828b
commit
a56d54d8bc
1 changed files with 13 additions and 10 deletions
23
key.go
23
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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue