ohmyzsh/plugins/truffle/_truffle

16 lines
244 B
Text

#compdef truffle
_arguments \
'1: :->command' \
'*: :->args'
case $state in
command)
local commands=("init" "compile" "migrate" "test" "exec" "develop" "console")
_describe "command" commands
;;
*)
_files
;;
esac