Started with new style completions
This commit is contained in:
parent
f9699f4499
commit
3c8c8c69ca
2 changed files with 11 additions and 5 deletions
11
zsh/completions/_dt
Normal file
11
zsh/completions/_dt
Normal file
|
@ -0,0 +1,11 @@
|
|||
#compdef dt
|
||||
|
||||
function _dt {
|
||||
local -a cmdlist
|
||||
for line in $(tmux list-sessions -F '#S'); do
|
||||
cmdlist=($cmdlist "${line}")
|
||||
done
|
||||
_describe 'Tmux Sessions' cmdlist
|
||||
}
|
||||
|
||||
_dt "$@"
|
|
@ -61,11 +61,6 @@ function dt() {
|
|||
tmux -2 new-session -A -s $session_name
|
||||
}
|
||||
|
||||
function _dt_completion {
|
||||
reply=($(tmux list-sessions -F '#S'))
|
||||
}
|
||||
compctl -K _dt_completion dt
|
||||
|
||||
function send-to-pane() {
|
||||
tmux pipe-pane -I -t $1 "$2"
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue