ligo/src/bin_client/bash-completion.sh

55 lines
1.9 KiB
Bash
Raw Normal View History

2017-09-27 11:55:20 +04:00
_tezos-client_complete()
{
local cur_word prev_word type_list
2017-09-27 11:55:20 +04:00
cur_word="${COMP_WORDS[COMP_CWORD]}"
prev_word="${COMP_WORDS[COMP_CWORD-1]}"
# Tezos script
script=${COMP_WORDS[0]}
reply=$($script bash_autocomplete "$prev_word" "$cur_word" ${COMP_WORDS[@]} 2>/dev/null)
2017-09-27 11:55:20 +04:00
COMPREPLY=($(compgen -W "$reply" -- $cur_word))
return 0
}
_tezos-alphanet_complete()
{
script="${COMP_WORDS[0]}"
second="${COMP_WORDS[1]}"
cur_word="${COMP_WORDS[COMP_CWORD]}"
case "$second" in
container)
COMPREPLY=($(compgen -W "start stop status" -- $cur_word));;
node)
COMPREPLY=($(compgen -W "start stop status log" -- $cur_word));;
baker)
COMPREPLY=($(compgen -W "start stop status log" -- $cur_word));;
endorser)
COMPREPLY=($(compgen -W "start stop status log" -- $cur_word));;
client)
;;
# prev_word="${COMP_WORDS[COMP_CWORD-1]}"
# unset COMP_WORDS[0]
# echo $script client bash_autocomplete "$prev_word" "$cur_word" ${COMP_WORDS[@]:1} > /tmp/completions
# reply=$($script client bash_autocomplete "$prev_word" "$cur_word" ${COMP_WORDS[@]:1})
# COMPREPLY=$($(compgen -W "$reply" -- $cur_word));;
*)
COMPREPLY=($(compgen -W "start restart \
clear status stop kill head \
go_alpha_go shell client check_script update_script \
container node baker endorser" -- $cur_word));;
esac
2017-09-27 11:55:20 +04:00
return 0
}
# Register _pss_complete to provide completion for the following commands
complete -F _tezos-client_complete tezos-client
complete -F _tezos-client_complete tezos-admin-client
complete -F _tezos-client_complete tezos-baker-alpha
complete -F _tezos-client_complete tezos-endorser-alpha
complete -F _tezos-client_complete tezos-accuser-alpha
complete -F _tezos-alphanet_complete alphanet.sh