mirror of
https://github.com/Erreur32/cheat.git
synced 2024-10-31 21:11:07 +01:00
0a3fd3559c
The `setup.py` script no longer attempts to install files to privileged system directories. (Previously, it attempted to do this in order to enable command-line autocompletion.) In lieu of doing this within the installer directly, I have simply included brief instructions explaining how to configure this manually. Version bumped accordingly.
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
|