0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

Fix iTerm crash on window re-size (#5211)

This commit is contained in:
Trevor Rosen 2016-09-12 10:55:48 -05:00 committed by Marc Cornellà
parent 0c85da3c74
commit 3705d47bb3

View file

@ -6,7 +6,7 @@ function zle-keymap-select() {
# Ensure that the prompt is redrawn when the terminal size changes.
TRAPWINCH() {
zle && { zle reset-prompt; zle -R }
zle && zle -R
}
zle -N zle-keymap-select