xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
<root> / data / shell-completion / bash / vifm (26c2ac06142bdc166a2403b203b063c1448a99ed) (2,414B) (mode 100644) [raw]
# bash completion for vifm(1)           -*- shell-script -*-

# This function counts the number of args, excluding options and vifm commands.
# Single hyphen counts as arg.
_vifm_args() {
    local cword words

    # _comp__reassemble_words seems to be a new name of
    # __reassemble_comp_words_by_ref
    if [[ $(type -t _comp__reassemble_words) == function ]]; then
        _comp__reassemble_words "$1" words cword
    else
        __reassemble_comp_words_by_ref "$1" words cword
    fi

    args=1
    hyphen=false
    local w prev
    for w in "${words[@]:1:cword-1}"; do
        if [[ $w == - && $prev != --choose-@(dir|files) ]]; then
            hyphen=true
            args=$(($args+1))
        elif [[ $w != [-+]* ]]; then
            args=$(($args+1))
        fi
        prev="$w"
    done
}

_vifm() {
    local cur prev words cword split
    _init_completion || return

    case $prev in
        --delimiter|--on-choose|-c)
            return
            ;;
        --choose-dir|--choose-files)
            [[ ! $cur || $cur == - ]] && COMPREPLY=( - )
            _filedir
            return
            ;;
        --plugins-dir)
            _filedir -d
            return
            ;;
        --server-name)
            local -a servers
            mapfile -t servers < <(command vifm --server-list 2>/dev/null)
            COMPREPLY=()
            local quoted_match
            while read -r match; do
                printf -v quoted_match '%q' "$match"
                COMPREPLY+=("$quoted_match")
            done < <(compgen -W '"${servers[@]}"' -- "$cur")
            return
            ;;
    esac

    if [[ $cur == -* ]]; then
        COMPREPLY=( $( compgen -W '--select -f --choose-files --choose-dir
            --delimiter --on-choose --logging= --server-list --server-name
            --remote --remote-expr -c -h --help -v --version --no-configs
            --plugins-dir' \
            -- "$cur" ) )
        [[ $COMPREPLY == *= ]] && compopt -o nospace
        return
    elif [[ $cur == + ]]; then
        COMPREPLY=( $( compgen -W '+' -- "$cur" ) )
        compopt -o nospace
        return
    fi

    local args hyphen
    _vifm_args
    case $args in
        1|2)
            if ! $hyphen; then
                [[ ! $cur || $cur == - ]] && COMPREPLY=( - )
            fi
            _filedir
            ;;
    esac
} &&
complete -F _vifm vifm

# ex: ts=4 sw=4 et filetype=sh
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master