Check for the right flag to fix split-window -p, from Bryan Childs.

pull/3874/head
nicm 2024-03-06 21:32:39 +00:00
parent 40b97b1715
commit bd29a48b56
1 changed files with 3 additions and 3 deletions

View File

@ -94,10 +94,10 @@ cmd_split_window_exec(struct cmd *self, struct cmdq_item *item)
size = -1;
if (args_has(args, 'l')) {
size = args_percentage_and_expand(args, 'l', 0, INT_MAX, curval,
item, &cause);
item, &cause);
} else if (args_has(args, 'p')) {
size = args_strtonum_and_expand(args, 'l', 0, 100, item,
&cause);
size = args_strtonum_and_expand(args, 'p', 0, 100, item,
&cause);
if (cause == NULL)
size = curval * size / 100;
}