Add flags to move-pane to move floating panes around (-U, -D, -L, -R

similar to resize-pane; -X, -Y similar to new-pane).
This commit is contained in:
nicm
2026-06-13 16:16:18 +00:00
parent ec481ac82a
commit aa2fd3a151
3 changed files with 115 additions and 10 deletions

View File

@@ -41,7 +41,7 @@ const struct cmd_entry cmd_resize_pane_entry = {
.alias = "resizep",
.args = { "D::L::MR::Tt:U::x:y:Z", 0, 1, NULL },
.usage = "[-MTZ] [-U lines] [-D lines] [-L columns] [-R columns] "
.usage = "[-MTZ] [-D lines] [-L columns] [-R columns] [-U lines] "
"[-x width] [-y height] " CMD_TARGET_PANE_USAGE,
.target = { 't', CMD_FIND_PANE, 0 },