add two readonly variables to the ZshIgnoreVars

Readonly variables cannot be reset and attempting to do so causes errors
on my machine. The `keymaps` and `widgets` variables caused problems, so
they have been added to the list of variables to ignore.
This commit is contained in:
Sylvia Crowe 2024-01-18 10:50:26 -08:00
parent 6ea70ff788
commit 0feaa57662

View File

@ -52,6 +52,8 @@ var ZshIgnoreVars = map[string]bool{
"TTY": true,
"epochtime": true,
"langinfo": true,
"keymaps": true,
"widgets": true,
"aliases": true,
"dis_aliases": true,