jimhester / per-directory-history

Per directory history for zsh, as well as global history, and the ability to toggle between them with ^G.
zlib License
259 stars 36 forks source link

Prevent duplicates in hook function arrays #8

Closed andrewmwhite closed 10 years ago

andrewmwhite commented 10 years ago

If the module was sourced twice, the hook functions would each appear twice in their hook's array and hence be run twice. Using 'add-zsh-hook' prevents this.

jimhester commented 10 years ago

Makes sense to me, thanks!