changeset 19699:409d82472aee

Disable output flow control in the unix terminal with Ctrl-Q/S (bug #42681) * kpty.cpp (KPty::open): Disable output flow control in the unix terminal. Ctrl-S no longer appears to freeze the command window, and Ctrl-Q and Ctrl-S are now available for readline key bindings.
author Mike Miller <mtmiller@ieee.org>
date Fri, 06 Feb 2015 23:15:14 -0500
parents ff56a9899101
children e7df12f37f71
files libgui/qterminal/libqterminal/unix/kpty.cpp
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libgui/qterminal/libqterminal/unix/kpty.cpp	Fri Feb 06 22:55:01 2015 +0100
+++ b/libgui/qterminal/libqterminal/unix/kpty.cpp	Fri Feb 06 23:15:14 2015 -0500
@@ -386,6 +386,7 @@
 
   struct ::termios t;
   tcGetAttr(&t);
+  t.c_iflag &= ~IXON;
   t.c_lflag &= ~ECHOCTL;
   tcSetAttr(&t);
   return true;