Skip to content

Commit

Permalink
And let's double-tap that mouse mode one...
Browse files Browse the repository at this point in the history
  • Loading branch information
lif committed Feb 13, 2024
1 parent c0e016d commit c5231a7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/raw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,11 @@ mod platform_impl {
) {
stdout.write_all(&exp).ok();
}
} else {
// despite it all, some terminfo entries are missing "XM"
// this despite being likely to be used in conjunction with
// mouse functionality -- tmux and screen, for example
stdout.write_all(b"\x1b[1006;1000l").ok();
}
// relinquish ownership again - we may not want to close on drop
stdout.into_raw_fd();
Expand Down

0 comments on commit c5231a7

Please sign in to comment.