]> git.rmz.io Git - dotfiles.git/blobdiff - zsh/plugins/capistrano/_capistrano
remove oh-my-zsh
[dotfiles.git] / zsh / plugins / capistrano / _capistrano
diff --git a/zsh/plugins/capistrano/_capistrano b/zsh/plugins/capistrano/_capistrano
deleted file mode 100644 (file)
index cf6b50c..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#compdef cap
-#autoload
-
-if [ -f config/deploy.rb ]; then
-  if [[ ! -f .cap_tasks~ || config/deploy.rb -nt .cap_tasks~ ]]; then
-    echo "\nGenerating .cap_tasks~..." > /dev/stderr
-    cap --tasks | grep '#' | cut -d " " -f 2 > .cap_tasks~
-  fi
-  compadd `cat .cap_tasks~`
-fi