mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-16 08:58:35 +01:00
5 lines
115 B
Bash
5 lines
115 B
Bash
#compdef cheat
|
|
|
|
declare -a cheats
|
|
cheats=$(cheat -l | cut -d' ' -f1)
|
|
_arguments "1:cheats:(${cheats})" && return 0
|