1
0
mirror of https://github.com/tmux/tmux.git synced 2025-04-01 21:41:44 +00:00

Fix run-shell's maximum argument count

Co-authored-by: Julian Prein <julian@druck.dev>
This commit is contained in:
Julian Prein 2025-03-20 23:04:46 +01:00
parent b9956c06ae
commit cb97032068
No known key found for this signature in database
GPG Key ID: CA6B3A516FAC2555

View File

@ -44,7 +44,7 @@ const struct cmd_entry cmd_run_shell_entry = {
.name = "run-shell",
.alias = "run",
.args = { "bd:Ct:c:", 0, 2, cmd_run_shell_args_parse },
.args = { "bd:Ct:c:", 0, 1, cmd_run_shell_args_parse },
.usage = "[-bC] [-c start-directory] [-d delay] " CMD_TARGET_PANE_USAGE
" [shell-command]",