diff options
author | nicm <nicm> | 2020-04-13 13:42:35 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-04-13 13:42:35 +0000 |
commit | 77d5b0cc538138fd036dca0f9b2ba198a94c009d (patch) | |
tree | d45462362e56f236d72f3dec9a470ce97b6f3c4a /tmux.h | |
parent | 53d6b94e8aef09c0494ed8a53191063b605b3127 (diff) | |
download | rtmux-77d5b0cc538138fd036dca0f9b2ba198a94c009d.tar.gz rtmux-77d5b0cc538138fd036dca0f9b2ba198a94c009d.tar.bz2 rtmux-77d5b0cc538138fd036dca0f9b2ba198a94c009d.zip |
Store a key event not a mouse event in the shared data.
Diffstat (limited to 'tmux.h')
-rw-r--r-- | tmux.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1389,7 +1389,7 @@ struct cmdq_shared { struct format_tree *formats; - struct mouse_event mouse; + struct key_event event; struct cmd_find_state current; }; |