mirror of
https://github.com/tmux/tmux.git
synced 2024-12-12 17:38:48 +00:00
Allow list-keys and list-commands to be run without a running server.
This commit is contained in:
parent
6f417ec943
commit
9d88d82d5e
@ -39,7 +39,7 @@ const struct cmd_entry cmd_list_keys_entry = {
|
||||
.args = { "t:T:", 0, 0 },
|
||||
.usage = "[-t mode-table] [-T key-table]",
|
||||
|
||||
.flags = 0,
|
||||
.flags = CMD_STARTSERVER,
|
||||
.exec = cmd_list_keys_exec
|
||||
};
|
||||
|
||||
@ -50,7 +50,7 @@ const struct cmd_entry cmd_list_commands_entry = {
|
||||
.args = { "", 0, 0 },
|
||||
.usage = "",
|
||||
|
||||
.flags = 0,
|
||||
.flags = CMD_STARTSERVER,
|
||||
.exec = cmd_list_keys_exec
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user