mirror of
https://github.com/tmux/tmux.git
synced 2025-09-06 03:18:17 +00:00
Extend filters (f key) to buffer and client mode and add -f flag to
specify to command.
This commit is contained in:
@@ -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 },
|
||||
|
||||
|
Reference in New Issue
Block a user