Added trapwinch to vi-mode plugin.

master
Gabor Marton 11 years ago
parent 550ccca91c
commit 7de44dbdb7
  1. 8
      plugins/vi-mode/vi-mode.plugin.zsh

@ -14,6 +14,14 @@ function zle-keymap-select zle-line-init zle-line-finish {
zle -R
}
# Ensure that the prompt is redrawn when the terminal size changes.
TRAPWINCH() {
if [[ -o zle ]]; then
zle reset-prompt
zle -R
fi
}
zle -N zle-line-init
zle -N zle-line-finish
zle -N zle-keymap-select

Loading…
Cancel
Save