cheat/autocompletion/_cheat.zsh

6 lines
115 B
Bash
Raw Normal View History

2013-08-29 19:05:46 +04:00
#compdef cheat
2013-10-03 23:55:52 +04:00
declare -a cheats
cheats=$(cheat -l | cut -d' ' -f1)
_arguments "1:cheats:(${cheats})" && return 0