私はあなたがのコンポーネントを追加することができると思います$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
では、常にではなく2番目の引数が既に存在する場合にのみコンポーネントを追加できます。
しかしながら!これは常にcd
完了を台無しにし、上流の_cd
完了にモンキーパッチを適用する必要があります。別のオプションはcd
、おそらく呼び出されるtwo-argによって提供される関数の新しい名前を作成し、そのため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>
?