Added send-to-pane function (completions in progress)

This commit is contained in:
Anthony Cicchetti 2019-09-16 08:16:03 -04:00
parent 6869268ea4
commit 0b49a29872

View file

@ -139,6 +139,15 @@ function _dt_completion {
}
compctl -K _dt_completion dt
function send-to-pane() {
tmux pipe-pane -I -t $1 "$2"
}
function _send_to_pane {
reply=($(tmux display-panes -b ''))
}
compctl -K _send_to_pane send-to-pane
if [[ -a $HOME/.zshsrc ]]; then
source $HOME/.zshsrc
else