Merge branch 'master' into omz-subexecutor

This commit is contained in:
Pandu E POLUAN 2024-04-05 14:27:03 +07:00 committed by GitHub
commit 8913f0ee55
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 43 additions and 17 deletions

View file

@ -43,6 +43,7 @@ To learn more, visit [ohmyz.sh](https://ohmyz.sh), follow [@ohmyzsh](https://twi
- [Custom Plugins And Themes](#custom-plugins-and-themes)
- [Enable GNU ls In macOS And freeBSD Systems](#enable-gnu-ls-in-macos-and-freebsd-systems)
- [Skip Aliases](#skip-aliases)
- [Disable async git prompt](#disable-async-git-prompt)
- [Specifying a Subexecutor](#specifying-a-subexecutor)
- [Getting Updates](#getting-updates)
- [Updates Verbosity](#updates-verbosity)
@ -362,6 +363,17 @@ Instead, you can now use the following:
zstyle ':omz:lib:directories' aliases no
```
### Disable async git prompt
Async prompt functions are an experimental feature (included on April 3, 2024) that allows Oh My Zsh to render prompt information
asyncronously. This can improve prompt rendering performance, but it might not work well with some setups. We hope that's not an
issue, but if you're seeing problems with this new feature, you can turn it of by setting the following in your .zshrc file,
before Oh My Zsh is sourced:
```sh
zstyle ':omz:alpha:lib:git' async-prompt no
```
#### Notice <!-- omit in toc -->
> This feature is currently in a testing phase and it may be subject to change in the future.