ผมคิดว่าคุณสามารถเพิ่มองค์ประกอบของ$PWD
ไปที่cd
รายการเสร็จสิ้นแม้เรื่องนี้จะปรากฏขึ้นที่จะต้องเล่นซอกับ_cd
; ที่เป็นรุ่นที่กำหนดเองของต้องปรากฏตัวครั้งแรกใน_cd
$fpath
% cd && mkdir zcomp
% cp $fpath[-1]/_cd zcomp
% fpath=(~/zcomp $fapth)
จากนั้นขึ้นด้านบนของการ~/zcomp/_cd
เพิ่มฟังก์ชั่น
_our_pwd() {
_values ourpwd ${(ps:/:)PWD}
}
จากนั้นก่อน_alternative
เพิ่มบรรทัดจะเพิ่มสิ่งที่ส่งกลับไปยังรายการทางเลือก
...
alt=("$service-options:$service option:_cd_options" "$alt[@]")
fi
alt=(ourpwd:pwd:_our_pwd "$alt[@]")
_alternative "$alt[@]" && ret=0
return ret
...
แม้ว่าสิ่งนี้จะเพิ่มpwd
ส่วนประกอบในcd
ความสำเร็จเสมอ:
% cd
Users jdoe Applications/ Desktop/ Documents/ Downloads/ Library/
...
ด้วยตรรกะเพิ่มเติมคุณสามารถเพิ่ม$PWD
ส่วนประกอบได้เฉพาะเมื่อมีอาร์กิวเมนต์ที่สองอยู่แล้วแทนที่จะเป็นเสมอ
แต่! สิ่งนี้มักจะทำให้cd
เสร็จสมบูรณ์และต้องการให้เราทำการปะแก้_cd
เสร็จต้นน้ำ อีกทางเลือกหนึ่งคือการสร้างชื่อใหม่สำหรับฟังก์ชั่นที่จัดทำโดยสอง ARG cd
อาจจะเรียกว่าcdsub
และมีความสมบูรณ์ของPWD
องค์ประกอบที่ปรากฏเท่านั้น เพิ่มไปยัง~/.zshrc
function cdsub { builtin cd "$@" }
แล้วความ_cd
สำเร็จที่_cdsub
เสียใจมากที่จะถูกวางไว้ที่ไหนสักแห่งใน$fpath
:
#compdef cdsub
#
# Modified version of _cd from ZSH 5.3.1 with specific support for the
# `cd old new` form whereby PWD elements are provided for completion.
_cd_options() {
_arguments -s \
'-q[quiet, no output or use of hooks]' \
'-s[refuse to use paths with symlinks]' \
'(-P)-L[retain symbolic links ignoring CHASE_LINKS]' \
'(-L)-P[resolve symbolic links as CHASE_LINKS]'
}
setopt localoptions nonomatch
local expl ret=1 curarg
integer argstart=2 noopts
if (( CURRENT > 1 )); then
# if not in command position, may have options.
# Careful: -<-> is not an option.
while [[ $words[$argstart] = -* && argstart -lt CURRENT ]]; do
curarg=$words[$argstart]
[[ $curarg = -<-> ]] && break
(( argstart++ ))
[[ $curarg = -- ]] && noopts=1 && break
done
fi
if [[ CURRENT -eq $((argstart+1)) ]]; then
# cd old new: look for old in $PWD and see what can replace it
local rep
# Get possible completions using word in position 2
rep=(${~PWD/$words[$argstart]/*}~$PWD(-/))
# Now remove all the common parts of $PWD and the completions from this
rep=(${${rep#${PWD%%$words[$argstart]*}}%${PWD#*$words[$argstart]}})
(( $#rep )) && _wanted -C replacement strings expl replacement compadd -a rep
else
_values ourpwd ${(ps:/:)PWD} && ret=0
return ret
fi
cd p also <Tab>
หรือcd p also <left arrow x 5> <Tab>
?