mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 13:39:02 +00:00
White is not identical to normal
This makes white work properly in white terminals when used for `fish_color_*` variables. It's probably silly thing this small mistake breaks, to be honest, but it's still a bug.
This commit is contained in:
parent
07944cfd20
commit
ed37427f9e
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ static const wchar_t *col[]=
|
||||||
L"magenta",
|
L"magenta",
|
||||||
L"purple",
|
L"purple",
|
||||||
L"cyan",
|
L"cyan",
|
||||||
L"white"
|
L"white",
|
||||||
L"normal"
|
L"normal"
|
||||||
}
|
}
|
||||||
;
|
;
|
||||||
|
|
Loading…
Reference in a new issue