From 784f7000f29498e6c111afa78a53950989ee94b6 Mon Sep 17 00:00:00 2001 From: Jack Jamison Date: Wed, 5 Nov 2025 20:15:24 -0500 Subject: more keybinds and fixes --- data-device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'data-device.c') diff --git a/data-device.c b/data-device.c index 3132716..3dadfea 100644 --- a/data-device.c +++ b/data-device.c @@ -65,7 +65,7 @@ static void data_device_handle_selection(void *data, // remove newlines int i, j; for (i = 0, j = 0; i < state->clipboard_size; i++) { - if (state->clipboard[i] != '\n' && state->clipboard[i] != '\r') { + if (state->clipboard[i] != '\n' && state->clipboard[i] != '\r' && state->clipboard[i] != '\t') { state->clipboard[j++] = state->clipboard[i]; } } -- cgit v1.2.3