# (C) 2024 unrealapex

# Completion script for fzy

function completion/fzy {

        typeset OPTIONS ARGOPT PREFIX
        OPTIONS=( #>#
        "l: --lines:; how many lines to display"
        "p: --prompt:; input prompt"
        "s --show-scores; show the scores for each item"
        "t: --tty:; use tty instead of the default tty device"
        "q: --query:; use query as the initial search query"
        "e: --show-matches:; non-interactive mode"
        ) #<#

        command -f completion//parseoptions -es
        case $ARGOPT in
        (-)
                command -f completion//completeoptions
                ;;
        esac

}


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