mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-20 00:47:45 +08:00
Compare commits
2 Commits
c80050d6f5
...
ea8068aa3e
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ea8068aa3e | ||
|
|
e2ba73af63 |
11
plugins/tailscale/README.md
Normal file
11
plugins/tailscale/README.md
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
# 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)
|
||||||
13
plugins/tailscale/tailscale.plugin.zsh
Normal file
13
plugins/tailscale/tailscale.plugin.zsh
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
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