Add zsh/oh my zsh/w10k
This commit is contained in:
19
zsh/.oh-my-zsh/plugins/xcode/_xcselv
Normal file
19
zsh/.oh-my-zsh/plugins/xcode/_xcselv
Normal file
@ -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
|
Reference in New Issue
Block a user