vi-mode show indicator on zle-line-init and SIGWINCH (#6449)

master
Balint Gyapjas 8 years ago committed by Robby Russell
parent 3cd8eaf9bb
commit 285b540167
  1. 6
      plugins/vi-mode/vi-mode.plugin.zsh

@ -4,9 +4,15 @@ function zle-keymap-select() {
zle -R
}
# Ensures that MODE_INDITCATOR is displayed on terminal start up.
function zle-line-init() {
zle reset-prompt
}
# Ensure that the prompt is redrawn when the terminal size changes.
TRAPWINCH() {
zle && zle -R
zle reset-prompt
}
zle -N zle-keymap-select

Loading…
Cancel
Save