summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorLibravatar Mikkel Oscar Lyderik <mikkeloscar@gmail.com>2016-01-09 17:40:19 +0100
committerLibravatar Mikkel Oscar Lyderik <mikkeloscar@gmail.com>2016-01-09 18:07:47 +0100
commitf8b260d4a1295df68ef1ff7db89f21e6032d64c7 (patch)
tree228810591abade5a021f6b2ea1da8f22826f4ee9 /include
parentUnescape string after doing var replacement (diff)
downloadsway-f8b260d4a1295df68ef1ff7db89f21e6032d64c7.tar.gz
sway-f8b260d4a1295df68ef1ff7db89f21e6032d64c7.tar.zst
sway-f8b260d4a1295df68ef1ff7db89f21e6032d64c7.zip
Add support for bincode command
If a bindsym and bincode maps to the same combination, the last one will overwrite any previous mappings.
Diffstat (limited to 'include')
-rw-r--r--include/config.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h
index 1f2bbdd0..e6a85b29 100644
--- a/include/config.h
+++ b/include/config.h
@@ -23,6 +23,7 @@ struct sway_variable {
23struct sway_binding { 23struct sway_binding {
24 int order; 24 int order;
25 bool release; 25 bool release;
26 bool bindcode;
26 list_t *keys; 27 list_t *keys;
27 uint32_t modifiers; 28 uint32_t modifiers;
28 char *command; 29 char *command;