Server IP : 103.119.228.120 / Your IP : 3.129.195.254 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/zsh/5.0.2/functions/ |
Upload File : |
#autoload # Generate all possible completions. Note that this is not intended as # a normal completion function, but as one possible value for the # completer style. local comp name oldcontext ret=1 service typeset -T curcontext="$curcontext" ccarray oldcontext="$curcontext" # If we have a user-supplied context name, use only that. if [[ -n "$compcontext" ]]; then if [[ "${(t)compcontext}" = *array* ]]; then local expl _wanted values expl value compadd -a - compcontext elif [[ "${(t)compcontext}" = *assoc* ]]; then local expl tmp i tmp=() for i in "${(@k)compcontext[(R)*[^[:blank:]]]}"; do tmp=( "$tmp[@]" "${i}:${compcontext[$i]}" ) done tmp=( "$tmp[@]" "${(k@)compcontext[(R)[[:blank:]]#]}" ) _describe -t values value tmp elif [[ "$compcontext" = *:*:* ]]; then local tag="${${compcontext%%:*}:-values}" local descr="${${${compcontext#${tag}:}%%:*}:-value}" local action="${compcontext#${tag}:${descr}:}" expl ws ret=1 case "$action" in \ #) _message -e "$tag" "$descr";; \(\(*\)\)) eval ws\=\( "${action[3,-3]}" \) _describe -t "$tag" "$descr" ws;; \(*\)) eval ws\=\( "${action[2,-2]}" \) _wanted "$tag" expl "$descr" compadd -a - ws;; \{*\}) _tags "$tag" while _tags; do while _next_label "$tag" expl "$descr"; do eval "$action[2,-2]" && ret=0 done (( ret )) || break done;; \ *) eval ws\=\( "$action" \) _tags "$tag" while _tags; do while _next_label "$tag" expl "$descr"; do "$ws[@]" done (( ret )) || break done;; *) eval ws\=\( "$action" \) _tags "$tag" while _tags; do while _next_label "$tag" expl "$descr"; do "$ws[1]" "$expl[@]" "${(@)ws[2,-1]}" done (( ret )) || break done;; esac else ccarray[3]="$compcontext" comp="$_comps[$compcontext]" [[ -n "$comp" ]] && eval "$comp" fi return fi # An entry for `-first-' is the replacement for `compctl -T' comp="$_comps[-first-]" if [[ -n "$comp" ]]; then service="${_services[-first-]:--first-}" ccarray[3]=-first- eval "$comp" && ret=0 if [[ "$_compskip" = all ]]; then _compskip= return ret fi fi # If we are inside `vared' and we don't have a $compcontext, we treat # this like a parameter assignment. Which it is. [[ -n $compstate[vared] ]] && compstate[context]=vared # For arguments and command names we use the `_normal' function. ret=1 if [[ "$compstate[context]" = command ]]; then curcontext="$oldcontext" _normal -s && ret=0 else # Let's see if we have a special completion definition for the other # possible contexts. local cname="-${compstate[context]:s/_/-/}-" ccarray[3]="$cname" comp="$_comps[$cname]" service="${_services[$cname]:-$cname}" # If not, we use default completion, if any. if [[ -z "$comp" ]]; then if [[ "$_compskip" = *default* ]]; then _compskip= return 1 fi comp="$_comps[-default-]" service="${_services[-default-]:--default-}" fi [[ -n "$comp" ]] && eval "$comp" && ret=0 fi _compskip= return ret