silent pane-exec to avoid history pollution

This commit is contained in:
Jorge Morante 2016-05-12 10:45:38 +02:00
parent 9e04dc6e0a
commit 79ebe14a9c
1 changed files with 1 additions and 1 deletions

View File

@ -22,6 +22,6 @@ function pane_exec() {
local pane_id=$1
local pane_command=$2
tmux send-keys -t $pane_id "$pane_command"
tmux send-keys -t $pane_id " $pane_command"
tmux send-keys -t $pane_id Enter
}