From 8f19d7aa8b3787486ebb014b6b276b219f4c174b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 5 Apr 2024 13:29:56 +0530 Subject: [PATCH] ... --- kitty/keys.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kitty/keys.c b/kitty/keys.c index 2b06d5cd8..2ea6491e4 100644 --- a/kitty/keys.c +++ b/kitty/keys.c @@ -177,7 +177,7 @@ on_key_input(GLFWkeyevent *ev) { case GLFW_IME_COMMIT_TEXT: if (*text) { schedule_write_to_child(w->id, 1, text, strlen(text)); - debug("committed pre-edit text: %s\n", text); + debug("committed pre-edit text: %s sent to child as text.\n", text); } else debug("committed pre-edit text: (null)\n"); screen_update_overlay_text(screen, NULL); return;