1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-02 10:01:11 +02:00

49667: Include US spelling of "grey" ("gray")

Co-authored-by: Daniel Shahaf <d.s@daniel.shahaf.name>
This commit is contained in:
Matt Alexander 2022-01-01 14:47:53 -08:00 committed by Bart Schaefer
parent 92c80e72aa
commit 2876c25a28
2 changed files with 9 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2022-01-01 Bart Schaefer <schaefer@zsh.org>
* Matt Alexander: 49667: Functions/Misc/colors: include "gray"
2021-12-29 Oliver Kiddle <opk@zsh.org>
* Aaron Schrab: 49664: Completion/Unix/Command/_git:

View file

@ -83,9 +83,11 @@ for k in ${color[(I)3?]}; do color[fg-${color[$k]}]=$k; done
# This is inaccurate, but the prompt theme system needs it.
color[grey]=${color[black]}
color[fg-grey]=${color[grey]}
color[bg-grey]=${color[bg-black]}
for k in grey gray; do
color[$k]=${color[black]}
color[fg-$k]=${color[$k]}
color[bg-$k]=${color[bg-black]}
done
# Assistance for the color-blind.