#compdef -p redo(|-(info|if(change|create|delete)))
## **************************************************************************
## For copyright and licensing terms, see the file named COPYING.
## **************************************************************************
#
# Z Shell command-line completion

function _redo()
{
	local lstate state
	local -a common
	common=(-s '--help[Display option help]' '--usage[Display option usage]')

	case "${service}" in
		(*)
			_arguments -A '-*' $common '*:targets:_files' -- ;;
	esac
}

_redo "$@"
