# bash completion for yafc

have yafc &&
_yafc()
{
    local cur

    COMPREPLY=()
    cur=`_get_cword`

    if [ $COMP_CWORD -eq 1 ] && [ -f ~/.yafc/bookmarks ]; then
        COMPREPLY=( $( compgen -W '$( sed -nre "/machine/ s/.* alias '\''([^'\'']*)'\''/\1/ p" \
            ~/.yafc/bookmarks )' -- "$cur" ) )
    fi

    return 0
} &&
complete -F _yafc $default yafc

# Local variables:
# mode: shell-script
# sh-basic-offset: 4
# sh-indent-comment: t
# indent-tabs-mode: nil
# End:
# ex: ts=4 sw=4 et filetype=sh
