From 08b125194ee37b9f2c597b6a39376c47dd74433b Mon Sep 17 00:00:00 2001 From: nicm Date: Wed, 23 Aug 2017 09:39:11 +0000 Subject: Key (v) and flag (-N) to toggle preview in choose modes. --- cmd-choose-tree.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'cmd-choose-tree.c') diff --git a/cmd-choose-tree.c b/cmd-choose-tree.c index 919af491..65c3ae0a 100644 --- a/cmd-choose-tree.c +++ b/cmd-choose-tree.c @@ -30,8 +30,8 @@ const struct cmd_entry cmd_choose_tree_entry = { .name = "choose-tree", .alias = NULL, - .args = { "F:f:O:st:w", 0, 1 }, - .usage = "[-sw] [-F format] [-f filter] [-O sort-order] " + .args = { "F:f:NO:st:w", 0, 1 }, + .usage = "[-Nsw] [-F format] [-f filter] [-O sort-order] " CMD_TARGET_PANE_USAGE, .target = { 't', CMD_FIND_PANE, 0 }, @@ -44,8 +44,8 @@ const struct cmd_entry cmd_choose_client_entry = { .name = "choose-client", .alias = NULL, - .args = { "F:f:O:t:", 0, 1 }, - .usage = "[-F format] [-f filter] [-O sort-order] " + .args = { "F:f:NO:t:", 0, 1 }, + .usage = "[-N] [-F format] [-f filter] [-O sort-order] " CMD_TARGET_PANE_USAGE, .target = { 't', CMD_FIND_PANE, 0 }, @@ -58,8 +58,8 @@ const struct cmd_entry cmd_choose_buffer_entry = { .name = "choose-buffer", .alias = NULL, - .args = { "F:f:O:t:", 0, 1 }, - .usage = "[-F format] [-f filter] [-O sort-order] " + .args = { "F:f:NO:t:", 0, 1 }, + .usage = "[-N] [-F format] [-f filter] [-O sort-order] " CMD_TARGET_PANE_USAGE, .target = { 't', CMD_FIND_PANE, 0 }, -- cgit