Skip to content

Instantly share code, notes, and snippets.

@vitalk
Created February 5, 2014 11:24
Show Gist options
  • Save vitalk/8821597 to your computer and use it in GitHub Desktop.
Save vitalk/8821597 to your computer and use it in GitHub Desktop.
function _tr() {
local cur="${COMP_WORDS[COMP_CWORD]}"
COMPREPLY=( ${COMPREPLY[@]:-} $(compgen -W "$(tmux -q list-sessions | cut -f 1 -d ':')" -- "${cur}") )
}
complete -F _tr tr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment