Latest
This commit is contained in:
parent
eddd551856
commit
277ba71125
4 changed files with 27 additions and 11 deletions
|
@ -622,6 +622,7 @@ softwareGroups:
|
||||||
- libimobiledevice
|
- libimobiledevice
|
||||||
- ntl
|
- ntl
|
||||||
- openjdk
|
- openjdk
|
||||||
|
- please
|
||||||
- rust
|
- rust
|
||||||
- snapcraft
|
- snapcraft
|
||||||
- solidity
|
- solidity
|
||||||
|
|
|
@ -158,6 +158,13 @@ elif [ -f "$COMPLETION_DIR/npm.bash" ]; then
|
||||||
rm "$COMPLETION_DIR/npm.bash"
|
rm "$COMPLETION_DIR/npm.bash"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
### Please
|
||||||
|
if command -v plz > /dev/null; then
|
||||||
|
plz --completion_script > "$COMPLETION_DIR/please.bash"
|
||||||
|
elif [ -f "$COMPLETION_DIR/please.bash" ]; then
|
||||||
|
rm "$COMPLETION_DIR/please.bash"
|
||||||
|
fi
|
||||||
|
|
||||||
### Poetry
|
### Poetry
|
||||||
if command -v poetry > /dev/null; then
|
if command -v poetry > /dev/null; then
|
||||||
poetry completions bash > "$COMPLETION_DIR/poetry.bash"
|
poetry completions bash > "$COMPLETION_DIR/poetry.bash"
|
||||||
|
|
|
@ -281,12 +281,12 @@ if command -v antigen > /dev/null; then
|
||||||
antigen bundle copybuffer
|
antigen bundle copybuffer
|
||||||
# TODO: Add as an alias available to Bash as well
|
# TODO: Add as an alias available to Bash as well
|
||||||
antigen bundle encode64
|
antigen bundle encode64
|
||||||
antigen bundle fd
|
# antigen bundle fd # Added by bash completions script
|
||||||
antigen bundle flutter
|
antigen bundle flutter
|
||||||
antigen bundle fzf
|
# antigen bundle fzf # Added by bash completions script
|
||||||
antigen bundle gcloud
|
# antigen bundle gcloud # Added by bash completions script
|
||||||
antigen bundle gem
|
antigen bundle gem
|
||||||
antigen bundle gh
|
# antigen bundle gh # Added by bash completions script
|
||||||
antigen bundle git-auto-fetch
|
antigen bundle git-auto-fetch
|
||||||
antigen bundle git-extras
|
antigen bundle git-extras
|
||||||
antigen bundle git-flow
|
antigen bundle git-flow
|
||||||
|
@ -295,8 +295,8 @@ if command -v antigen > /dev/null; then
|
||||||
# antigen bundle gnu-utils
|
# antigen bundle gnu-utils
|
||||||
antigen bundle golang
|
antigen bundle golang
|
||||||
# antigen bundle gpg-agent
|
# antigen bundle gpg-agent
|
||||||
antigen bundle gradle
|
# antigen bundle gradle # Added by bash completions script
|
||||||
antigen bundle helm
|
# antigen bundle helm # Added by bash completions script
|
||||||
antigen bundle heroku
|
antigen bundle heroku
|
||||||
antigen bundle httpie
|
antigen bundle httpie
|
||||||
antigen bundle ionic
|
antigen bundle ionic
|
||||||
|
@ -304,7 +304,7 @@ if command -v antigen > /dev/null; then
|
||||||
antigen bundle isodate
|
antigen bundle isodate
|
||||||
# antigen bundle keychain
|
# antigen bundle keychain
|
||||||
antigen bundle kn
|
antigen bundle kn
|
||||||
antigen bundle kubectl
|
# antigen bundle kubectl # Added by bash completions script
|
||||||
antigen bundle kubectx
|
antigen bundle kubectx
|
||||||
antigen bundle last-working-dir
|
antigen bundle last-working-dir
|
||||||
antigen bundle lxd
|
antigen bundle lxd
|
||||||
|
@ -321,14 +321,14 @@ if command -v antigen > /dev/null; then
|
||||||
antigen bundle ng
|
antigen bundle ng
|
||||||
antigen bundle node-docs
|
antigen bundle node-docs
|
||||||
antigen bundle nomad
|
antigen bundle nomad
|
||||||
antigen bundle npm
|
# antigen bundle npm # Added by bash completions script
|
||||||
antigen bundle oc
|
antigen bundle oc
|
||||||
antigen bundle pass
|
antigen bundle pass
|
||||||
# antigen bundle pep8
|
# antigen bundle pep8
|
||||||
antigen bundle pip
|
antigen bundle pip
|
||||||
# antigen bundle pipenv
|
# antigen bundle pipenv
|
||||||
antigen bundle pm2
|
antigen bundle pm2
|
||||||
antigen bundle poetry
|
# antigen bundle poetry # Added by bash completions script
|
||||||
antigen bundle qrcode
|
antigen bundle qrcode
|
||||||
antigen bundle react-native
|
antigen bundle react-native
|
||||||
antigen bundle redis-cli
|
antigen bundle redis-cli
|
||||||
|
@ -349,9 +349,9 @@ if command -v antigen > /dev/null; then
|
||||||
antigen bundle urltools
|
antigen bundle urltools
|
||||||
antigen bundle ufw
|
antigen bundle ufw
|
||||||
antigen bundle vagrant
|
antigen bundle vagrant
|
||||||
antigen bundle volta
|
# antigen bundle volta # Added by bash completions script
|
||||||
antigen bundle web-search
|
antigen bundle web-search
|
||||||
antigen bundle wp-cli
|
# antigen bundle wp-cli # Added by bash completions script
|
||||||
antigen bundle docker
|
antigen bundle docker
|
||||||
antigen bundle docker-compose
|
antigen bundle docker-compose
|
||||||
antigen bundle yarn
|
antigen bundle yarn
|
||||||
|
|
|
@ -7528,6 +7528,14 @@ softwarePackages:
|
||||||
brew: tldr
|
brew: tldr
|
||||||
npm: tldr
|
npm: tldr
|
||||||
_type: cli
|
_type: cli
|
||||||
|
please:
|
||||||
|
_bin: plz
|
||||||
|
_desc:
|
||||||
|
_docs:
|
||||||
|
_github:
|
||||||
|
_home:
|
||||||
|
_name: Please
|
||||||
|
brew: thought-machine/please/please
|
||||||
tmuxinator:
|
tmuxinator:
|
||||||
_bin: tmuxinator
|
_bin: tmuxinator
|
||||||
_desc: Manage complex tmux sessions easily
|
_desc: Manage complex tmux sessions easily
|
||||||
|
|
Loading…
Reference in a new issue