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