You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
469 B
19 lines
469 B
#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
|
|
|