ajeetdsouza / zoxide

A smarter cd command. Supports all major shells.
MIT License
20.34k stars 519 forks source link

fix: Space-Tab interactive completions repeating #785

Closed ashleybartlett closed 2 months ago

ashleybartlett commented 2 months ago

Closes #780 and #775

Looks you needed to still call compadd to set a completion for the current function call, otherwise it kept trying to re-run the completion.

This made it look like Enter wasn't accepting results in fzf (you could hit Enter 3 times and it would eventually work), and the single match repeated 3 times, as I suspect there is some completion retry if it fails, but didn't look for that answer.

I've left the clearing of the results in, as I think it might be good hygiene.

ajeetdsouza commented 2 months ago

Thanks!