summaryrefslogtreecommitdiff
path: root/completions/xmodmap
blob: 7cfa230bd555f47df1aaf141fa0e22de6ab478ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# xmodmap(1) completion                                    -*- shell-script -*-

_xmodmap()
{
    local cur prev words cword
    _init_completion || return

    case $prev in
        -display | -e)
            return
            ;;
    esac

    if [[ $cur == -* ]]; then
        COMPREPLY=($(compgen -W '$(_parse_help "$1" -help)' -- "$cur"))
        return
    fi

    _filedir
} &&
    complete -F _xmodmap xmodmap

# ex: filetype=sh