Skip to content

Commit

Permalink
feat(nsc): add completion plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosala committed Jan 16, 2023
1 parent 4b5076b commit 8f0e296
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
11 changes: 11 additions & 0 deletions plugins/nsc/README.md
Original file line number Diff line number Diff line change
@@ -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.
13 changes: 13 additions & 0 deletions plugins/nsc/nsc.plugin.zsh
Original file line number Diff line number Diff line change
@@ -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" &|

0 comments on commit 8f0e296

Please sign in to comment.