mirror of
https://github.com/Llewellynvdm/zoxide.git
synced 2025-01-28 17:48:31 +00:00
fix(zsh): append _zoxide_precmd
as a single-element array to hook (#10)
We should append `_zoxide_precmd` to `precmd_functions` within an array literal, not by itself.
This commit is contained in:
parent
5a6f077ab6
commit
f9f1db8f30
@ -5,7 +5,7 @@ _zoxide_precmd() {
|
||||
}
|
||||
|
||||
[[ -n "${precmd_functions[(r)_zoxide_precmd]}" ]] || {
|
||||
precmd_functions+=_zoxide_precmd
|
||||
precmd_functions+=(_zoxide_precmd)
|
||||
}
|
||||
|
||||
z() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user