summaryrefslogtreecommitdiff
path: root/completions/xmodmap
blob: 38bc6391654702e2889f5ac7b75fe96548a8d3a1 (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