feat(ngrok): add completion plugin (#12826)

This commit is contained in:
Jonathan Stacks
2024-11-28 00:57:21 -08:00
committed by GitHub
parent 366d254352
commit 69a6359f7c
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" &|