flutter_ecommerce_app icon indicating copy to clipboard operation
flutter_ecommerce_app copied to clipboard

Lose order of the completions problem

Open timqi opened this issue 3 years ago • 0 comments

https://github.com/skywind3000/z.lua/blob/a3d4f5db684ed6dfd3041e73d1d761f5fe944179/z.lua#L2243

_describe helper will lose the order of completion from zlua, suggest change it to code below for remain the completions order

compadd -U -V zlua "${(@)completions}"

and I'm looking for a way to make z complete like cd when zlua's output is empty:

_zlua_zsh_tab_completion() {
    (( $+compstate )) && compstate[insert]=menu
    local completions=(${(f)"$(_zlua --complete "${words/_zlua/z}")"})


    if [[ ${#completions[@]} == 0 ]]; then
        _files -/
    else
        compadd -U -V zlua "${(@)completions}"
    fi
}

hope @skywind3000 can handle the code merge

timqi avatar Jul 10 '21 07:07 timqi