X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=zsh%2Frc;h=ccc8ea7638fcb3f85cca76e3fbe2e77f724687a9;hb=63303c2286c404830994aa1a7f7f62dc1e2be248;hp=84b27f73a35887173f0a1df7131970f88f47dfbc;hpb=cff3a4b308088bca67911e89cc5d8e3d407717f1;p=config%2Fdotfiles.git diff --git a/zsh/rc b/zsh/rc index 84b27f7..ccc8ea7 100644 --- a/zsh/rc +++ b/zsh/rc @@ -78,17 +78,17 @@ if [[ $ZSH_VERSION != (4.3.<5->|4.<4->*|<5->*) ]]; then # arrays. function precmd() { for function in $precmd_functions; do - $function $@ + $function "$@" done } function preexec() { for function in $preexec_functions; do - $function $@ + $function "$@" done } function chpwd() { for function in $chpwd_functions; do - $function $@ + $function "$@" done } fi