cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
if [[ "${cur}" == -* ]] ; then
- COMPREPLY=( $(compgen -W "-a -A -p -P -H -b -d -v -h
+ COMPREPLY=( $(compgen -W "-a -A -p -P -H -b -d -v -s -n -h
--account --action --password --proxy --host --bash \
- --debug --version --help" -- ${cur}) )
+ --user --debug --dry-run --shrink-urls --version \
+ --help" -- ${cur}) )
fi
if [[ "${prev}" == "--host" ]] ; then
fi
if [[ "${prev}" == "--action" ]] ; then
- COMPREPLY=( $(compgen -W "friends public update" -- ${cur} ) )
+ COMPREPLY=( $(compgen -W "friends public update user replies" -- ${cur} ) )
fi
return 0