mirror of
git://git.code.sf.net/p/zsh/code
synced 2024-11-19 21:44:11 +01:00
46 lines
1.5 KiB
Plaintext
46 lines
1.5 KiB
Plaintext
#compdef ruby
|
|
|
|
# http://www.ruby-lang.org/
|
|
|
|
local expl curcontext="$curcontext" line state
|
|
typeset -A opt_args
|
|
local dirs
|
|
|
|
_arguments -C -s -S \
|
|
'(1 * -)--version[print version]' \
|
|
'-c[syntax check]' \
|
|
'-w[verbose mode without printing version message at the beginning]' \
|
|
'(-d --debug)'{-d,--debug}'[debug mode]' \
|
|
'(1 * -)'{-h,--help}'[print help message]' \
|
|
'-l[automatic line-ending processing]' \
|
|
'(-n)-p[loop and print]' \
|
|
'(-p)-n[loop]' \
|
|
'-a[auto-split mode]' \
|
|
'-s[switch parsing]' \
|
|
'-0-[input record separator]:input record separator in octal:' \
|
|
'-K-[specifies KANJI (Japanese) encoding]:KANJI encoding:((e\:EUC-JP s\:Shift_JIS u\:UTF-8 N\:None))' \
|
|
'-F-[input field separator]:input field separator:' \
|
|
'-i-[in-place-edit mode]:suffix for in-place-edit mode:(.bak)' \
|
|
'*-I+[library directory]:library directory:_files -/' \
|
|
'*-r+[require library]:library name:->library' \
|
|
'-S[search ruby script in PATH]' \
|
|
'(-v --verbose)'{-v,--verbose}'[verbose mode]' \
|
|
'-x-[embedded script]:directory:_files -/' \
|
|
'-C+[chdir]:directory:_files -/' \
|
|
'(-y --yydebug)'{-y,--yydebug}'[compiler debug mode]' \
|
|
'(1 * -)--copyright[copyright notice]' \
|
|
'-T-[taint check]:taint level:({0..4})' \
|
|
'(1)*-e+[ruby command]:ruby command:' \
|
|
'(-)1:script file:_files -g \*.rb' \
|
|
'*:script argument:_files' && return 0
|
|
|
|
case $state in
|
|
library)
|
|
dirs=($(_call_program directories $words[1] -e 'print\ \$:.join\(\"\\n\"\)'))
|
|
_wanted directories expl library \
|
|
_path_files -W dirs && return 0
|
|
;;
|
|
esac
|
|
|
|
return 1
|