Wrap suggestion fetch command in parens to actually run in background

pull/180/head
Eric Freese 9 years ago
parent 50e6832b8c
commit 21d9eda5dd

@ -22,7 +22,7 @@ _zsh_autosuggest_async_suggestion_server() {
kill -KILL %1 &>/dev/null
# Run suggestion search in the background
echo -n -E "$($strategy "$prefix")"$'\0' &
(echo -n -E "$($strategy "$prefix")"$'\0') &
done
}

@ -506,7 +506,7 @@ _zsh_autosuggest_async_suggestion_server() {
kill -KILL %1 &>/dev/null
# Run suggestion search in the background
echo -n -E "$($strategy "$prefix")"$'\0' &
(echo -n -E "$($strategy "$prefix")"$'\0') &
done
}

Loading…
Cancel
Save