mirror of
https://github.com/chubin/cheat.sh.git
synced 2024-12-03 03:24:22 +03:00
19 lines
433 B
Plaintext
19 lines
433 B
Plaintext
_cheatsh_complete_curl()
|
|
{
|
|
local cur prev opts
|
|
_get_comp_words_by_ref -n : cur
|
|
|
|
COMPREPLY=()
|
|
#cur="${COMP_WORDS[COMP_CWORD]}"
|
|
prev="${COMP_WORDS[COMP_CWORD-1]}"
|
|
opts="$(curl -s cheat.sh/:list | sed s@^@cheat.sh/@)"
|
|
|
|
if [[ ${cur} == cheat.sh/* ]] ; then
|
|
COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
|
|
__ltrim_colon_completions "$cur"
|
|
return 0
|
|
fi
|
|
}
|
|
complete -F _cheatsh_complete_curl curl
|
|
|