mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Tammo Block <tammo.block@gmail.com>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Jiri Slaby <jslaby@suse.com>
Subject: [PATCH v4 5/6] vt/vt: Add URXVT mouse reporting protocol
Date: Thu, 29 Oct 2020 13:10:48 +0100	[thread overview]
Message-ID: <18409b77d3f876b7e5789f2cd89f7741bb4b98c8.1603963593.git.tammo.block@gmail.com> (raw)
In-Reply-To: <cover.1603963593.git.tammo.block@gmail.com>

The URXVT protocol easy, all data analog to the old X10.

Signed-off-by: Tammo Block <tammo.block@gmail.com>
---
 drivers/tty/vt/vt.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c
index c884539aee22..bf7913652fd7 100644
--- a/drivers/tty/vt/vt.c
+++ b/drivers/tty/vt/vt.c
@@ -1866,6 +1866,9 @@ void mouse_report(struct tty_struct *tty, int butt, int mrx, int mry)
 		len = sprintf(buf, "\033[<%d;%d;%d%c", butt,
 				mrx + 1, mry + 1, rel ? 'm' : 'M');
 		break;
+	case VC_PMOUSE_URXVT:
+		len = sprintf(buf, "\033[%d;%d;%dM", butt + 32, mrx + 1, mry + 1);
+		break;
 	default:
 		len = sprintf(buf, "\033[M%c%c%c", (char)(' ' + butt),
 				(char)('!' + mrx), (char)('!' + mry));
-- 
2.28.0


  parent reply	other threads:[~2020-10-29 12:10 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-29 12:09 [PATCH v4 0/6] vt: Add SRG mouse reporting features Tammo Block
2020-10-29 12:09 ` [PATCH v4 1/6] tiocl.h: Change/Add defines for mouse report Tammo Block
2020-10-29 12:10 ` [PATCH v4 2/6] console_struct.h: Add members " Tammo Block
2020-10-29 12:10 ` [PATCH v4 3/6] vt/vt: Enable mode change via escape sequence Tammo Block
2020-10-29 12:10 ` [PATCH v4 4/6] vt/vt: Add SRG mouse reporting protocol Tammo Block
2020-10-29 12:10 ` Tammo Block [this message]
2020-10-29 12:11 ` [PATCH v4 6/6] Documentation: Describe console mouse reporting Tammo Block

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=18409b77d3f876b7e5789f2cd89f7741bb4b98c8.1603963593.git.tammo.block@gmail.com \
    --to=tammo.block@gmail.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=jslaby@suse.com \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®