From 2d0806a362f3525fc4c3358116a3ff22eaf486a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20V=C3=A4th?= Date: Mon, 18 Jun 2018 19:58:06 +0200 Subject: [PATCH] Offer suggestion only if cursor is at end of line https://github.com/zsh-users/zsh-autosuggestions/issues/343 --- zsh-autosuggestions.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/zsh-autosuggestions.zsh b/zsh-autosuggestions.zsh index 17e0d52..5927bd9 100644 --- a/zsh-autosuggestions.zsh +++ b/zsh-autosuggestions.zsh @@ -379,6 +379,7 @@ _zsh_autosuggest_modify() { # Fetch a new suggestion based on what's currently in the buffer _zsh_autosuggest_fetch() { + [[ $CURSOR -eq $#BUFFER ]] || return 0 if [[ -n "${ZSH_AUTOSUGGEST_USE_ASYNC+x}" ]]; then _zsh_autosuggest_async_request "$BUFFER" else