2021-02-27 22:17:03 +01:00
|
|
|
#compdef ybcon
|
2021-02-28 22:28:05 +01:00
|
|
|
completeyfile='filename:_path_files -/ -g "*.ybcon"'
|
2021-02-27 22:17:03 +01:00
|
|
|
_ybcon() {
|
2021-02-28 22:28:05 +01:00
|
|
|
_arguments \
|
|
|
|
'( - 1)'{-h,--help}'[Print the help screen]' \
|
|
|
|
'( - 1)'--version'[Print the version]' \
|
2021-03-29 20:42:52 +02:00
|
|
|
'( - 1)'--target='[Set the transpilation target]:opt:(lua js py)' \
|
2021-02-28 22:28:05 +01:00
|
|
|
'( - 1)'{-p,--printresult}'[Enable printing the transpilation result to stdout]' \
|
|
|
|
"*:$completeyfile"
|
2021-02-27 22:17:03 +01:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
|
|
|
_ybcon
|