Heray-Was-Here
Server : Apache
System : Linux vps43555.mylogin.co 3.10.0-1160.53.1.vz7.185.3 #1 SMP Tue Jan 25 12:49:12 MSK 2022 x86_64
User : redsea ( 60651)
PHP Version : 7.4.32
Disable Function : NONE
Directory :  /usr/share/zsh/5.0.2/functions/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/share/zsh/5.0.2/functions/which-command
zmodload -i zsh/parameter zsh/zutil

zle -I

local -a whencecmd wds

# Set the whence style to your favourite function
# (but NOT which-command!)
zstyle -a :zle:$WIDGET whence whencecmd || whencecmd=(whence -c --)

wds=(${(z)LBUFFER})
local wd barewd
local -A seen

while true; do
  wd=${wds[1]}
  barewd=${(Q)wd}

  if [[ $barewd != $wd || -n $seen[$barewd] ]]; then
    # quoted or already expanded, see if original word is an alias...
    if [[ -z $seen[$barewd] && -n $aliases[$wd] ]]; then
      # yes, so we need to decode that, with no extra expansion...
      $whencecmd $wd
      seen[$wd]=1
      wds=(${(z)aliases[$wd]})
      continue
    else
      # use unquoted word, don't expand alias
      (unalias -- $barewd 2>/dev/null; $whencecmd $barewd)
    fi
  else
    # turn on globsubst for =ls etc.
    $whencecmd ${~barewd}
    if [[ -n $aliases[$barewd] && -z $seen[$barewd] ]]; then
      # Recursively expand aliases
      seen[$barewd]=1
      wds=(${(z)aliases[$barewd]})
      continue
    fi
  fi
  break
done

Hry