mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2024-11-18 09:51:06 +01:00
Do not rely on implicit NULLCMD=cat
This commit is contained in:
parent
07b37fd9ce
commit
8ae0283c90
2 changed files with 2 additions and 2 deletions
|
@ -41,7 +41,7 @@ _zsh_autosuggest_async_request() {
|
|||
# Second arg will be passed in case of error
|
||||
_zsh_autosuggest_async_response() {
|
||||
# Read everything from the fd and give it as a suggestion
|
||||
zle autosuggest-suggest -- "$(<&$1)"
|
||||
zle autosuggest-suggest -- "$(cat <&$1)"
|
||||
|
||||
# Remove the handler and close the fd
|
||||
zle -F "$1"
|
||||
|
|
|
@ -747,7 +747,7 @@ _zsh_autosuggest_async_request() {
|
|||
# Second arg will be passed in case of error
|
||||
_zsh_autosuggest_async_response() {
|
||||
# Read everything from the fd and give it as a suggestion
|
||||
zle autosuggest-suggest -- "$(<&$1)"
|
||||
zle autosuggest-suggest -- "$(cat <&$1)"
|
||||
|
||||
# Remove the handler and close the fd
|
||||
zle -F "$1"
|
||||
|
|
Loading…
Reference in a new issue