aboutsummaryrefslogtreecommitdiff
path: root/chatty.c
diff options
context:
space:
mode:
Diffstat (limited to 'chatty.c')
-rw-r--r--chatty.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/chatty.c b/chatty.c
index e721a29..bd131a5 100644
--- a/chatty.c
+++ b/chatty.c
@@ -471,6 +471,13 @@ main(int argc, char** argv)
ninput--;
}
break;
+ case TB_KEY_CTRL_Z: {
+ pid_t pid = getpid();
+ tb_shutdown();
+ kill(pid, SIGSTOP);
+ tb_init();
+ } break;
+
case TB_KEY_CTRL_D:
case TB_KEY_CTRL_C:
quit = 1;