]> Sergey Matveev's repositories - dotfiles.git/blob - tmux/.tmux/bin/common.sh
Make zathura configuration file aware
[dotfiles.git] / tmux / .tmux / bin / common.sh
1 paste()
2 {
3     local pane="$1"
4     local cmd="$2"
5     tmux set-buffer "$cmd"
6     tmux paste-buffer -t "$pane"
7     tmux delete-buffer
8     tmux send-keys -t "$pane" Enter
9 }