diff options
Diffstat (limited to 'dot_config/zsh/dot_zshrc')
-rw-r--r-- | dot_config/zsh/dot_zshrc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/dot_config/zsh/dot_zshrc b/dot_config/zsh/dot_zshrc index de57807..4cd42fe 100644 --- a/dot_config/zsh/dot_zshrc +++ b/dot_config/zsh/dot_zshrc @@ -94,8 +94,10 @@ compdef _dotnet_zsh_complete dotnet if [ -n $WSL_DISTRO_NAME ] then command_not_found_handler() { - if [ -x "$(command -v $@.exe)" ]; then - $@.exe + if [ -x "$(command -v $0.exe)" ]; then + cmd=$0.exe + shift + $cmd $@ else echo >&2 "zsh: command not found: $@" return 127 |