summaryrefslogtreecommitdiffstats
path: root/zsh/oh-my-zsh/plugins/xcode/_xcselv
diff options
context:
space:
mode:
Diffstat (limited to 'zsh/oh-my-zsh/plugins/xcode/_xcselv')
-rw-r--r--zsh/oh-my-zsh/plugins/xcode/_xcselv19
1 files changed, 0 insertions, 19 deletions
diff --git a/zsh/oh-my-zsh/plugins/xcode/_xcselv b/zsh/oh-my-zsh/plugins/xcode/_xcselv
deleted file mode 100644
index f9861d5..0000000
--- a/zsh/oh-my-zsh/plugins/xcode/_xcselv
+++ /dev/null
@@ -1,19 +0,0 @@
-#compdef xcselv
-#autoload
-
-function _xcselv_compl_list_versions() {
- _omz_xcode_list_versions short
-}
-
-_arguments \
- '(-l -L -p)-h[prints a help message]' \
- '(-L -p -h)-l[lists installed Xcode versions]' \
- '(-l -p -h)-L[lists installed Xcode versions (long form)]' \
- '(-h -l -L)-p[prints active Xcode version]' \
- && ret=0
-
-local _xcode_versions
-_xcode_versions=($(_xcselv_compl_list_versions))
-_describe -t _xcode_versions 'version' _xcode_versions
-
-return 1