From eec2c19ad100d261a2b95e0715259fa3260ec564 Mon Sep 17 00:00:00 2001 From: Dane Jensen Date: Thu, 23 Apr 2026 17:07:53 -0700 Subject: [PATCH 1/2] oversights. --- tmux.1 | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tmux.1 b/tmux.1 index 0ae9241f..4d462159 100644 --- a/tmux.1 +++ b/tmux.1 @@ -3322,7 +3322,7 @@ By default, it uses the format but a different format may be specified with .Fl F . .Tg newp -.It Xo Ic new-pane +.It Xo Ic new\-pane .Op Fl bdefhIkPvZ .Op Fl c Ar start-directory .Op Fl e Ar environment @@ -3775,7 +3775,6 @@ the command behaves like .Op Fl c Ar start-directory .Op Fl e Ar environment .Op Fl F Ar format -.Op Fl H Ar height .Op Fl l Ar size .Op Fl m Ar message .Op Fl M Ar mode @@ -3784,19 +3783,20 @@ the command behaves like .Op Fl s Ar style .Op Fl S Ar active-border-style .Op Fl t Ar target-pane -.Op Fl w Ar width -.Op Fl x Ar x-position -.Op Fl y Ar y-position +.Op Fl x Ar width +.Op Fl X Ar x-position +.Op Fl y Ar height +.Op Fl Y Ar y-position .Op Ar shell-command Op Ar argument ... .Xc .D1 Pq alias: Ic splitw Creates a new pane. Default behavior is to split the pane in a tiled layout. Shares behavior with -.Ic new-pane . +.Ic new\-pane . .Pp See -.Ic new-pane +.Ic new\-pane for more details. .Tg swapp .It Xo Ic swap\-pane @@ -5289,7 +5289,7 @@ for floating panes. A per-pane style set with .Fl S on the -.Ic new-pane +.Ic new\-pane command or with .Ic set-option Fl p takes priority over this option. @@ -5307,7 +5307,7 @@ for floating panes. A per-pane style set with .Fl s on the -.Ic new-pane +.Ic new\-pane command or with .Ic select-pane Fl P takes priority over this option. From a74f1739026386b9276c153e6818fa0d86d34221 Mon Sep 17 00:00:00 2001 From: Dane Jensen Date: Thu, 23 Apr 2026 21:53:06 -0700 Subject: [PATCH 2/2] more. --- cmd-split-window.c | 4 ++-- tmux.1 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd-split-window.c b/cmd-split-window.c index 046dc66e..0cd6d8da 100644 --- a/cmd-split-window.c +++ b/cmd-split-window.c @@ -43,7 +43,7 @@ const struct cmd_entry cmd_new_pane_entry = { "[-F format] [-l size] [-m message] [-M mode] " "[-R inactive-border-style] [-s style] " "[-S active-border-style] [-x width] [-X x-position]" - "[-y length] [-Y y-position]" CMD_TARGET_PANE_USAGE + "[-y height] [-Y y-position]" CMD_TARGET_PANE_USAGE "[shell-command [argument ...]]", .target = { 't', CMD_FIND_PANE, 0 }, @@ -61,7 +61,7 @@ const struct cmd_entry cmd_split_window_entry = { "[-F format] [-l size] [-m message] [-M mode] " "[-R inactive-border-style] [-s style] " "[-S active-border-style] [-x width] [-X x-position]" - "[-y length] [-Y y-position]" CMD_TARGET_PANE_USAGE + "[-y height] [-Y y-position]" CMD_TARGET_PANE_USAGE "[shell-command [argument ...]]", .target = { 't', CMD_FIND_PANE, 0 }, diff --git a/tmux.1 b/tmux.1 index 4d462159..764a9f4b 100644 --- a/tmux.1 +++ b/tmux.1 @@ -3337,7 +3337,7 @@ but a different format may be specified with .Op Fl t Ar target-pane .Op Fl x Ar width .Op Fl X Ar x-position -.Op Fl y Ar length +.Op Fl y Ar height .Op Fl Y Ar y-position .Op Ar shell-command Op Ar argument ... .Xc