Server IP : 51.89.169.208 / Your IP : 216.73.216.211 Web Server : Apache System : Linux ns3209505.ip-198-244-202.eu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Tue Nov 5 04:50:16 EST 2024 x86_64 User : yellowleaf ( 1019) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/usr/share/zsh/5.5.1/functions/ |
Upload File : |
#autoload # Hm, this *can* sensibly be used as a completer. But it could also be used # as a utility function, so maybe it should be moved into another directory. # Or maybe not. Hm. # # # Complete words from the history # # Code taken from _history_complete_words. # # Available styles: # # sort -- sort matches lexically (default is to sort by age) # remove-all-dups -- # remove /all/ duplicate matches rather than just consecutives # range -- range of history words to complete local opt expl max slice hmax=$#historywords beg=2 if zstyle -t ":completion:${curcontext}:" remove-all-dups; then opt=- else opt=-1 fi if zstyle -t ":completion:${curcontext}:" sort; then opt="${opt}J" else opt="${opt}V" fi if zstyle -s ":completion:${curcontext}:" range max; then if [[ $max = *:* ]]; then slice=${max#*:} max=${max%:*} else slice=$max fi [[ max -gt hmax ]] && max=$hmax else max=$hmax slice=$max fi PREFIX="$IPREFIX$PREFIX" IPREFIX= SUFFIX="$SUFFIX$ISUFFIX" ISUFFIX= # We skip the first element of historywords so the current word doesn't # interfere with the completion local -a hslice while [[ $compstate[nmatches] -eq 0 && beg -lt max ]]; do if [[ -n $compstate[quote] ]] then hslice=( ${(Q)historywords[beg,beg+slice]} ) else hslice=( ${historywords[beg,beg+slice]} ) fi _wanted "$opt" history-words expl 'history word' \ compadd -Q -a hslice (( beg+=slice )) done (( $compstate[nmatches] ))