From 0ecc231c18371ed08b8e718a571a5cf6aef20659 Mon Sep 17 00:00:00 2001 From: "Kenneth Benzie (Benie)" Date: Sun, 15 Apr 2018 17:22:41 +0100 Subject: [PATCH] Fully disable tty flow control From experimenting `unsetopt flow_control` seems to only disable flow control for Zsh itself, not for child processes like Vim. To fix the issue also call `stty -ixon` to disable flow control completely. Fixes #8 --- zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zshrc b/zshrc index c4d3e16..309d5d0 100644 --- a/zshrc +++ b/zshrc @@ -28,7 +28,7 @@ setopt ignore_eof unsetopt beep # Disable tty flow control, allows vim to use 'S' -unsetopt flow_control +unsetopt flow_control && stty -ixon # Initialize completions autoload -U compinit