ohmyzsh/plugins/bun/bun.plugin.zsh
Pedro Barbiero f5795c31a2
fix(bun): bun completions should explicitly set SHELL
`bun completions` results in a file according to the current $SHELL, but if you don´t have ZSH as your $SHELL, the plugin will create a bash script as the completions script. This commit fixes that case.

Users with broken completions probably need to remove their `$ZSH_CACHE_DIR/completions/_bun` so it is created again.
2024-07-02 11:18:52 -03:00

14 lines
427 B
Bash

# If Bun is not found, don't do the rest of the script
if (( ! $+commands[bun] )); then
return
fi
# If the completion file doesn't exist yet, we need to autoload it and
# bind it to `bun`. Otherwise, compinit will have already done that.
if [[ ! -f "$ZSH_CACHE_DIR/completions/_bun" ]]; then
typeset -g -A _comps
autoload -Uz _bun
_comps[bun]=_bun
fi
SHELL=zsh bun completions >| "$ZSH_CACHE_DIR/completions/_bun" &|