From 71b07090c28e5ccfbe2c62558f7da7d02d9c32ea Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 19 Feb 2023 15:24:23 +0530 Subject: [PATCH] End APC and PM escape code on BEL as well as ST --- kitty/parser.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kitty/parser.c b/kitty/parser.c index 9aeaf3ba1..17e61f321 100644 --- a/kitty/parser.c +++ b/kitty/parser.c @@ -1211,6 +1211,8 @@ accumulate_oth(Screen *screen, uint32_t ch, PyObject DUMP_UNUSED *dump_callback) switch(ch) { case ST: return true; + case BEL: + return true; case DEL: case NUL: break;