diff options
| author | Carlo Sala <carlosalag@protonmail.com> | 2024-03-07 17:17:27 +0100 |
|---|---|---|
| committer | Carlo Sala <carlosalag@protonmail.com> | 2024-03-07 17:17:27 +0100 |
| commit | 32d4389aa6e896b27d9786d142a5c44163104056 (patch) | |
| tree | 5ccf0595cc1173b2b18b02eb77aa86ee1e362f37 | |
| parent | 083cc2c8e8742bab8cce8c73a3e96f398e6b2da7 (diff) | |
| download | zsh-32d4389aa6e896b27d9786d142a5c44163104056.tar.gz zsh-32d4389aa6e896b27d9786d142a5c44163104056.tar.bz2 zsh-32d4389aa6e896b27d9786d142a5c44163104056.zip | |
fix(git): disable temporarely async prompt
| -rw-r--r-- | lib/git.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git.zsh b/lib/git.zsh index 6f4823458..8fe999095 100644 --- a/lib/git.zsh +++ b/lib/git.zsh @@ -38,7 +38,7 @@ function _omz_git_prompt_status() { } # Enable async prompt by default unless the setting is at false / no -if zstyle -T ':omz:alpha:lib:git' async-prompt; then +if zstyle -t ':omz:alpha:lib:git' async-prompt; then function git_prompt_info() { _omz_register_handler _omz_git_prompt_status if [[ -n "$_OMZ_ASYNC_OUTPUT[_omz_git_prompt_status]" ]]; then |
