#compdef pc profile-cleaner

_pc() {
	local -a options

	options=(
		'b:Brave (stable, beta, dev and nightly)'
		'c:Chromium (stable, beta, and dev)'
		'ck:ConKeror'
		'f:Firefox (stable and beta)'
		'fa:Falkon'
		'gc:Google-Chrome (stable, beta, and dev)'
		'h:Heftigs aurora'
		'i:Icecat'
		'id:IceDove'
		'ix:InoX'
		'm:Midori'
		'n:Newsbeuter'
		'o:Opera (stable, next, and developer)'
		'pm:PaleMoon'
		'q:QupZilla'
		's:Seamonkey'
		't:Thunderbird'
		'to:TOrbrowser'
		'p:Paths'
		'v:Vivaldi (stable and snapshot)'
	)

	_describe 'options' options
}

_pc
