mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-05-22 04:51:12 +02:00
Update wd plugin to v0.4.5
This commit is contained in:
parent
4cb730773b
commit
65ab7d9e33
2 changed files with 4 additions and 4 deletions
|
|
@ -21,12 +21,12 @@ function _wd() {
|
||||||
do
|
do
|
||||||
arr=(${(s,:,)line})
|
arr=(${(s,:,)line})
|
||||||
name=${arr[1]}
|
name=${arr[1]}
|
||||||
path=${arr[2]}
|
target_path=${arr[2]}
|
||||||
|
|
||||||
# replace ~ from path to fix completion (#17)
|
# replace ~ from path to fix completion (#17)
|
||||||
path=${path/#\~/$HOME}
|
target_path=${path/#\~/$HOME}
|
||||||
|
|
||||||
points[$name]=$path
|
points[$name]=$target_path
|
||||||
done < $CONFIG
|
done < $CONFIG
|
||||||
|
|
||||||
commands=(
|
commands=(
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
# @github.com/mfaerevaag/wd
|
# @github.com/mfaerevaag/wd
|
||||||
|
|
||||||
# version
|
# version
|
||||||
readonly WD_VERSION=0.4.4
|
readonly WD_VERSION=0.4.5
|
||||||
|
|
||||||
# colors
|
# colors
|
||||||
readonly WD_BLUE="\033[96m"
|
readonly WD_BLUE="\033[96m"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue