We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 763d0a8 commit 9668403Copy full SHA for 9668403
open.tmux
@@ -40,7 +40,8 @@ preserve_url_hash() {
40
41
command_generator() {
42
local command_string="$1"
43
- echo "$(preserve_url_hash) | xargs -I {} tmux run-shell -b 'cd #{pane_current_path}; $command_string \"{}\" > /dev/null'"
+ # the `echo {} | bash` is to perform tilde expansion.
44
+ echo "$(preserve_url_hash) | xargs -I {} echo "echo {}" | bash | xargs -I {} tmux run-shell -b 'cd #{pane_current_path}; $command_string \"{}\" > /dev/null'"
45
}
46
47
search_command_generator() {
0 commit comments