# (C) 2010-2015 magicant

# Completion script for the "read" built-in command.

function completion/read {

        typeset OPTIONS ARGOPT PREFIX
        OPTIONS=( #>#
        "A --array; assign words to an array"
        "e --line-editing; use line-editing"
        "P --ps1; use \$PS1 as a prompt"
        "p: --prompt:; specify a prompt"
        "r --raw-mode; don't treat backslashes as escapes"
        "--help"
        ) #<#

        command -f completion//parseoptions -es
        case $ARGOPT in
        (-)
                command -f completion//completeoptions
                ;;
        (p|--prompt)
                complete -P "$PREFIX" -fv
                ;;
        (*)
                complete -v
                ;;
        esac

}


# vim: set ft=sh ts=8 sts=8 sw=8 et:
