From facc3aa9a0b56b04c18e56418c7ea00947993f9e Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Fri, 22 Feb 2019 23:31:33 -0500 Subject: Disable terminal flow control This opens up C-o, C-q and C-s for key bindings without C-v. --- ui.c | 1 + 1 file changed, 1 insertion(+) (limited to 'ui.c') diff --git a/ui.c b/ui.c index 9a83bfc..4db7e02 100644 --- a/ui.c +++ b/ui.c @@ -189,6 +189,7 @@ void uiInit(void) { cbreak(); noecho(); termInit(); + termNoFlow(); colorInit(); ui.status = newwin(1, COLS, 0, 0); ui.input = newpad(1, 512); -- cgit 1.4.1