mirror of
https://github.com/cheat/cheat.git
synced 2024-11-17 01:18:29 +01:00
6 lines
150 B
Bash
Executable file
6 lines
150 B
Bash
Executable file
function _cheat_autocomplete {
|
|
wdlist='cheat -l|awk "{print $1}"'
|
|
COMPREPLY=(`compgen -W "$wdlist"`)
|
|
}
|
|
|
|
complete -F _cheat_autocomplete cheat
|