Oh!, me encontré en unos de mis entornos un historial de zsh corrupto 🙁
El mensaje, algo como lo siguiente:
zsh: corrupt history file /home/vagrant/.zsh_history
Bueno, corregir esto no fue complicado, solo tuve que mover mi antiguo archivo a uno temporal, luego extraer los string de ahí y pasarlo como el original, por último borrar el antiguo.
mv .zsh_history .zsh_history_tmp strings .zsh_history_tmp > .zsh_history fc -R .zsh_history rm .zsh_history_tmp
Y listo 😉