From 02f14a9cb152561a5e44062aac79f3b700403b40 Mon Sep 17 00:00:00 2001 From: navewindre Date: Sun, 13 Jul 2025 06:42:05 +0200 Subject: omz --- home/.oh-my-zsh/plugins/scw/README.md | 9 +++++++++ home/.oh-my-zsh/plugins/scw/scw.plugin.zsh | 14 ++++++++++++++ 2 files changed, 23 insertions(+) create mode 100644 home/.oh-my-zsh/plugins/scw/README.md create mode 100644 home/.oh-my-zsh/plugins/scw/scw.plugin.zsh (limited to 'home/.oh-my-zsh/plugins/scw') 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 -- cgit v1.2.3