Moved directory into correct location under zsh

This commit is contained in:
Chris King
2025-01-22 22:03:26 -08:00
parent 5542092377
commit d8e43de32e
2 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#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 "$@"