diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-01-04 09:47:36 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-04 09:47:36 -0500 |
commit | 91313d3847263f3a7cd2a576b333fb4a40d5a2c5 (patch) | |
tree | 667f3438ddf84d70d21f3efecfb68ccc902d835b /include/sway/config.h | |
parent | bc7011db3c9298a6cdc9ab622c18450ba184973a (diff) | |
parent | b01a53abfb883f8767090415f1ec37b295b35146 (diff) |
Merge pull request #1539 from acrisci/bindings
Bindings
Diffstat (limited to 'include/sway/config.h')
-rw-r--r-- | include/sway/config.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/sway/config.h b/include/sway/config.h index eecdde3a..405092e3 100644 --- a/include/sway/config.h +++ b/include/sway/config.h @@ -46,7 +46,8 @@ struct sway_mouse_binding { */ struct sway_mode { char *name; - list_t *bindings; + list_t *keysym_bindings; + list_t *keycode_bindings; }; /** |