|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /usr/share/zsh/4.2.6/functions/ |
Upload File : |
#autoload [[ _matcher_num -gt 1 ]] && return 1 # This completer is an example showing how menu completion can be # implemented with the new completion system. # Use this one before the normal _complete completer, as in: # # zstyle ":completion:::::" completer _menu _complete if [[ -n "$compstate[old_list]" ]]; then # We have an old list, keep it and insert the next match. compstate[old_list]=keep compstate[insert]=$((compstate[old_insert]+1)) else # No old list, make completion insert the first match. compstate[insert]=1 fi return 1