]> src.twobees.de Git - dotfiles.git/blobdiff - stow/oh-my-zsh/.oh-my-zsh/plugins/helm/helm.plugin.zsh
rm oh-my-zsh
[dotfiles.git] / stow / oh-my-zsh / .oh-my-zsh / plugins / helm / helm.plugin.zsh
diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/helm/helm.plugin.zsh b/stow/oh-my-zsh/.oh-my-zsh/plugins/helm/helm.plugin.zsh
deleted file mode 100644 (file)
index 151c43d..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-if (( ! $+commands[helm] )); then
-  return
-fi
-
-# If the completion file does not exist, generate it and then source it
-# Otherwise, source it and regenerate in the background
-if [[ ! -f "$ZSH_CACHE_DIR/completions/_helm" ]]; then
-  helm completion zsh | tee "$ZSH_CACHE_DIR/completions/_helm" >/dev/null
-  source "$ZSH_CACHE_DIR/completions/_helm"
-else
-  source "$ZSH_CACHE_DIR/completions/_helm"
-  helm completion zsh | tee "$ZSH_CACHE_DIR/completions/_helm" >/dev/null &|
-fi