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