summaryrefslogtreecommitdiffstats
path: root/cmd-resize-pane.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-07-30 20:45:20 +0000
committerTiago Cunha <tcunha@gmx.com>2009-07-30 20:45:20 +0000
commit1650b8552ff0eec77dde62066312bea60c1200ae (patch)
treec2ad69d1c7a82b29f3069d15d091e12d65368087 /cmd-resize-pane.c
parentec1396c9ee38e43d99d18a52d72fd315795abc8a (diff)
Sync OpenBSD patchset 200:
Merge pane number into the target specification for pane commands. Instead of using -p index, a target pane is now addressed with the normal -t window form but suffixed with a period and a pane index, for example :0.2 or mysess:mywin.1. An unadorned number such as -t 1 is tried as a pane index in the current window, if that fails the same rules are followed as for a target window and the current pane in that window used. As a side-effect this now means that swap-pane can swap panes between different windows. Note that this changes the syntax of the break-pane, clear-history, kill-pane, resize-pane, select-pane and swap-pane commands.
Diffstat (limited to 'cmd-resize-pane.c')
-rw-r--r--cmd-resize-pane.c27
1 files changed, 9 insertions, 18 deletions
diff --git a/cmd-resize-pane.c b/cmd-resize-pane.c
index 60f244a1..4924bef6 100644
--- a/cmd-resize-pane.c
+++ b/cmd-resize-pane.c
@@ -1,4 +1,4 @@
-/* $Id: cmd-resize-pane.c,v 1.11 2009-07-28 22:12:16 tcunha Exp $ */
+/* $Id: cmd-resize-pane.c,v 1.12 2009-07-30 20:45:20 tcunha Exp $ */
/*
* Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -31,22 +31,22 @@ int cmd_resize_pane_exec(struct cmd *, struct cmd_ctx *);
const struct cmd_entry cmd_resize_pane_entry = {
"resize-pane", "resizep",
- CMD_PANE_WINDOW_USAGE "[-DU] [adjustment]",
+ "[-DU] " CMD_TARGET_PANE_USAGE " [adjustment]",
CMD_ARG01,
CMD_CHFLAG('D')|CMD_CHFLAG('L')|CMD_CHFLAG('R')|CMD_CHFLAG('U'),
cmd_resize_pane_init,
- cmd_pane_parse,
+ cmd_target_parse,
cmd_resize_pane_exec,
- cmd_pane_free,
- cmd_pane_print
+ cmd_target_free,
+ cmd_target_print
};
void
cmd_resize_pane_init(struct cmd *self, int key)
{
- struct cmd_pane_data *data;
+ struct cmd_target_data *data;
- cmd_pane_init(self, key);
+ cmd_target_init(self, key);
data = self->data;
if (key == (KEYC_UP | KEYC_CTRL))
@@ -79,23 +79,14 @@ cmd_resize_pane_init(struct cmd *self, int key)
int
cmd_resize_pane_exec(struct cmd *self, struct cmd_ctx *ctx)
{
- struct cmd_pane_data *data = self->data;
+ struct cmd_target_data *data = self->data;
struct winlink *wl;
const char *errstr;
struct window_pane *wp;
u_int adjust;
- if ((wl = cmd_find_window(ctx, data->target, NULL)) == NULL)
+ if ((wl = cmd_find_pane(ctx, data->target, NULL, &wp)) == NULL)
return (-1);
- if (data->pane == -1)
- wp = wl->window->active;
- else {
- wp = window_pane_at_index(wl->window, data->pane);
- if (wp == NULL) {
- ctx->error(ctx, "no pane: %d", data->pane);
- return (-1);
- }
- }
if (data->arg == NULL)
adjust = 1;