79678035

Date: 2025-06-24 18:18:44
Score: 0.5
Natty:
Report link

I had a similar issue that was caused by including shell completions in my .zprofile. I specifically had:

if command -v ngrok &>/dev/null; then
  eval "$(ngrok completion)"
fi

This is an issue because .zprofile runs prior to Zsh setting up completions. Moving this logic to .zshrc solved this for me.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: austin