1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-07 16:00:41 +01:00
Files
oh-my-zsh/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