baz/completions/completely.yaml
Ari Archer d089e3f0fe
Fix completion
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
2022-06-19 01:35:59 +03:00

57 lines
1.4 KiB
YAML

baz:
- help
- setup
- unsetup
- install
- uninstall
- list
- update
- info
- upgrade
- version
- disable
- enable
baz install:
- local
- git
baz install local:
- <directory>
baz install git:
- git://
- https://
- git+https://
- http://
- git+http://
baz uninstall:
- $([ -d "$HOME/.local/share/baz/plugins" ] && find "$HOME/.local/share/baz/plugins" -maxdepth 1 -not -path . -and -not -path "$HOME/.local/share/baz/plugins" -type d -exec basename {} \;)
baz update:
- $([ -d "$HOME/.local/share/baz/plugins" ] && find "$HOME/.local/share/baz/plugins" -maxdepth 1 -not -path . -and -not -path "$HOME/.local/share/baz/plugins" -type d -exec basename {} \;)
baz info:
- exist
- local
- git
baz info exist:
- $([ -d "$HOME/.local/share/baz/plugins" ] && find "$HOME/.local/share/baz/plugins" -maxdepth 1 -not -path . -and -not -path "$HOME/.local/share/baz/plugins" -type d -exec basename {} \;)
baz info local:
- <directory>
baz info git:
- git://
- https://
- git+https://
- http://
- git+http://
baz disable:
- $([ -d "$HOME/.local/share/baz/plugins" ] && find "$HOME/.local/share/baz/plugins" -maxdepth 1 -not -path . -and -not -path "$HOME/.local/share/baz/plugins" -type d -exec basename {} \;)
baz enable:
- $([ -d "$HOME/.local/share/baz/plugins" ] && find "$HOME/.local/share/baz/plugins" -maxdepth 1 -not -path . -and -not -path "$HOME/.local/share/baz/plugins" -type d -exec basename {} \;)