Files
zsh/plugins/docker-project-manager/completions/_docker-project-manager

12 lines
325 B
Plaintext

#compdef docker-project-manager
_docker_project_manager_comp() {
_arguments '--pull[Pull the project(s)]' \
'*:project(s):_files -W /docker -/' \
+ '(action)' \
'--up[Start the project(s)]' \
'--down[Stop the project(s)]' \
'--restart[Restart the project(s)]'
}
_docker_project_manager_comp "$@"