diff options
author | nicm <nicm> | 2023-01-17 10:40:51 +0000 |
---|---|---|
committer | nicm <nicm> | 2023-01-17 10:40:51 +0000 |
commit | 9789ea3fb4b3215e48b3f0024e2c21c50f95edec (patch) | |
tree | c769191d0caca74d86854e16064cc12669d9c35a | |
parent | d578cf8d3fa1e42ab14b9ec9499f31c6b9c6f384 (diff) | |
download | rtmux-9789ea3fb4b3215e48b3f0024e2c21c50f95edec.tar.gz rtmux-9789ea3fb4b3215e48b3f0024e2c21c50f95edec.tar.bz2 rtmux-9789ea3fb4b3215e48b3f0024e2c21c50f95edec.zip |
Support -1 without -N for list-keys.
-rw-r--r-- | cmd-list-keys.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/cmd-list-keys.c b/cmd-list-keys.c index ae9f995c..395b147c 100644 --- a/cmd-list-keys.c +++ b/cmd-list-keys.c @@ -148,6 +148,7 @@ static enum cmd_retval cmd_list_keys_exec(struct cmd *self, struct cmdq_item *item) { struct args *args = cmd_get_args(self); + struct client *tc = cmdq_get_target_client(item); struct key_table *table; struct key_binding *bd; const char *tablename, *r, *keystr; @@ -296,9 +297,15 @@ cmd_list_keys_exec(struct cmd *self, struct cmdq_item *item) strlcat(tmp, cp, tmpsize); free(cp); - cmdq_print(item, "bind-key %s", tmp); - + if (args_has(args, '1') && tc != NULL) { + status_message_set(tc, -1, 1, 0, "bind-key %s", + tmp); + } else + cmdq_print(item, "bind-key %s", tmp); free(key); + + if (args_has(args, '1')) + break; bd = key_bindings_next(table, bd); } table = key_bindings_next_table(table); |