1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 07:20:40 +01:00

fix(sudo): only call redisplay if zle is enabled

Fixes #11322
This commit is contained in:
Carlo Sala
2022-12-15 23:06:06 +01:00
parent ea4854dba3
commit f8bf8f0029

View File

@@ -96,7 +96,7 @@ sudo-command-line() {
LBUFFER="${WHITESPACE}${LBUFFER}"
# Redisplay edit buffer (compatibility with zsh-syntax-highlighting)
zle redisplay
zle && zle redisplay # only run redisplay if zle is enabled
}
}