Return if no completion found

This commit is contained in:
Eric Freese 2018-06-30 15:03:14 -06:00
parent 8593624996
commit 7d968869e3
2 changed files with 4 additions and 0 deletions

View file

@ -117,6 +117,8 @@ _zsh_autosuggest_strategy_completion() {
# Fetch the first completion result
_zsh_autosuggest_capture_completion "$1"
[[ -z "$completion" ]] && return
# Add the completion string to the buffer to build the full suggestion
local -i i=1
while [[ "$completion" != "${1[$i,-1]}"* ]]; do ((i++)); done

View file

@ -616,6 +616,8 @@ _zsh_autosuggest_strategy_completion() {
# Fetch the first completion result
_zsh_autosuggest_capture_completion "$1"
[[ -z "$completion" ]] && return
# Add the completion string to the buffer to build the full suggestion
local -i i=1
while [[ "$completion" != "${1[$i,-1]}"* ]]; do ((i++)); done