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