diff options
| author | Marc Cornellà <marc@mcornella.com> | 2024-04-16 18:07:10 +0200 |
|---|---|---|
| committer | Carlo Sala <carlosalag@protonmail.com> | 2024-04-22 10:59:34 +0200 |
| commit | f78c6b90fc18e2d0bb119ff549207463ce1d57a5 (patch) | |
| tree | 519b158b8213bd8495d90eb00439ccb1937f02bc /lib/async_prompt.zsh | |
| parent | 1b5503a3eefeb3e248bbc07a2f4e4b7591924307 (diff) | |
| download | zsh-f78c6b90fc18e2d0bb119ff549207463ce1d57a5.tar.gz zsh-f78c6b90fc18e2d0bb119ff549207463ce1d57a5.tar.bz2 zsh-f78c6b90fc18e2d0bb119ff549207463ce1d57a5.zip | |
fix(async): fix crash on zsh < 5.0.6 (#12358)
Diffstat (limited to 'lib/async_prompt.zsh')
| -rw-r--r-- | lib/async_prompt.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/async_prompt.zsh b/lib/async_prompt.zsh index a83c57f35..db48446e7 100644 --- a/lib/async_prompt.zsh +++ b/lib/async_prompt.zsh @@ -124,7 +124,7 @@ function _omz_async_callback() { # Repaint prompt if output has changed if [[ "$old_output" != "${_OMZ_ASYNC_OUTPUT[$handler]}" ]]; then - zle reset-prompt + zle .reset-prompt zle -R fi |
