dotfiles

*nix config files
git clone git://git.pyratebeard.net/dotfiles.git
Log | Files | Refs | README

_pb (314B)


      1 #compdef pb
      2 _pb() {
      3 	local -a commands
      4 	commands=(
      5 		'ix.io'
      6 		'0x0.st'
      7 		'catbox.moe'
      8 		'clbin.com'
      9 		'dmca.gripe'
     10 		'dumpz.org'
     11 		'fiery.me'
     12 		'p.iotek.org'
     13 		'sprunge.us'
     14 		'uguu.se'
     15 		'pastebin.com'
     16 	)
     17 	if (( CURRENT == 2 )); then
     18 		_describe -t commands 'commands' commands
     19 	else
     20 		_files
     21 	fi
     22 	return 0
     23 }
     24 _pb