diff options
-rw-r--r-- | README.adoc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/README.adoc b/README.adoc index 5daf9ee..f49c8c0 100644 --- a/README.adoc +++ b/README.adoc @@ -59,7 +59,13 @@ sdn-navigate () { [ -z "$cd" ] || cd "$cd" [ -z "$insert" ] || LBUFFER="$LBUFFER$insert " [ -z "$helper" ] && break + + # Workaround for "zsh: suspended (tty output)" when invoking + # helpers after the terminal has been resized while running sdn + command true + eval "exec </dev/tty; $helper" || break + done zle reset-prompt # ... possibly zle-line-finish } |