File: zsh-completion

package info (click to toggle)
profile-cleaner 2.46-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 116 kB
  • sloc: sh: 393; makefile: 38
file content (32 lines) | stat: -rw-r--r-- 559 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#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:Newsboat'
		'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