Closed Bub-la-bub closed 4 years ago
I've recently run into an issue where the plugin throws the following error on RHEL6: "plugins/colors/colors.plugin.zsh:5: unknown file attribute"
Researching the issue it looks like the following line can't initialize the data object and populate it at the same time: typeset -Ag c=(
typeset -Ag c=(
Changing the above to this seemed to fix it: typeset -Ag c; c=(
typeset -Ag c; c=(
I've recently run into an issue where the plugin throws the following error on RHEL6: "plugins/colors/colors.plugin.zsh:5: unknown file attribute"
Researching the issue it looks like the following line can't initialize the data object and populate it at the same time:
typeset -Ag c=(
Changing the above to this seemed to fix it:
typeset -Ag c; c=(