feat(ngrok): Add completions for ngrok

This commit is contained in:
Jonathan Stacks 2024-11-27 01:27:08 -06:00
commit 5630291eda
No known key found for this signature in database
GPG key ID: C272874194D83670
2 changed files with 34 additions and 0 deletions

View file

@ -0,0 +1,14 @@
# Autocompletion for ngrok
if (( ! $+commands[ngrok] )); then
return
fi
# If the completion file doesn't exist yet, we need to autoload it and
# bind it to `ngrok`. Otherwise, compinit will have already done that.
if [[ ! -f "$ZSH_CACHE_DIR/completions/_ngrok" ]]; then
typeset -g -A _comps
autoload -Uz _ngrok
_comps[ngrok]=_ngrok
fi
ngrok completion zsh >| "$ZSH_CACHE_DIR/completions/_ngrok" &|