Files
zsh/plugins/docker-project-manager/completions/_docker-project-manager
2025-01-22 22:03:26 -08:00

12 lines
311 B
Plaintext

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