mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2024-11-18 09:51:06 +01:00
Do not show any error output from async zpty server process
This commit is contained in:
parent
ed8056c5e8
commit
9feac573c9
2 changed files with 8 additions and 0 deletions
|
@ -20,6 +20,10 @@ _zsh_autosuggest_async_server() {
|
|||
# Output only newlines (not carriage return + newline)
|
||||
stty -onlcr
|
||||
|
||||
|
||||
# Silence any error messages
|
||||
exec 2>/dev/null
|
||||
|
||||
local strategy=$1
|
||||
local last_pid
|
||||
|
||||
|
|
|
@ -550,6 +550,10 @@ _zsh_autosuggest_async_server() {
|
|||
# Output only newlines (not carriage return + newline)
|
||||
stty -onlcr
|
||||
|
||||
|
||||
# Silence any error messages
|
||||
exec 2>/dev/null
|
||||
|
||||
local strategy=$1
|
||||
local last_pid
|
||||
|
||||
|
|
Loading…
Reference in a new issue