diff options
author | romkatv <roman.perepelitsa@gmail.com> | 2020-05-11 16:29:08 +0300 |
---|---|---|
committer | romkatv <roman.perepelitsa@gmail.com> | 2020-05-11 16:29:08 +0300 |
commit | d047ed87a1093b27aff3324ba57860c9c42f7b65 (patch) | |
tree | fef3bc15a91f96e2f4c836ef34072f758b62e378 /gitstatus.plugin.zsh | |
parent | bc85e46f8b8a548379144732a3218bfe686f2f63 (diff) |
Squashed 'gitstatus/' changes from 6a4f0fc0..cd5673b4
cd5673b4 increase default gitstatus_start timeout from 5s to 30s
git-subtree-dir: gitstatus
git-subtree-split: cd5673b4971bf1a6d9aa8d57963e954e619b950e
Diffstat (limited to 'gitstatus.plugin.zsh')
-rw-r--r-- | gitstatus.plugin.zsh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gitstatus.plugin.zsh b/gitstatus.plugin.zsh index 5dc8d737..d1d74469 100644 --- a/gitstatus.plugin.zsh +++ b/gitstatus.plugin.zsh @@ -445,7 +445,7 @@ function _gitstatus_daemon"${1:-}"() { # Usage: gitstatus_start [OPTION]... NAME # # -t FLOAT Fail the self-check on initialization if not getting a response from gitstatusd for -# this this many seconds. Defaults to 5. +# this this many seconds. Defaults to 30. # # -s INT Report at most this many staged changes; negative value means infinity. # Defaults to 1. @@ -480,7 +480,7 @@ function gitstatus_start"${1:-}"() { local opt OPTARG local -i OPTIND - local -F timeout=5 + local -F timeout=30 local -i async=0 local -a args=() local -i dirty_max_index_size=-1 |