Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/tsm/tsm-vte.c
Original file line number Diff line number Diff line change
Expand Up @@ -3365,6 +3365,9 @@ bool tsm_vte_handle_mouse(struct tsm_vte *vte, unsigned int cell_x,

void tsm_vte_paste(struct tsm_vte *vte, const char *data)
{
if (!vte || !data)
return;

if (vte->bracketed_paste) {
const char start[] = "\e[200~";
const char end[] = "\e[201~";
Expand Down
Loading