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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
#compdef rxvt urxvt urxvtc urxvt256c urxvt256cc urxvt256c-ml urxvt256c-mlc
local curcontext="$curcontext" state line expl ret=1
local -a suf long_args
typeset -A opt_args
typeset -U extensions
[[ -prefix -- ]] || zstyle -T ":completion:${curcontext}:options" prefix-needed &&
: ${(A)long_args:=${${${${${${${(M)${(f)"$(urxvt --help 2>&1)"}:# *:*}/ /--}// /}/fontname/fontname:->fonts}/:color/:color:_x_color}/boolean/boolean:(true false)}/:(searchpath|file)/:path:_files}}
_x_arguments \
-+{rv,ls,j,ss,ptab,sb,sr,st,si,sk,sw,ip,tr,ut,vb,tcw,insecure,uc,bc,pb,is,override-redirect,hold,bl,sbg,ssc,ssr} \
'-tn[specify value of TERM]:terminal type:_terminals' \
'-C[intercept console messages]' \
'-iconic[start iconic]' \
'-cd[start shell in specific directory]:directory:_files -/' \
'-sbt[scroll bar thickness]:pixels' \
'-tint[tint color]:color:_x_color' \
'-fade[make colors darker when losing focus]:percentage' \
'-fadecolor[specify target color for off-focus fading]:color:_x_color' \
'-sh[shade background when tinting]:percentage' \
'-bg[background color]:color:_x_color' \
'-fg[foreground color]:color:_x_color' \
'-hc[highlight color]:color:_x_color' \
'-cr[cursor color]:color:_x_color' \
'-pr[pointer color]:color:_x_color' \
'-pr2[pointer background color]:color:_x_color' \
'-bd[border color]:color:_x_color' \
'-pixmap:pixmap:_files' \
'-icon[specify icon image]:image file:_files' \
'-fn:normal font:->fonts' \
'-fb:bold font:->fonts' \
'-fi:italic font:->fonts' \
'-fbi:bold italic font:->fonts' \
'-im:input method:(SCIM)' \
'-pe[enable perl extension]:perl extension:->extensions' \
'-pt:input style:(OverTheSpot OffTheSpot Root)' \
'-imlocale:locale input method:_locales' \
'-imfont:fontset for styles OverTheSpot and OffTheSpot:_x_font' \
'-name:client instance, icon, and title strings' \
'(-T -title)'{-T,-title}':title name for window' \
'-n:icon name for window' \
'-sl:save lines' \
'-embed:window id to embed terminal in:_x_window' \
'-pty-fd:file descriptor of pty to use' \
'-w:external border in pixels' \
'-b:internal border in pixels' \
'-lsp:number of extra pixels between rows' \
'-letsp:letter spacing adjustment' \
'-mod:meta modifier:_x_modifier' \
'-e:program: _command_names -e:*::program arguments: _normal' \
'-help[print help]' \
'--help[list long options]' $long_args && ret=0
case $state in
fonts)
if compset -P xft:; then
_xft_fonts && ret=0
else
_x_font && ret=0
fi
;;
extensions)
compset -S ',*' || suf=( -qS , )
compset -P '*,'; compset -P -
extensions=( {$commands[urxvt]:h:h,/usr,/usr/local}/lib{,64}/urxvt/perl(N) )
_wanted extensions expl 'perl extension' compadd $suf[@] default \
$extensions/*(:t) && ret=0
;;
esac
return ret
|