Current Path :
/
usr
/
share
/
zsh
/
5.0.2
/
functions
/
Or
Select Your Path :
Upload File :
New :
File
Dir
//usr/share/zsh/5.0.2/functions/zsh_directory_name_cdr
if [[ $1 = n ]]; then if [[ $2 = <-> ]]; then # Recent directory typeset -ga reply autoload -Uz cdr cdr -r if [[ -n ${reply[$2]} ]]; then reply=(${reply[$2]}) return 0 else reply=() return 1 fi fi elif [[ $1 = c ]]; then if [[ $PREFIX = <-> || -z $PREFIX ]]; then typeset -a keys values values=(${${(f)"$(cdr -l)"}/ ##/:}) keys=(${values%%:*}) _describe -t dir-index 'recent directory index' \ values -V unsorted -S']' return fi fi return 1