diff options
author | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2020-07-20 16:06:02 +0300 |
---|---|---|
committer | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2020-07-20 16:06:02 +0300 |
commit | 88d5fb6145301e6505cd1cf10cc87fb0ec833fb5 (patch) | |
tree | 82f433af69a1ca0df3722ac35a2e62822939e29f /gitstatus | |
parent | 7a114ad6fb0182ddf5515cd8e54dcdf75f3aa7d6 (diff) | |
parent | 15818346bf496c7e5f8cb21b2f273c47d386b7db (diff) |
Merge commit '15818346bf496c7e5f8cb21b2f273c47d386b7db'
Diffstat (limited to 'gitstatus')
-rw-r--r-- | gitstatus/gitstatus.plugin.sh | 2 | ||||
-rw-r--r-- | gitstatus/gitstatus.plugin.zsh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gitstatus/gitstatus.plugin.sh b/gitstatus/gitstatus.plugin.sh index 2fe322ef..9f5b9a6e 100644 --- a/gitstatus/gitstatus.plugin.sh +++ b/gitstatus/gitstatus.plugin.sh @@ -165,7 +165,7 @@ function gitstatus_start() { local ret=$? trap - ${sig[@]} case "$ret" in - 0|129|130|131|137|141|143) + 0|129|130|131|137|141|143|159) echo -nE $'bye\x1f0\x1e' >&"$fd_out" exit "$ret" ;; diff --git a/gitstatus/gitstatus.plugin.zsh b/gitstatus/gitstatus.plugin.zsh index 55301ab1..a93f2c36 100644 --- a/gitstatus/gitstatus.plugin.zsh +++ b/gitstatus/gitstatus.plugin.zsh @@ -424,7 +424,7 @@ function _gitstatus_daemon"${1:-}"() { if [[ -x $_gitstatus_zsh_daemon ]]; then HOME=$home $_gitstatus_zsh_daemon -G $_gitstatus_zsh_version "${(@)args}" >&$pipe_fd local -i ret=$? - [[ $ret == (0|129|130|131|137|141|143) ]] && return ret + [[ $ret == (0|129|130|131|137|141|143|159) ]] && return ret fi (( ! _gitstatus_zsh_downloaded )) || return |