X-Git-Url: https://src.twobees.de/?a=blobdiff_plain;f=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Ftmuxinator%2F_tmuxinator;fp=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Ftmuxinator%2F_tmuxinator;h=0000000000000000000000000000000000000000;hb=1a8e170bbe5c6641a26ab1ce2e6ce6c5c1faa4cd;hp=9ae25ac38621958bf41a2dc19aea12e38bbd3076;hpb=475ba35502579302593f4735c853c49ef1845dcb;p=dotfiles.git diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/tmuxinator/_tmuxinator b/stow/oh-my-zsh/.oh-my-zsh/plugins/tmuxinator/_tmuxinator deleted file mode 100644 index 9ae25ac..0000000 --- a/stow/oh-my-zsh/.oh-my-zsh/plugins/tmuxinator/_tmuxinator +++ /dev/null @@ -1,23 +0,0 @@ -#compdef tmuxinator mux -#autoload - -_tmuxinator() { - local commands projects - commands=(${(f)"$(tmuxinator commands zsh)"}) - projects=(${(f)"$(tmuxinator completions start)"}) - - if (( CURRENT == 2 )); then - _describe -t commands "tmuxinator subcommands" commands - _describe -t projects "tmuxinator projects" projects - elif (( CURRENT == 3)); then - case $words[2] in - copy|debug|delete|open|start) - _arguments '*:projects:($projects)' - ;; - esac - fi - - return -} - -compdef _tmuxinator tmuxinator