1 # START tmux completion
2 # This file is in the public domain
3 # See: http://www.debian-administration.org/articles/317 for how to write more.
4 # Usage: Put "source bash_completion_tmux.sh" into your .bashrc
9 cur
="${COMP_WORDS[COMP_CWORD]}"
10 prev
="${COMP_WORDS[COMP_CWORD-1]}"
96 COMPREPLY
=($
(compgen
-W "${opts}" -- ${cur}))
100 complete
-F _tmux tmux
102 # END tmux completion