mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2024-11-18 09:51:06 +01:00
Go back to tracking last pid because kill %1
didn't seem to be working
This commit is contained in:
parent
54e1eee924
commit
6c5cd42331
2 changed files with 8 additions and 2 deletions
|
@ -16,13 +16,16 @@ _zsh_autosuggest_async_suggestion_server() {
|
|||
stty -onlcr
|
||||
|
||||
local strategy=$1
|
||||
local last_pid
|
||||
|
||||
while IFS='' read -r -d $'\0' prefix; do
|
||||
# Kill last bg process
|
||||
kill -KILL %1 &>/dev/null
|
||||
kill -KILL $last_pid &>/dev/null
|
||||
|
||||
# Run suggestion search in the background
|
||||
(echo -n -E "$($strategy "$prefix")"$'\0') &
|
||||
|
||||
last_pid=$!
|
||||
done
|
||||
}
|
||||
|
||||
|
|
|
@ -511,13 +511,16 @@ _zsh_autosuggest_async_suggestion_server() {
|
|||
stty -onlcr
|
||||
|
||||
local strategy=$1
|
||||
local last_pid
|
||||
|
||||
while IFS='' read -r -d $'\0' prefix; do
|
||||
# Kill last bg process
|
||||
kill -KILL %1 &>/dev/null
|
||||
kill -KILL $last_pid &>/dev/null
|
||||
|
||||
# Run suggestion search in the background
|
||||
(echo -n -E "$($strategy "$prefix")"$'\0') &
|
||||
|
||||
last_pid=$!
|
||||
done
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue