mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2025-12-06 07:20:40 +01:00
fix(yarn): output completion entries in UTF-8 (#11955)
This commit is contained in:
@@ -144,7 +144,7 @@ _yarn_scripts() {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -n $packageJson ]]; then
|
if [[ -n $packageJson ]]; then
|
||||||
scripts=("${(@f)$(cat ${packageJson} | perl -0777 -MJSON::PP -n -E '%r=%{decode_json($_)->{scripts}}; do{$k=$_;($e=$k)=~s/:/\\:/g; printf "$e:$r{$k}\n"} for sort keys %r')}")
|
scripts=("${(@f)$(cat ${packageJson} | perl -0777 -MJSON::PP -n -E 'binmode(STDOUT, ":encoding(UTF-8)"); %r=%{decode_json($_)->{scripts}}; do{$k=$_;($e=$k)=~s/:/\\:/g; printf "$e:$r{$k}\n"} for sort keys %r')}")
|
||||||
fi
|
fi
|
||||||
|
|
||||||
commands=('env' $scripts $binaries)
|
commands=('env' $scripts $binaries)
|
||||||
|
|||||||
Reference in New Issue
Block a user