# (C) 2011 magicant

# Completion script for the "hg" command.
# Supports Mercurial 1.9.3.

function completion/hg {

	typeset OPTIONS ARGOPT PREFIX
	OPTIONS=( #>#
	"--config:; specify a configuration option"
	"--cwd:; specify a directory to operate in"
	"--debug; enable debugging output"
	"--debugger start a debugger"
	"--encoding:; specify the character encoding"
	"--encodingmode:; specify the encoding mode"
	"h --help; print help"
	"y --noninteractive; don't ask anything; always assume the first option"
	"--profile; print command execution profile"
	"q --quiet; suppress output"
	"R: --repository:; specify the repository root directory"
	"--time; time command execution"
	"--traceback; print a traceback on error"
	"v --verbose; print detailed output"
	"--version"
	) #<#
	return 1 #TODO

}


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