From e386de024718f0e89e0b63459e7d68284e35351a Mon Sep 17 00:00:00 2001 From: Eric Freese Date: Fri, 25 Aug 2023 15:56:43 -0600 Subject: [PATCH] cleanup: Remove unnecessary/inconsistent quoting from fd arg --- src/async.zsh | 2 +- zsh-autosuggestions.zsh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/async.zsh b/src/async.zsh index faf24dc..be2fa07 100644 --- a/src/async.zsh +++ b/src/async.zsh @@ -72,5 +72,5 @@ _zsh_autosuggest_async_response() { fi # Always remove the handler - zle -F "$1" + zle -F $1 } diff --git a/zsh-autosuggestions.zsh b/zsh-autosuggestions.zsh index a0451d3..5706cba 100644 --- a/zsh-autosuggestions.zsh +++ b/zsh-autosuggestions.zsh @@ -827,7 +827,7 @@ _zsh_autosuggest_async_response() { fi # Always remove the handler - zle -F "$1" + zle -F $1 } #--------------------------------------------------------------------#