Browse Source

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

Fixes #11322
Carlo Sala 1 year ago
parent
commit
f8bf8f0029
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/sudo/sudo.plugin.zsh

+ 1 - 1
plugins/sudo/sudo.plugin.zsh

@@ -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
   }
 }