Extend filters (f key) to buffer and client mode and add -f flag to

specify to command.
This commit is contained in:
nicm
2017-06-09 16:01:39 +00:00
parent bab4da5133
commit adcd5aff6f
7 changed files with 121 additions and 99 deletions

View File

@@ -30,8 +30,8 @@ const struct cmd_entry cmd_choose_tree_entry = {
.name = "choose-tree",
.alias = NULL,
.args = { "O:st:w", 0, 1 },
.usage = "[-sw] [-O sort-order] " CMD_TARGET_PANE_USAGE,
.args = { "f:O:st:w", 0, 1 },
.usage = "[-sw] [-f filter] [-O sort-order] " CMD_TARGET_PANE_USAGE,
.target = { 't', CMD_FIND_PANE, 0 },
@@ -43,8 +43,8 @@ const struct cmd_entry cmd_choose_client_entry = {
.name = "choose-client",
.alias = NULL,
.args = { "O:t:", 0, 1 },
.usage = "[-O sort-order] " CMD_TARGET_PANE_USAGE,
.args = { "f:O:t:", 0, 1 },
.usage = "[-f filter] [-O sort-order] " CMD_TARGET_PANE_USAGE,
.target = { 't', CMD_FIND_PANE, 0 },
@@ -56,8 +56,8 @@ const struct cmd_entry cmd_choose_buffer_entry = {
.name = "choose-buffer",
.alias = NULL,
.args = { "O:t:", 0, 1 },
.usage = "[-O sort-order] " CMD_TARGET_PANE_USAGE,
.args = { "f:O:t:", 0, 1 },
.usage = "[-f filter] [-O sort-order] " CMD_TARGET_PANE_USAGE,
.target = { 't', CMD_FIND_PANE, 0 },