1
0
mirror of https://github.com/Morantron/tmux-fingers.git synced 2024-06-21 06:56:43 +02:00

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

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
}