mirror of
https://github.com/zsh-users/zsh-autosuggestions.git
synced 2024-11-18 09:51:06 +01:00
Direct less frequent log messages to stderr for
easier debugging
This commit is contained in:
parent
3dbe2c8c9b
commit
a6f53879ae
1 changed files with 5 additions and 5 deletions
|
@ -14,7 +14,7 @@ read-to-null() {
|
|||
accept-connection() {
|
||||
zsocket -a $server
|
||||
fds[$REPLY]=1
|
||||
print "connection accepted, fd: $REPLY"
|
||||
print "connection accepted, fd: $REPLY" >&2
|
||||
}
|
||||
|
||||
handle-request() {
|
||||
|
@ -44,7 +44,7 @@ handle-request() {
|
|||
break # handle more requests/return to zselect
|
||||
done
|
||||
if ! (( read_something )); then
|
||||
print "connection with fd $connection closed"
|
||||
print "connection with fd $connection closed" >&2
|
||||
unset fds[$connection]
|
||||
exec {connection}>&- # free the file descriptor
|
||||
fi
|
||||
|
@ -69,7 +69,7 @@ zmodload zsh/zpty
|
|||
zmodload zsh/zselect
|
||||
zmodload zsh/net/socket
|
||||
setopt noglob
|
||||
print "autosuggestion server started, pid: $$"
|
||||
print "autosuggestion server started, pid: $$" >&2
|
||||
|
||||
# Start an interactive zsh connected to a zpty
|
||||
zpty z ZLE_DISABLE_AUTOSUGGEST=1 zsh -i
|
||||
|
@ -96,10 +96,10 @@ cleanup() {
|
|||
|
||||
trap cleanup TERM INT HUP EXIT
|
||||
|
||||
mkdir -m 700 $server_dir &> /dev/null
|
||||
mkdir -m 700 $server_dir
|
||||
|
||||
while ! zsocket -l $socket_path; do
|
||||
if [[ ! -r $pid_file ]] || ! kill -0 $(<$pid_file) &> /dev/null; then
|
||||
if [[ ! -r $pid_file ]] || ! kill -0 $(<$pid_file); then
|
||||
rm -f $socket_path
|
||||
else
|
||||
exit 1
|
||||
|
|
Loading…
Reference in a new issue