# (C) 2010 magicant

# Completion script for the "complete" built-in command.

function completion/complete {

	typeset OPTIONS ARGOPT PREFIX
	OPTIONS=( #>#
	"--help"
	) #<#

	command -f completion//parseoptions -es
	case $ARGOPT in
	(-)
		command -f completion//completeoptions
		;;
	esac

}


# vim: set ft=sh ts=8 sts=8 sw=8 noet:
