Adds super as a modkey. (#1590)

* Adds super as a modkey.

* Added in super designation for windows.
This commit is contained in:
Adam 2023-08-25 14:34:51 -04:00 committed by GitHub
parent 671c8976df
commit cb66d5b9e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -7,8 +7,12 @@ modkeys.map = {
["right shift"] = "shift",
["left alt"] = "alt",
["right alt"] = "altgr",
["left gui"] = "super",
["left windows"] = "super",
["right gui"] = "super",
["right windows"] = "super"
}
modkeys.keys = { "ctrl", "shift", "alt", "altgr" }
modkeys.keys = { "ctrl", "shift", "alt", "altgr", "super" }
return modkeys