2009-06-05 08:26:19 +02:00
|
|
|
# dict(1) completion
|
2009-10-01 20:54:51 +03:00
|
|
|
|
2009-06-05 08:26:19 +02:00
|
|
|
{ have dict || have rdict; } && {
|
|
|
|
_dictdata()
|
|
|
|
{
|
2009-10-04 19:42:50 +02:00
|
|
|
dict $host $port $1 2>/dev/null | sed -ne \
|
|
|
|
's/^['$'\t '']['$'\t '']*\([^'$'\t '']*\).*$/\1/p'
|
2009-06-05 08:26:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
_dict()
|
|
|
|
{
|
2009-10-04 19:42:50 +02:00
|
|
|
local cur prev host port db dictfile
|
2009-06-05 08:26:19 +02:00
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
COMPREPLY=()
|
|
|
|
cur=`_get_cword`
|
|
|
|
prev=${COMP_WORDS[COMP_CWORD-1]}
|
|
|
|
dictfile=/usr/share/dict/words
|
2009-06-05 08:26:19 +02:00
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
for (( i=1; i < COMP_CWORD; i++ )); do
|
|
|
|
case "${COMP_WORDS[i]}" in
|
|
|
|
-@(h|--host))
|
|
|
|
host=${COMP_WORDS[i+1]}
|
|
|
|
[ -n "$host" ] && host="-h $host"
|
|
|
|
i=$((++i))
|
|
|
|
;;
|
|
|
|
-@(p|-port))
|
|
|
|
port=${COMP_WORDS[i+1]}
|
|
|
|
[ -n "$port" ] && port="-p $port"
|
|
|
|
i=$((++i))
|
|
|
|
;;
|
|
|
|
-@(d|-database))
|
|
|
|
db=${COMP_WORDS[i+1]}
|
|
|
|
[ -n "$db" ] && host="-d $db"
|
|
|
|
i=$((++i))
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
2009-06-05 08:26:19 +02:00
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
if [[ "$cur" = -* ]]; then
|
2009-10-18 22:12:37 +03:00
|
|
|
COMPREPLY=( $( compgen -W '--host --port --database \
|
|
|
|
--match --strategy --config \
|
|
|
|
--nocorrect --dbs --strats \
|
|
|
|
--serverhelp --info --serverinfo \
|
|
|
|
--noauth --user --key --version \
|
|
|
|
--license --help --verbose --raw \
|
|
|
|
--pager --debug --html --pipesize --client' \
|
2009-10-04 19:42:50 +02:00
|
|
|
-- "$cur" ) )
|
|
|
|
return 0
|
|
|
|
fi
|
2009-06-05 08:26:19 +02:00
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
case "$prev" in
|
|
|
|
-@(d|-database|i|info))
|
|
|
|
COMPREPLY=( $( compgen -W '$( _dictdata -D )' -- "$cur" ) )
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
-@(s|-strategy))
|
|
|
|
COMPREPLY=( $( compgen -W '$( _dictdata -S )' -- "$cur" ) )
|
|
|
|
return 0
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
;;
|
|
|
|
esac
|
2009-06-05 08:26:19 +02:00
|
|
|
|
2009-10-04 19:42:50 +02:00
|
|
|
[ -r $dictfile ] && \
|
|
|
|
COMPREPLY=( $( compgen -W '$( cat $dictfile )' -- "$cur" ) )
|
2009-06-05 08:26:19 +02:00
|
|
|
}
|
2009-10-22 12:04:29 +03:00
|
|
|
complete -F _dict -o default dict rdict
|
2009-06-05 08:26:19 +02:00
|
|
|
}
|
2009-10-01 20:54:51 +03:00
|
|
|
|
|
|
|
# Local variables:
|
|
|
|
# mode: shell-script
|
2009-10-04 19:42:50 +02:00
|
|
|
# sh-basic-offset: 4
|
2009-10-01 20:54:51 +03:00
|
|
|
# sh-indent-comment: t
|
2009-10-04 19:42:50 +02:00
|
|
|
# indent-tabs-mode: nil
|
2009-10-01 20:54:51 +03:00
|
|
|
# End:
|
2009-10-04 19:42:50 +02:00
|
|
|
# ex: ts=4 sw=4 et filetype=sh
|