summaryrefslogtreecommitdiff
path: root/home/.oh-my-zsh/plugins/scw
diff options
context:
space:
mode:
Diffstat (limited to 'home/.oh-my-zsh/plugins/scw')
-rw-r--r--home/.oh-my-zsh/plugins/scw/README.md9
-rw-r--r--home/.oh-my-zsh/plugins/scw/scw.plugin.zsh14
2 files changed, 23 insertions, 0 deletions
diff --git a/home/.oh-my-zsh/plugins/scw/README.md b/home/.oh-my-zsh/plugins/scw/README.md
new file mode 100644
index 0000000..5dd630d
--- /dev/null
+++ b/home/.oh-my-zsh/plugins/scw/README.md
@@ -0,0 +1,9 @@
+## Scaleway CLI plugin
+
+This plugin adds completion for [scw](https://github.com/scaleway/scaleway-cli), the command line interface for Scaleway.
+
+To use it, add `scw` to the plugins array in your zshrc file:
+
+```zsh
+plugins=(... scw)
+```
diff --git a/home/.oh-my-zsh/plugins/scw/scw.plugin.zsh b/home/.oh-my-zsh/plugins/scw/scw.plugin.zsh
new file mode 100644
index 0000000..cd8ed4a
--- /dev/null
+++ b/home/.oh-my-zsh/plugins/scw/scw.plugin.zsh
@@ -0,0 +1,14 @@
+if (( ! $+commands[scw] )); then
+ return
+fi
+
+_scw () {
+ output=($(scw autocomplete complete zsh -- ${CURRENT} ${words}))
+ opts=('-S' ' ')
+ if [[ $output == *= ]]; then
+ opts=('-S' '')
+ fi
+ compadd "${opts[@]}" -- "${output[@]}"
+}
+
+compdef _scw scw