From 3f4c2acd53d157bf1b55031d3f93ee9055c6742f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20V=C3=A4th?= Date: Mon, 18 Jun 2018 19:47:27 +0200 Subject: [PATCH] Do not leak global variables REPLY and strategy https://github.com/zsh-users/zsh-autosuggestions/issues/341 --- zsh-autosuggestions.zsh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zsh-autosuggestions.zsh b/zsh-autosuggestions.zsh index 8aad4c8..17e0d52 100644 --- a/zsh-autosuggestions.zsh +++ b/zsh-autosuggestions.zsh @@ -587,7 +587,7 @@ _zsh_autosuggest_capture_buffer() { _zsh_autosuggest_capture_completion() { typeset -g completion - local line + local line REPLY # Zle will be inactive if we are in async mode if zle; then @@ -716,6 +716,7 @@ _zsh_autosuggest_strategy_match_prev_cmd() { _zsh_autosuggest_fetch_suggestion() { typeset -g suggestion local -a strategies + local strategy # Ensure we are working with an array strategies=(${=ZSH_AUTOSUGGEST_STRATEGY})