1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
# bash completion for set -*- shell-script -*-
_comp_cmd_set()
{
local cur prev words cword comp_args
_comp_initialize -- "$@" || return
local noargopts='!(-*|*[o]*)'
# shellcheck disable=SC2254
case "$prev" in
[+-]${noargopts}o)
_comp_compgen -- -A setopt
return
;;
esac
local i want_options=set
for ((i = 1; i < cword; i++)); do
if [[ ${words[i]} == -?(-) ]]; then
want_options=""
break
fi
done
if [[ $want_options && $cur == [+-]* ]]; then
local has_plus=""
if [[ $cur == +?([a-zA-Z]) ]]; then
has_plus=set
cur=${cur/#+/-}
fi
_comp_compgen_usage
if [[ $has_plus ]]; then
local i
for i in "${!COMPREPLY[@]}"; do
if [[ ${COMPREPLY[i]} == -- ]]; then
unset -v 'COMPREPLY[i]'
else
COMPREPLY[i]=${COMPREPLY[i]/#-/+}
fi
done
fi
return
fi
_comp_compgen_filedir
} &&
complete -F _comp_cmd_set set
# ex: filetype=sh
|