mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-15 23:08:16 +08:00
Compare commits
No commits in common. "ea8068aa3eeecc785249f2e83289e8a9294b9d6b" and "c80050d6f538d6d8d8942068ea9bf1d4de2b14e8" have entirely different histories.
ea8068aa3e
...
c80050d6f5
@ -1,11 +0,0 @@
|
||||
# tailscale
|
||||
|
||||
This plugin provides completion for [tailscale](https://tailscale.com/) (Easy software-defined networks using an implementation of wireguard).
|
||||
|
||||
To use it, add `tailscale` to the plugins array in your zshrc file.
|
||||
|
||||
```
|
||||
plugins=(... tailscale)
|
||||
```
|
||||
|
||||
**Author:** [@lukeab](https://github.com/lukeab)
|
||||
@ -1,13 +0,0 @@
|
||||
if (( ! $+commands[tailscale] )); then
|
||||
return
|
||||
fi
|
||||
|
||||
# If the completion file doesn't exist yet, we need to autoload it and
|
||||
# bind it to `tailscale`. Otherwise, compinit will have already done that.
|
||||
if [[ ! -f "$ZSH_CACHE_DIR/completions/_tailscale" ]]; then
|
||||
typeset -g -A _comps
|
||||
autoload -Uz _tailscale
|
||||
_comps[tailscale]=_tailscale
|
||||
fi
|
||||
|
||||
tailscale completion zsh >| "$ZSH_CACHE_DIR/completions/_tailscale" &|
|
||||
Loading…
Reference in New Issue
Block a user