cheat-fork-echo/autocompletion/cheat.zsh
2013-10-03 23:55:52 +04:00

6 lines
115 B
Bash

#compdef cheat
declare -a cheats
cheats=$(cheat -l | cut -d' ' -f1)
_arguments "1:cheats:(${cheats})" && return 0