From 06f67e4765dbd84a8fb9316babfa16f7b29c18f0 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 30 Sep 2021 14:27:22 +0530 Subject: [PATCH] typo in comment --- kitty/screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/screen.c b/kitty/screen.c index c4d1d695d..ae0062474 100644 --- a/kitty/screen.c +++ b/kitty/screen.c @@ -1483,7 +1483,7 @@ screen_fake_move_cursor_to_position(Screen *self, index_type x, index_type y) { } found_non_empty_cell = true; x += w; - count += 1; // zsh requires a single arrow press to move fast dualwidth chars + count += 1; // zsh requires a single arrow press to move past dualwidth chars } if (!found_non_empty_cell) count++; // blank line x = 0;