mirror of
https://github.com/tmate-io/tmate.git
synced 2024-11-08 01:04:06 +01:00
Size on split-window is -l not -s. Doh.
This commit is contained in:
parent
8ec3e5725c
commit
ce91520e12
@ -91,8 +91,8 @@ cmd_split_window_exec(struct cmd *self, struct cmd_ctx *ctx)
|
||||
type = LAYOUT_LEFTRIGHT;
|
||||
|
||||
size = -1;
|
||||
if (args_has(args, 's')) {
|
||||
size = args_strtonum(args, 's', 0, INT_MAX, &cause);
|
||||
if (args_has(args, 'l')) {
|
||||
size = args_strtonum(args, 'l', 0, INT_MAX, &cause);
|
||||
if (cause != NULL) {
|
||||
ctx->error(ctx, "size %s", cause);
|
||||
xfree(cause);
|
||||
|
Loading…
Reference in New Issue
Block a user