diff options
author | Carlo Sala <carlosalag@protonmail.com> | 2023-01-16 20:16:00 +0100 |
---|---|---|
committer | Carlo Sala <carlosalag@protonmail.com> | 2023-01-16 20:16:00 +0100 |
commit | 8f0e296dbf27026ea0515ebae0d3cc41f236ecdc (patch) | |
tree | 85ae63620d3a149de3eafca002d6bbc6d43d82bb /plugins/nsc | |
parent | 4b5076b5ec450d30270f31a68d0299392ada042d (diff) | |
download | zsh-8f0e296dbf27026ea0515ebae0d3cc41f236ecdc.tar.gz zsh-8f0e296dbf27026ea0515ebae0d3cc41f236ecdc.tar.bz2 zsh-8f0e296dbf27026ea0515ebae0d3cc41f236ecdc.zip |
feat(nsc): add completion plugin
Diffstat (limited to 'plugins/nsc')
-rw-r--r-- | plugins/nsc/README.md | 11 | ||||
-rw-r--r-- | plugins/nsc/nsc.plugin.zsh | 13 |
2 files changed, 24 insertions, 0 deletions
diff --git a/plugins/nsc/README.md b/plugins/nsc/README.md new file mode 100644 index 000000000..ce0d2c15c --- /dev/null +++ b/plugins/nsc/README.md @@ -0,0 +1,11 @@ +# NSC plugin + +This plugin adds completion for the [NSC](https://github.com/nats-io/nsc). + +To use it, add `nsc` to the plugins array in your zshrc file: + +```zsh +plugins=(... nsc) +``` + +This plugin does not add any aliases. diff --git a/plugins/nsc/nsc.plugin.zsh b/plugins/nsc/nsc.plugin.zsh new file mode 100644 index 000000000..daa599e8f --- /dev/null +++ b/plugins/nsc/nsc.plugin.zsh @@ -0,0 +1,13 @@ +if (( ! $+commands[nsc] )); then + return +fi + +# If the completion file doesn't exist yet, we need to autoload it and +# bind it to `nsc`. Otherwise, compinit will have already done that. +if [[ ! -f "$ZSH_CACHE_DIR/completions/_nsc" ]]; then + typeset -g -A _comps + autoload -Uz _nsc + _comps[nsc]=_nsc +fi + +nsc completion zsh >| "$ZSH_CACHE_DIR/completions/_nsc" &| |