Improve default command with display-message

This commit is contained in:
Ferran Basora 2020-08-04 17:09:08 +00:00
parent 7c5f2e8f73
commit 1d0b0b68e7
2 changed files with 4 additions and 4 deletions

View File

@ -168,7 +168,7 @@ set -g @thumbs-regexp-2 '[a-f0-9]{2}:[a-f0-9]{2}:[a-f0-9]{2}:[a-f0-9]{2}:[a-f0-9
### @thumbs-command
`default: 'tmux set-buffer {}'`
`default: 'tmux set-buffer {} && tmux display-message \"Copied {}\"'`
Choose which command execute when you press a hint. `tmux-thumbs` will replace `{}` with the picked hint.
@ -180,7 +180,7 @@ set -g @thumbs-command 'echo -n {} | pbcopy'
### @thumbs-upcase-command
`default: 'tmux set-buffer {} && tmux paste-buffer'`
`default: 'tmux set-buffer {} && tmux paste-buffer && tmux display-message \"Copied {}\"`
Choose which command execute when you press a upcase hint. `tmux-thumbs` will replace `{}` with the picked hint.

View File

@ -465,13 +465,13 @@ fn app_args<'a>() -> clap::ArgMatches<'a> {
Arg::with_name("command")
.help("Pick command")
.long("command")
.default_value("tmux set-buffer {}"),
.default_value("tmux set-buffer {} && tmux display-message \"Copied {}\""),
)
.arg(
Arg::with_name("upcase_command")
.help("Upcase command")
.long("upcase-command")
.default_value("tmux set-buffer {} && tmux paste-buffer"),
.default_value("tmux set-buffer {} && tmux paste-buffer && tmux display-message \"Copied {}\""),
)
.arg(
Arg::with_name("osc52")