summaryrefslogtreecommitdiffstats
path: root/cmd-choose-buffer.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2012-06-25 14:27:25 +0000
committerNicholas Marriott <nicm@openbsd.org>2012-06-25 14:27:25 +0000
commit67b926cf3c77737e3b40c9d70c38314ac19ba105 (patch)
tree70e11d99991264920f3a063dc4cdccb37522202f /cmd-choose-buffer.c
parent5b6f78186c63a19e213eb8597efe69277556e038 (diff)
Provide common helper function for adding windows and sessions to choose
lists and expand %% in command before using it rather than at callback time. From Thomas Adam.
Diffstat (limited to 'cmd-choose-buffer.c')
-rw-r--r--cmd-choose-buffer.c22
1 files changed, 13 insertions, 9 deletions
diff --git a/cmd-choose-buffer.c b/cmd-choose-buffer.c
index edef4d46..0baa0a28 100644
--- a/cmd-choose-buffer.c
+++ b/cmd-choose-buffer.c
@@ -48,8 +48,9 @@ cmd_choose_buffer_exec(struct cmd *self, struct cmd_ctx *ctx)
struct window_choose_data *cdata;
struct winlink *wl;
struct paste_buffer *pb;
- u_int idx;
+ char *action, *action_data;
const char *template;
+ u_int idx;
if (ctx->curclient == NULL) {
ctx->error(ctx, "must be run interactively");
@@ -68,14 +69,14 @@ cmd_choose_buffer_exec(struct cmd *self, struct cmd_ctx *ctx)
if (window_pane_set_mode(wl->window->active, &window_choose_mode) != 0)
return (0);
+ if (args->argc != 0)
+ action = xstrdup(args->argv[0]);
+ else
+ action = xstrdup("paste-buffer -b '%%'");
+
idx = 0;
while ((pb = paste_walk_stack(&global_buffers, &idx)) != NULL) {
cdata = window_choose_data_create(ctx);
- if (args->argc != 0)
- cdata->action = xstrdup(args->argv[0]);
- else
- cdata->action = xstrdup("paste-buffer -b '%%'");
-
cdata->idx = idx - 1;
cdata->client->references++;
@@ -83,8 +84,13 @@ cmd_choose_buffer_exec(struct cmd *self, struct cmd_ctx *ctx)
format_add(cdata->ft, "line", "%u", idx - 1);
format_paste_buffer(cdata->ft, pb);
+ xasprintf(&action_data, "%u", idx - 1);
+ cdata->command = cmd_template_replace(action, action_data, 1);
+ xfree(action_data);
+
window_choose_add(wl->window->active, cdata);
}
+ xfree(action);
window_choose_ready(wl->window->active,
0, cmd_choose_buffer_callback, cmd_choose_buffer_free);
@@ -100,7 +106,6 @@ cmd_choose_buffer_callback(struct window_choose_data *cdata)
if (cdata->client->flags & CLIENT_DEAD)
return;
- xasprintf(&cdata->raw_format, "%u", cdata->idx);
window_choose_ctx(cdata);
}
@@ -114,8 +119,7 @@ cmd_choose_buffer_free(struct window_choose_data *data)
cdata->client->references--;
+ xfree(cdata->command);
xfree(cdata->ft_template);
- xfree(cdata->action);
- xfree(cdata->raw_format);
xfree(cdata);
}