diff options
| author | Louis Burda <quent.burda@gmail.com> | 2022-02-26 03:21:10 +0100 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2022-02-26 03:21:10 +0100 |
| commit | c22fd8aeac8906739cf947b7da732876efba8d20 (patch) | |
| tree | e389a0eb085bdb019708a48eda575a97a320ec12 /src/tui.h | |
| parent | 53cb5a2a0d1540a37e6e5d1c1673e8354d5208a5 (diff) | |
| download | tmus-c22fd8aeac8906739cf947b7da732876efba8d20.tar.gz tmus-c22fd8aeac8906739cf947b7da732876efba8d20.zip | |
Keybind for seek to playing, keybind for delete
Diffstat (limited to 'src/tui.h')
| -rw-r--r-- | src/tui.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -6,6 +6,11 @@ #include <stdbool.h> +#define CMD_SET_STATUS(...) do { \ + free(cmd_status); \ + cmd_status = aprintf(__VA_ARGS__); \ + } while (0) + void tui_init(void); void tui_deinit(void); |
