mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2024-11-18 09:51:06 +01:00
Disable word splitting while reading to preserve whitespace
This commit is contained in:
parent
b530b0c996
commit
0337005eb0
2 changed files with 4 additions and 4 deletions
|
@ -5,14 +5,14 @@
|
|||
|
||||
_zsh_autosuggest_async_fetch_suggestion() {
|
||||
# Send the prefix to the pty to fetch a suggestion
|
||||
zpty -w -n $ZSH_AUTOSUGGEST_PTY_NAME $1 $'\0'
|
||||
zpty -w -n $ZSH_AUTOSUGGEST_PTY_NAME "${1}"$'\0'
|
||||
}
|
||||
|
||||
# Pty is spawned running this function
|
||||
_zsh_autosuggest_async_suggestion_server() {
|
||||
emulate -R zsh
|
||||
|
||||
while read -d $'\0' prefix; do
|
||||
while IFS='' read -r -d $'\0' prefix; do
|
||||
# Kill last bg process
|
||||
kill -KILL %1 &>/dev/null
|
||||
|
||||
|
|
|
@ -482,14 +482,14 @@ _zsh_autosuggest_strategy_match_prev_cmd() {
|
|||
|
||||
_zsh_autosuggest_async_fetch_suggestion() {
|
||||
# Send the prefix to the pty to fetch a suggestion
|
||||
zpty -w -n $ZSH_AUTOSUGGEST_PTY_NAME $1 $'\0'
|
||||
zpty -w -n $ZSH_AUTOSUGGEST_PTY_NAME "${1}"$'\0'
|
||||
}
|
||||
|
||||
# Pty is spawned running this function
|
||||
_zsh_autosuggest_async_suggestion_server() {
|
||||
emulate -R zsh
|
||||
|
||||
while read -d $'\0' prefix; do
|
||||
while IFS='' read -r -d $'\0' prefix; do
|
||||
# Kill last bg process
|
||||
kill -KILL %1 &>/dev/null
|
||||
|
||||
|
|
Loading…
Reference in a new issue