mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-16 21:45:03 +02:00
Simplify implementation of REP
Also make it align more with the standard by using the actual last drawn graphics character rather than the character before the cursor
This commit is contained in:
@@ -192,7 +192,7 @@ handle_normal_mode_char(Screen *screen, uint32_t ch, PyObject DUMP_UNUSED *dump_
|
||||
break; // no-op
|
||||
default:
|
||||
REPORT_DRAW(ch);
|
||||
screen_draw(screen, ch);
|
||||
screen_draw(screen, ch, true);
|
||||
break;
|
||||
}
|
||||
#undef CALL_SCREEN_HANDLER
|
||||
|
||||
Reference in New Issue
Block a user