Current Path : /usr/share/bash-completion/completions/ |
Current File : //usr/share/bash-completion/completions/xmodmap |
# 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 '-display -help -grammar -verbose -quiet -n -e -pm -pk -pke -pp' -- "$cur" ) ) return fi _filedir } && complete -F _xmodmap xmodmap # ex: filetype=sh