integrate with bash complete for autocompletion

This commit is contained in:
James Zhu 2019-10-21 15:18:47 +08:00
parent e5114a3e76
commit 201cd1d629
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
function _cheat_autocomplete {
wdlist='cheat -l|awk "{print $1}"'
COMPREPLY=(`compgen -W "$wdlist"`)
}
complete -F _cheat_autocomplete cheat