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:
parent
92c80e72aa
commit
2876c25a28
2 changed files with 9 additions and 3 deletions
|
@ -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:
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
Loading…
Reference in a new issue