Pasting mouse escape sequences is unlikely, so skip them when working

out whether the user is pasting.
This commit is contained in:
nicm 2015-10-23 23:46:36 +00:00
parent 26a55ddcf9
commit 2e2b8a95bd

View File

@ -598,7 +598,7 @@ server_client_handle_key(struct client *c, int key)
m->valid = 0;
/* Treat everything as a regular key when pasting is detected. */
if (server_client_assume_paste(s)) {
if (!KEYC_IS_MOUSE(key) && server_client_assume_paste(s)) {
if (!(c->flags & CLIENT_READONLY))
window_pane_key(wp, c, s, key, m);
return;