diff options
author | nicm <nicm> | 2019-11-07 07:11:25 +0000 |
---|---|---|
committer | nicm <nicm> | 2019-11-07 07:11:25 +0000 |
commit | c225262e132ded1b4e1e8c0bd21884e9da78ddb3 (patch) | |
tree | f8ba43a0f4a71f2b90b924098f30ea6c4eff1749 /cmd-send-keys.c | |
parent | bad95db8785f4ee6b6e17750500c024642e83134 (diff) | |
download | rtmux-c225262e132ded1b4e1e8c0bd21884e9da78ddb3.tar.gz rtmux-c225262e132ded1b4e1e8c0bd21884e9da78ddb3.tar.bz2 rtmux-c225262e132ded1b4e1e8c0bd21884e9da78ddb3.zip |
Add -F flag to send-keys to expand formats in search-backward and
forward copy mode commands, this makes it easier to use the cursor_word
and cursor_line formats. From Anindya Mukherjee in GitHub issue 1964.
Diffstat (limited to 'cmd-send-keys.c')
-rw-r--r-- | cmd-send-keys.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cmd-send-keys.c b/cmd-send-keys.c index fe202335..ddbab6f7 100644 --- a/cmd-send-keys.c +++ b/cmd-send-keys.c @@ -33,8 +33,9 @@ const struct cmd_entry cmd_send_keys_entry = { .name = "send-keys", .alias = "send", - .args = { "HlXRMN:t:", 0, -1 }, - .usage = "[-HlXRM] [-N repeat-count] " CMD_TARGET_PANE_USAGE " key ...", + .args = { "FHlMN:Rt:X", 0, -1 }, + .usage = "[-FHlMRX] [-N repeat-count] " CMD_TARGET_PANE_USAGE + " key ...", .target = { 't', CMD_FIND_PANE, 0 }, |