sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit 254d0df3b2123344d6e4cbd89d779d1a492e0b1c
parent 5767dcc86e23ba86e07dde6807b1af3deb3fdcbf
Author: Drew DeVault <sir@cmpwn.com>
Date:   Wed,  5 Aug 2015 22:41:46 -0400

Push the XKB key to the key list

Instead of the key name

Diffstat:
Msway/commands.c | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/sway/commands.c b/sway/commands.c @@ -43,7 +43,9 @@ int cmd_bindsym(struct sway_config *config, int argc, char **argv) { // Ignore for now, we need to deal with modifier keys // return 1; } - list_add(binding->keys, split->items[i]); + xkb_keysym_t *key = malloc(sizeof(xkb_keysym_t)); + *key = sym; + list_add(binding->keys, key); } list_free(split);