diff --git a/src/widgets.zsh b/src/widgets.zsh index 9d92816..164c751 100644 --- a/src/widgets.zsh +++ b/src/widgets.zsh @@ -128,7 +128,7 @@ _zsh_autosuggest_accept() { fi # Only accept if the cursor is at the end of the buffer - if [[ $CURSOR = $max_cursor_pos ]]; then + if (( $CURSOR == $max_cursor_pos )); then # Add the suggestion to the buffer BUFFER="$BUFFER$POSTDISPLAY" diff --git a/zsh-autosuggestions.zsh b/zsh-autosuggestions.zsh index 84be34a..ffd5533 100644 --- a/zsh-autosuggestions.zsh +++ b/zsh-autosuggestions.zsh @@ -390,7 +390,7 @@ _zsh_autosuggest_accept() { fi # Only accept if the cursor is at the end of the buffer - if [[ $CURSOR = $max_cursor_pos ]]; then + if (( $CURSOR == $max_cursor_pos )); then # Add the suggestion to the buffer BUFFER="$BUFFER$POSTDISPLAY"