#compdef pb
_pb() {
local -a commands
commands=(
'ix.io'
'0x0.st'
'asis.io'
'catbox.moe'
'clbin.com'
'dmca.gripe'
'doko.me'
'dumpz.org'
'fiery.me'
'lewd.se'
'mixtape.moe'
'n33r.tk'
'p.iotek.org'
'pomf.cat'
'ptpb.pw'
'rokket.space'
'sprunge.us'
'uguu.se'
'pastebin.com'
)
if (( CURRENT == 2 )); then
_describe -t commands 'commands' commands
else
_files
fi
return 0
}
_pb