1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2026-01-13 22:28:25 +08:00
ohmyzsh-mirror/plugins/truffle/_truffle

17 lines
244 B
Plaintext

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