summaryrefslogtreecommitdiffstats
path: root/.config/zsh/oh-my-zsh/plugins/xcode/_xcselv
diff options
context:
space:
mode:
authorLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2025-02-13 14:13:49 +0530
committerLibravatarLibravatar Biswakalyan Bhuyan <biswa@surgot.in> 2025-02-13 14:13:49 +0530
commit8a2e1006b3b272126332aa064f3ad95387129544 (patch)
tree944c80ac612a65980d94a54ba11b6c7102037ecf /.config/zsh/oh-my-zsh/plugins/xcode/_xcselv
parentdcbb16d8b08ff5956abef5e6478b59df2e93ad35 (diff)
downloaddotfiles-master.tar.gz
dotfiles-master.tar.bz2
dotfiles-master.zip
new dot filesHEADmaster
Diffstat (limited to '.config/zsh/oh-my-zsh/plugins/xcode/_xcselv')
-rw-r--r--.config/zsh/oh-my-zsh/plugins/xcode/_xcselv19
1 files changed, 19 insertions, 0 deletions
diff --git a/.config/zsh/oh-my-zsh/plugins/xcode/_xcselv b/.config/zsh/oh-my-zsh/plugins/xcode/_xcselv
new file mode 100644
index 0000000..f9861d5
--- /dev/null
+++ b/.config/zsh/oh-my-zsh/plugins/xcode/_xcselv
@@ -0,0 +1,19 @@
+#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