From 9ec4c3fd947d8160ce38b9892e3172440bffe667 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 22 Aug 2020 16:20:49 +0200 Subject: [PATCH] selection: must use term_paste_data_to_slave() for paste data --- selection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selection.c b/selection.c index 800f7451..f86814a1 100644 --- a/selection.c +++ b/selection.c @@ -1211,7 +1211,7 @@ selection_from_clipboard(struct seat *seat, struct terminal *term, uint32_t seri term->is_sending_paste_data = true; if (term->bracketed_paste) - term_to_slave(term, "\033[200~", 6); + term_paste_data_to_slave(term, "\033[200~", 6); text_from_clipboard( seat, term, &from_clipboard_cb, &from_clipboard_done, term);