input: rename ‘meta’ to ‘super’

This commit is contained in:
Daniel Eklöf 2021-11-21 12:01:16 +01:00
parent a08494a766
commit 66171f1045
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 14 additions and 14 deletions

View file

@ -194,7 +194,7 @@ struct seat {
xkb_mod_index_t mod_shift;
xkb_mod_index_t mod_alt;
xkb_mod_index_t mod_ctrl;
xkb_mod_index_t mod_meta;
xkb_mod_index_t mod_super;
xkb_mod_index_t mod_caps;
xkb_mod_index_t mod_num;
@ -208,7 +208,7 @@ struct seat {
bool shift;
bool alt;
bool ctrl;
bool meta;
bool super;
struct {
key_binding_list_t key;