mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
pull upstream changes from gitstatus
This commit is contained in:
parent
95b25e94e1
commit
d40734d687
3 changed files with 12 additions and 11 deletions
BIN
gitstatus/bin/gitstatusd-cygwin_nt-10.0-x86_64
Executable file
BIN
gitstatus/bin/gitstatusd-cygwin_nt-10.0-x86_64
Executable file
Binary file not shown.
1
gitstatus/bin/gitstatusd-cygwin_nt-6.1-x86_64
Symbolic link
1
gitstatus/bin/gitstatusd-cygwin_nt-6.1-x86_64
Symbolic link
|
@ -0,0 +1 @@
|
|||
gitstatusd-cygwin_nt-10.0-x86_64
|
|
@ -287,18 +287,9 @@ function gitstatus_start() {
|
|||
|
||||
req_fifo=$(mktemp -u "${TMPDIR:-/tmp}"/gitstatus.$$.pipe.req.XXXXXXXXXX)
|
||||
mkfifo $req_fifo
|
||||
sysopen -rw -o cloexec,sync -u req_fd $req_fifo
|
||||
command rm -f $req_fifo
|
||||
|
||||
resp_fifo=$(mktemp -u "${TMPDIR:-/tmp}"/gitstatus.$$.pipe.resp.XXXXXXXXXX)
|
||||
mkfifo $resp_fifo
|
||||
sysopen -rw -o cloexec -u resp_fd $resp_fifo
|
||||
command rm -f $resp_fifo
|
||||
|
||||
function _gitstatus_process_response_${name}() {
|
||||
_gitstatus_process_response ${${(%)${:-%N}}#_gitstatus_process_response_} 0 ''
|
||||
}
|
||||
zle -F $resp_fd _gitstatus_process_response_${name}
|
||||
|
||||
[[ ${GITSTATUS_ENABLE_LOGGING:-0} == 1 ]] &&
|
||||
log_file=$(mktemp "${TMPDIR:-/tmp}"/gitstatus.$$.daemon-log.XXXXXXXXXX) ||
|
||||
|
@ -333,10 +324,19 @@ function gitstatus_start() {
|
|||
${(q)daemon}-static $daemon_args
|
||||
fi
|
||||
echo -nE $'bye\x1f0\x1e'
|
||||
" <&$req_fd >&$resp_fd 2>$log_file 3<$lock_file &!
|
||||
" <$req_fifo >$resp_fifo 2>$log_file 3<$lock_file &!
|
||||
|
||||
daemon_pid=$!
|
||||
command rm -f $lock_file
|
||||
|
||||
sysopen -w -o cloexec,sync -u req_fd $req_fifo
|
||||
sysopen -r -o cloexec -u resp_fd $resp_fifo
|
||||
|
||||
command rm -f $req_fifo $resp_fifo $lock_file
|
||||
|
||||
function _gitstatus_process_response_${name}() {
|
||||
_gitstatus_process_response ${${(%)${:-%N}}#_gitstatus_process_response_} 0 ''
|
||||
}
|
||||
zle -F $resp_fd _gitstatus_process_response_${name}
|
||||
|
||||
local reply
|
||||
echo -nE $'hello\x1f\x1e' >&$req_fd
|
||||
|
|
Loading…
Reference in a new issue